HomeSort by relevance Sort by last modified time
    Searched refs:ICMP_SGT (Results 1 - 25 of 34) 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 49 case ICmpInst::ICMP_SGT:
64 case ICmpInst::ICMP_SGT:
79 if (Pred == ICmpInst::ICMP_SGT && (C1->isZero() || C1->isMinusOne())) {
488 else if ((Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_UGT)
489 && CI->isMaxValue(Pred == ICmpInst::ICMP_SGT))
496 case ICmpInst::ICMP_SGT: {
503 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT)
582 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
    [all...]
InstCombineCompares.cpp 119 case ICmpInst::ICMP_SGT: // True if LHS s> -1
151 if (pred == ICmpInst::ICMP_SGT) {
788 return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI));
797 assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE);
    [all...]
InstCombineAndOrXor.cpp 294 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
522 case ICmpInst::ICMP_SGT:
    [all...]
InstCombineCasts.cpp 524 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
534 if (ICI->getPredicate() == ICmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
Instructions.cpp     [all...]
ConstantRange.cpp 96 case CmpInst::ICMP_SGT: {
AsmWriter.cpp 702 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 395 case CmpInst::ICMP_SGT:
416 case CmpInst::ICMP_SGT:
DependenceAnalysis.cpp 914 case CmpInst::ICMP_SGT:
    [all...]
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 683 ICMP_SGT = 38, ///< signed greater than
    [all...]
PatternMatch.h 975 return Pred == CmpInst::ICMP_SGT || Pred == CmpInst::ICMP_SGE;
    [all...]
IRBuilder.h     [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 198 case ICmpInst::ICMP_SGT: return ISD::SETGT;
  /external/lldb/source/Expression/
IRInterpreter.cpp 497 case CmpInst::ICMP_SGT:
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 318 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
351 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 508 EXPECT_TRUE(ConstantRange::makeICmpRegion(ICmpInst::ICMP_SGT,
InstructionsTest.cpp 312 ICmpInst *ICmp0 = new ICmpInst(ICmpInst::ICMP_SGT, PtrVecA, PtrVecB);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 888 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 215 dbgs() << "Unhandled type for ICMP_SGT predicate: " << *Ty << "\n";
290 case ICmpInst::ICMP_SGT: R = executeICMP_SGT(Src1, Src2, Ty); break;
651 case ICmpInst::ICMP_SGT: return executeICMP_SGT(Src1, Src2, Ty);
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 198 case CmpInst::ICMP_SGT: Predicate = CmpInst::FCMP_FALSE; break;
236 case CmpInst::ICMP_SGT: CC = X86::COND_G; break;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 724 case CmpInst::ICMP_SGT:
    [all...]

Completed in 3607 milliseconds

1 2