Searched refs:RHSI (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp143 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
146 return LHSI == RHSI;
148 if (LHSI->getOpcode() != RHSI->getOpcode()) return false;
149 if (LHSI->isIdenticalTo(RHSI)) return true;
156 assert(isa<BinaryOperator>(RHSI)
158 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
174 assert(isa<CmpInst>(RHSI)
176 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
245 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
247 return LHSI == RHSI;
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp504 if (ConstantInt *RHSI = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
506 if (RHSI->isZero())
510 if (RHSI->equalsInt(1)) {

Completed in 129 milliseconds