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

  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 798 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
799 if (ICI && isa<Constant>(ICI->getOperand(1))) {
800 if (ICI->isEquality() && ICI->getOperand(0) == Val) {
803 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
804 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
806 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
813 if (ICI->getPredicate() == ICmpInst::ICMP_ULT)
814 match(ICI->getOperand(0), m_Add(m_Specific(Val)
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 418 if (ICmpInst *ICI = dyn_cast<ICmpInst>(I)) {
420 if (ICI->getPredicate() == (isEQ ? ICmpInst::ICMP_EQ:ICmpInst::ICMP_NE)) {
429 ConstantRange::makeICmpRegion(ICI->getPredicate(), C->getValue());
520 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
521 if ((ICI->getPredicate() == ICmpInst::ICMP_EQ ||
522 ICI->getPredicate() == ICmpInst::ICMP_NE) &&
523 GetConstantInt(ICI->getOperand(1), TD))
524 CV = ICI->getOperand(0);
548 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
549 BasicBlock *Succ = BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_NE)
    [all...]

Completed in 398 milliseconds