HomeSort by relevance Sort by last modified time
    Searched refs:ICMP_SGT (Results 1 - 25 of 27) 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;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 42 case ICmpInst::ICMP_SGT:
58 case ICmpInst::ICMP_SGT:
364 else if ((Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_UGT)
365 && CI->isMaxValue(Pred == ICmpInst::ICMP_SGT))
372 case ICmpInst::ICMP_SGT: {
379 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT)
458 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
    [all...]
InstCombineAndOrXor.cpp 306 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
516 if (I->getPredicate() == ICmpInst::ICMP_SGT)
    [all...]
InstCombineCompares.cpp 125 case ICmpInst::ICMP_SGT: // True if LHS s> -1
756 return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI));
765 assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE);
    [all...]
InstCombineCasts.cpp 512 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
522 if (ICI->getPredicate() == ICmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]
Instructions.cpp     [all...]
AsmWriter.cpp 650 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 306 case CmpInst::ICMP_SGT:
317 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 199 case ICmpInst::ICMP_SGT: return ISD::SETGT;
  /external/llvm/unittests/VMCore/
InstructionsTest.cpp 161 ICmpInst *ICmp0 = new ICmpInst(ICmpInst::ICMP_SGT, PtrVecA, PtrVecB);
  /external/llvm/include/llvm/
InstrTypes.h 674 ICMP_SGT = 38, ///< signed greater than
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 95 case CmpInst::ICMP_SGT: {
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 199 dbgs() << "Unhandled type for ICMP_SGT predicate: " << *Ty << "\n";
270 case ICmpInst::ICMP_SGT: R = executeICMP_SGT(Src1, Src2, Ty); break;
484 case ICmpInst::ICMP_SGT: return executeICMP_SGT(Src1, Src2, Ty);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 314 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
347 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 772 return Pred == CmpInst::ICMP_SGT || Pred == CmpInst::ICMP_SGE;
IRBuilder.h     [all...]
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 438 EXPECT_TRUE(ConstantRange::makeICmpRegion(ICmpInst::ICMP_SGT,
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 846 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 477 VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT)
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 469 milliseconds

1 2