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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineAndOrXor.cpp 410 Instruction *LHSI = dyn_cast<Instruction>(LHS);
411 if (!LHSI || LHSI->getNumOperands() != 2 ||
412 !isa<ConstantInt>(LHSI->getOperand(1))) return 0;
414 ConstantInt *N = cast<ConstantInt>(LHSI->getOperand(1));
416 switch (LHSI->getOpcode()) {
449 return Builder->CreateSub(LHSI->getOperand(0), RHS, "fold");
450 return Builder->CreateAdd(LHSI->getOperand(0), RHS, "fold");
    [all...]
InstCombine.h 136 Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
  /external/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);

Completed in 790 milliseconds