HomeSort by relevance Sort by last modified time
    Searched refs:ICMP_SLE (Results 1 - 25 of 31) sorted by null

1 2

  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 58 case ICmpInst::ICMP_SLE: return 6; // 110
83 case 6: NewICmpPred = Sign ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; break;
LowerSwitch.cpp 182 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High,
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
  /external/llvm/include/llvm/IR/
InstrTypes.h 681 ICMP_SLE = 41, ///< signed less or equal
683 LAST_ICMP_PREDICATE = ICMP_SLE,
684 BAD_ICMP_PREDICATE = ICMP_SLE + 1
    [all...]
IRBuilder.h     [all...]
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 123 case ICmpInst::ICMP_SLE: // True if LHS s<= RHS and RHS == -1
154 pred = ICmpInst::ICMP_SLE;
788 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
    [all...]
InstCombineSelect.cpp 47 case ICmpInst::ICMP_SLE: return SPF_SMIN;
63 case ICmpInst::ICMP_SLE: return SPF_SMAX;
    [all...]
InstCombineAndOrXor.cpp 274 ICmpInst::ICMP_SLE:ICmpInst::ICMP_ULE), Lo, Hi))->getZExtValue() &&
785 LHSCC == ICmpInst::ICMP_SGE || LHSCC == ICmpInst::ICMP_SLE ||
786 RHSCC == ICmpInst::ICMP_SGE || RHSCC == ICmpInst::ICMP_SLE)
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
DependenceAnalysis.cpp 907 case CmpInst::ICMP_SLE:
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
ConstantFold.cpp     [all...]
AsmWriter.cpp 704 case ICmpInst::ICMP_SLE: pred = "sle"; break;
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 191 case ICmpInst::ICMP_SLE: return ISD::SETLE;
  /external/llvm/lib/Support/
ConstantRange.cpp 84 case CmpInst::ICMP_SLE: {
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 320 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
347 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
    [all...]
LoopIdiomRecognize.cpp 588 CmpInst::ICMP_UGT : CmpInst::ICMP_SLE;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 242 dbgs() << "Unhandled type for ICMP_SLE predicate: " << *Ty << "\n";
291 case ICmpInst::ICMP_SLE: R = executeICMP_SLE(Src1, Src2, Ty); break;
656 case ICmpInst::ICMP_SLE: return executeICMP_SLE(Src1, Src2, Ty);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 880 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 892 return Pred == CmpInst::ICMP_SLT || Pred == CmpInst::ICMP_SLE;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 1657 milliseconds

1 2