Searched defs:ICmp (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Target/MBlaze/
H A DMBlazeISelLowering.h79 ICmp, enumerator in enum:llvm::MBlazeISD::NodeType
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp75 void eliminateIVComparison(ICmpInst *ICmp, Value *IVOperand);
149 void SimplifyIndvar::eliminateIVComparison(ICmpInst *ICmp, Value *IVOperand) { argument
151 ICmpInst::Predicate Pred = ICmp->getPredicate();
152 if (IVOperand != ICmp->getOperand(0)) {
154 assert(IVOperand == ICmp->getOperand(1) && "Can't find IVOperand");
159 // Get the SCEVs for the ICmp operands.
160 const SCEV *S = SE->getSCEV(ICmp->getOperand(IVOperIdx));
161 const SCEV *X = SE->getSCEV(ICmp->getOperand(1 - IVOperIdx));
164 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent());
171 ICmp
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp1441 Value *ICmp = Builder.CreateICmpSGT(LHS, RHS); local
1442 rememberInstruction(ICmp);
1443 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "smax");
1465 Value *ICmp = Builder.CreateICmpUGT(LHS, RHS); local
1466 rememberInstruction(ICmp);
1467 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "umax");
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml187 | ICmp Constructor in type:Opcode/t

Completed in 90 milliseconds