HomeSort by relevance Sort by last modified time
    Searched defs:RHSI (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
EarlyCSE.cpp 123 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
126 return LHSI == RHSI;
128 if (LHSI->getOpcode() != RHSI->getOpcode()) return false;
129 return LHSI->isIdenticalTo(RHSI);
196 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
198 return LHSI == RHSI;
199 return LHSI->isIdenticalTo(RHSI);
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 140 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
143 return LHSI == RHSI;
145 if (LHSI->getOpcode() != RHSI->getOpcode())
147 if (LHSI->isIdenticalToWhenDefined(RHSI))
155 assert(isa<BinaryOperator>(RHSI) &&
157 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
164 assert(isa<CmpInst>(RHSI) &&
166 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
230 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
232 return LHSI == RHSI;
    [all...]

Completed in 1927 milliseconds