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

  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 148 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
151 return LHSI == RHSI;
153 if (LHSI->getOpcode() != RHSI->getOpcode())
155 if (LHSI->isIdenticalTo(RHSI))
159 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
180 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
247 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
249 return LHSI == RHSI;
250 return LHSI->isIdenticalTo(RHSI);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 371 Instruction *LHSI = dyn_cast<Instruction>(LHS);
372 if (!LHSI || LHSI->getNumOperands() != 2 ||
373 !isa<ConstantInt>(LHSI->getOperand(1))) return nullptr;
375 ConstantInt *N = cast<ConstantInt>(LHSI->getOperand(1));
377 switch (LHSI->getOpcode()) {
410 return Builder->CreateSub(LHSI->getOperand(0), RHS, "fold");
411 return Builder->CreateAdd(LHSI->getOperand(0), RHS, "fold");
    [all...]

Completed in 656 milliseconds