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

  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 825 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
826 if (ICI && ICI->getOperand(0) == Val &&
827 isa<Constant>(ICI->getOperand(1))) {
828 if (ICI->isEquality()) {
831 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
832 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
834 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
838 if (ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
842 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange)
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 357 if (ICmpInst *ICI = dyn_cast<ICmpInst>(I)) {
359 if (ICI->getPredicate() == (isEQ ? ICmpInst::ICMP_EQ:ICmpInst::ICMP_NE)) {
368 ConstantRange::makeICmpRegion(ICI->getPredicate(), C->getValue());
461 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
462 if ((ICI->getPredicate() == ICmpInst::ICMP_EQ ||
463 ICI->getPredicate() == ICmpInst::ICMP_NE) &&
464 GetConstantInt(ICI->getOperand(1), TD))
465 CV = ICI->getOperand(0);
488 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
489 Cases.push_back(std::make_pair(GetConstantInt(ICI->getOperand(1), TD)
    [all...]

Completed in 201 milliseconds