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

1 2

  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 50 case ICmpInst::ICMP_SGT: return 1; // 001
78 case 1: NewICmpPred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
LoopUtils.cpp 587 P = CmpInst::ICMP_SGT;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 129 case ICmpInst::ICMP_SGT: // True if LHS s> -1
161 if (pred == ICmpInst::ICMP_SGT) {
    [all...]
InstCombineSelect.cpp 52 return ICmpInst::ICMP_SGT;
423 case ICmpInst::ICMP_SGT: {
430 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT)
509 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
562 } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) {
    [all...]
InstCombineAndOrXor.cpp 331 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
558 case ICmpInst::ICMP_SGT:
    [all...]
InstCombineCasts.cpp 594 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
604 if (ICI->getPredicate() == ICmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
Instructions.cpp     [all...]
ConstantRange.cpp 99 case CmpInst::ICMP_SGT: {
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 428 case CmpInst::ICMP_SGT:
449 case CmpInst::ICMP_SGT:
InstructionSimplify.cpp     [all...]
DependenceAnalysis.cpp     [all...]
ScalarEvolution.cpp     [all...]
ValueTracking.cpp 567 case ICmpInst::ICMP_SGT:
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 108 ICMP_SGT = 38, ///< signed greater than
123 case ICMP_SGT: return (S)Arg1 > (S)Arg2;
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 302 case ICmpInst::ICMP_SGT:
780 (Pred == ICmpInst::ICMP_SGT && LatchBrExitIdx == 0);
801 (Pred == ICmpInst::ICMP_SGT && LatchBrExitIdx == 1) ||
    [all...]
Float2Int.cpp 101 return CmpInst::ICMP_SGT;
IndVarSimplify.cpp 351 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
384 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 210 case ICmpInst::ICMP_SGT: return ISD::SETGT;
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 516 EXPECT_TRUE(ConstantRange::makeAllowedICmpRegion(ICmpInst::ICMP_SGT, SMax)
564 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SGT, SignedSample),
InstructionsTest.cpp 314 ICmpInst *ICmp0 = new ICmpInst(ICmpInst::ICMP_SGT, PtrVecA, PtrVecB);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 890 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
    [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
PatternMatch.h     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 216 dbgs() << "Unhandled type for ICMP_SGT predicate: " << *Ty << "\n";
291 case ICmpInst::ICMP_SGT: R = executeICMP_SGT(Src1, Src2, Ty); break;
652 case ICmpInst::ICMP_SGT: return executeICMP_SGT(Src1, Src2, Ty);
    [all...]

Completed in 432 milliseconds

1 2