Lines Matching refs:equivalentAsOperands

228     if (!equivalentAsOperands(L.getCalledValue(), R.getCalledValue())) {  in diffCallSites()
237 if (!equivalentAsOperands(L.getArgument(I), R.getArgument(I))) { in diffCallSites()
297 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) { in diff()
314 if (!equivalentAsOperands(LI->getAddress(), RI->getAddress())) { in diff()
329 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) { in diff()
373 if (!equivalentAsOperands(LO, RO)) { in diff()
382 bool equivalentAsOperands(Constant *L, Constant *R) { in equivalentAsOperands() function in __anon565615e00111::FunctionDifferenceEngine
392 return Engine.equivalentAsOperands(cast<GlobalValue>(L), in equivalentAsOperands()
397 return equivalentAsOperands(cast<ConstantExpr>(L), in equivalentAsOperands()
418 if (!equivalentAsOperands(CVL->getOperand(i), CVR->getOperand(i))) in equivalentAsOperands()
427 bool equivalentAsOperands(ConstantExpr *L, ConstantExpr *R) { in equivalentAsOperands() function in __anon565615e00111::FunctionDifferenceEngine
452 if (!equivalentAsOperands(L->getOperand(I), R->getOperand(I))) in equivalentAsOperands()
458 bool equivalentAsOperands(Value *L, Value *R) { in equivalentAsOperands() function in __anon565615e00111::FunctionDifferenceEngine
468 return equivalentAsOperands(cast<Constant>(L), cast<Constant>(R)); in equivalentAsOperands()
642 if (!equivalentAsOperands(LCall->getCalledValue(), RInvoke->getCalledValue())) in runBlockDiff()
655 if (!equivalentAsOperands(LInvoke->getCalledValue(), RCall->getCalledValue())) in runBlockDiff()
734 bool DifferenceEngine::equivalentAsOperands(GlobalValue *L, GlobalValue *R) { in equivalentAsOperands() function in DifferenceEngine