Home | History | Annotate | Download | only in llvm-diff

Lines Matching defs:equivalentAsOperands

228     if (!equivalentAsOperands(L.getCalledValue(), R.getCalledValue())) {
237 if (!equivalentAsOperands(L.getArgument(I), R.getArgument(I))) {
297 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
309 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
355 if (!equivalentAsOperands(LO, RO)) {
364 bool equivalentAsOperands(Constant *L, Constant *R) {
374 return Engine.equivalentAsOperands(cast<GlobalValue>(L),
379 return equivalentAsOperands(cast<ConstantExpr>(L),
396 bool equivalentAsOperands(ConstantExpr *L, ConstantExpr *R) {
421 if (!equivalentAsOperands(L->getOperand(I), R->getOperand(I)))
427 bool equivalentAsOperands(Value *L, Value *R) {
437 return equivalentAsOperands(cast<Constant>(L), cast<Constant>(R));
611 if (!equivalentAsOperands(LCall->getCalledValue(), RInvoke->getCalledValue()))
624 if (!equivalentAsOperands(LInvoke->getCalledValue(), RCall->getCalledValue()))
679 bool DifferenceEngine::equivalentAsOperands(GlobalValue *L, GlobalValue *R) {