HomeSort by relevance Sort by last modified time
    Searched refs:ICMP_SLE (Results 1 - 25 of 35) 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 247 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 686 ICMP_SLE = 41, ///< signed less or equal
688 LAST_ICMP_PREDICATE = ICMP_SLE,
689 BAD_ICMP_PREDICATE = ICMP_SLE + 1
    [all...]
PatternMatch.h 982 return Pred == CmpInst::ICMP_SLT || Pred == CmpInst::ICMP_SLE;
    [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 116 case ICmpInst::ICMP_SLE: // True if LHS s<= RHS and RHS == -1
147 pred = ICmpInst::ICMP_SLE;
787 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
    [all...]
InstCombineSelect.cpp 54 case ICmpInst::ICMP_SLE: return SPF_SMIN;
69 case ICmpInst::ICMP_SLE: return SPF_SMAX;
    [all...]
InstCombineAndOrXor.cpp 266 ICmpInst::ICMP_SLE:ICmpInst::ICMP_ULE), Lo, Hi))->getZExtValue() &&
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
DependenceAnalysis.cpp 912 case CmpInst::ICMP_SLE:
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
ConstantFold.cpp     [all...]
ConstantRange.cpp 84 case CmpInst::ICMP_SLE: {
AsmWriter.cpp 705 case ICmpInst::ICMP_SLE: pred = "sle"; break;
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 192 case ICmpInst::ICMP_SLE: return ISD::SETLE;
  /external/lldb/source/Expression/
IRInterpreter.cpp 500 case CmpInst::ICMP_SLE:
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 324 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
351 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
    [all...]
LoopIdiomRecognize.cpp 586 CmpInst::ICMP_UGT : CmpInst::ICMP_SLE;
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 890 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 243 dbgs() << "Unhandled type for ICMP_SLE predicate: " << *Ty << "\n";
292 case ICmpInst::ICMP_SLE: R = executeICMP_SLE(Src1, Src2, Ty); break;
657 case ICmpInst::ICMP_SLE: return executeICMP_SLE(Src1, Src2, Ty);
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 201 case CmpInst::ICMP_SLE: Predicate = CmpInst::FCMP_TRUE; break;
239 case CmpInst::ICMP_SLE: CC = X86::COND_LE; break;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 747 case CmpInst::ICMP_SLE:
    [all...]

Completed in 702 milliseconds

1 2