Lines Matching refs:equivalentAsOperands

232     if (!equivalentAsOperands(L.getCalledValue(), R.getCalledValue())) {  in diffCallSites()
241 if (!equivalentAsOperands(L.getArgument(I), R.getArgument(I))) { in diffCallSites()
301 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) { in diff()
313 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) { in diff()
355 if (!equivalentAsOperands(LO, RO)) { in diff()
364 bool equivalentAsOperands(Constant *L, Constant *R) { in equivalentAsOperands() function in __anon6dc9fb490111::FunctionDifferenceEngine
374 return Engine.equivalentAsOperands(cast<GlobalValue>(L), in equivalentAsOperands()
379 return equivalentAsOperands(cast<ConstantExpr>(L), in equivalentAsOperands()
396 bool equivalentAsOperands(ConstantExpr *L, ConstantExpr *R) { in equivalentAsOperands() function in __anon6dc9fb490111::FunctionDifferenceEngine
421 if (!equivalentAsOperands(L->getOperand(I), R->getOperand(I))) in equivalentAsOperands()
427 bool equivalentAsOperands(Value *L, Value *R) { in equivalentAsOperands() function in __anon6dc9fb490111::FunctionDifferenceEngine
437 return equivalentAsOperands(cast<Constant>(L), cast<Constant>(R)); in equivalentAsOperands()
608 if (!equivalentAsOperands(LCall->getCalledValue(), RInvoke->getCalledValue())) in runBlockDiff()
621 if (!equivalentAsOperands(LInvoke->getCalledValue(), RCall->getCalledValue())) in runBlockDiff()
674 bool DifferenceEngine::equivalentAsOperands(GlobalValue *L, GlobalValue *R) { in equivalentAsOperands() function in DifferenceEngine