Home | History | Annotate | Download | only in Scalar

Lines Matching refs:RHSI

147   Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
150 return LHSI == RHSI;
152 if (LHSI->getOpcode() != RHSI->getOpcode()) return false;
153 if (LHSI->isIdenticalTo(RHSI)) return true;
160 assert(isa<BinaryOperator>(RHSI)
162 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
178 assert(isa<CmpInst>(RHSI)
180 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
254 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
256 return LHSI == RHSI;
257 return LHSI->isIdenticalTo(RHSI);