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

1 2 3 4 5

  /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/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CmpInstAnalysis.cpp 28 case ICmpInst::ICMP_SGT: return 1; // 001
49 case 1: NewICmpPred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
93 case ICmpInst::ICMP_SGT:
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
ValueLatticeTest.cpp 103 EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV1)->isZeroValue());
113 EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2)->isZeroValue());
123 EXPECT_EQ(LV2.getCompare(CmpInst::ICMP_SGT, I1Ty, LV3), nullptr);
133 EXPECT_EQ(LV3.getCompare(CmpInst::ICMP_SGT, I1Ty, LV4), nullptr);
174 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2)));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMLegalizerInfo.cpp 258 FCmp32Libcalls[CmpInst::FCMP_OGT] = {{RTLIB::OGT_F32, CmpInst::ICMP_SGT}};
263 FCmp32Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F32, CmpInst::ICMP_SGT}};
268 FCmp32Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F32, CmpInst::ICMP_SGT},
276 FCmp64Libcalls[CmpInst::FCMP_OGT] = {{RTLIB::OGT_F64, CmpInst::ICMP_SGT}};
281 FCmp64Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F64, CmpInst::ICMP_SGT}};
286 FCmp64Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F64, CmpInst::ICMP_SGT},
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClLLVMBitCodes.h 300 ICMP_SGT = 38, ///< signed greater than
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitcodeDecoders.cpp 211 case naclbitc::ICMP_SGT:
212 LLVMPredicate = CmpInst::ICMP_SGT;
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineSelect.cpp 42 case ICmpInst::ICMP_SGT:
58 case ICmpInst::ICMP_SGT:
362 else if ((Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_UGT)
363 && CI->isMaxValue(Pred == ICmpInst::ICMP_SGT))
370 case ICmpInst::ICMP_SGT: {
377 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT)
456 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
    [all...]
InstCombineAndOrXor.cpp 93 case ICmpInst::ICMP_SGT: return 1; // 001
148 case 1: Pred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
369 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
767 if (LHSCC == ICmpInst::ICMP_SGT && LHSCst->isAllOnesValue()) {
    [all...]
InstCombineCompares.cpp 125 case ICmpInst::ICMP_SGT: // True if LHS s> -1
729 return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI));
738 assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 341 case ICmpInst::ICMP_SGT:
498 // pred_ty predicate = IndVarIncreasing ? ICMP_SLT : ICMP_SGT;
710 if (Pred != ICmpInst::ICMP_SLT && Pred != ICmpInst::ICMP_SGT &&
731 IsSigned ? CmpInst::ICMP_SGT : CmpInst::ICMP_UGT;
760 if (Pred != ICmpInst::ICMP_SLT && Pred != ICmpInst::ICMP_SGT &&
803 auto Predicate = Signed ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 85 case ICmpInst::ICMP_SGT: // True if LHS s> -1
118 if (Pred == ICmpInst::ICMP_SGT) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 138 case ICmpInst::ICMP_SGT: // True if LHS s> -1
170 if (Pred == ICmpInst::ICMP_SGT) {
    [all...]
InstCombineSelect.cpp 52 return ICmpInst::ICMP_SGT;
434 case ICmpInst::ICMP_SGT: {
441 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT)
520 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
573 } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) {
    [all...]
InstCombineAndOrXor.cpp 321 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
546 case ICmpInst::ICMP_SGT:
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ConstantFold.cpp     [all...]
Instructions.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BranchProbabilityInfo.cpp 353 case CmpInst::ICMP_SGT:
364 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
BranchProbabilityInfo.cpp 441 case CmpInst::ICMP_SGT:
462 case CmpInst::ICMP_SGT:
  /external/llvm/lib/Target/SystemZ/
SystemZTDC.cpp 250 } else if (Pred == CmpInst::ICMP_SGT && Const->isMinusOne()) {
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
streamout_jit.cpp 80 returnMask = OR(returnMask, ICMP_SGT(newOffset, bufferSize));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Analysis.cpp 194 case ICmpInst::ICMP_SGT: return ISD::SETGT;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZTDC.cpp 250 } else if (Pred == CmpInst::ICMP_SGT && Const->isMinusOne()) {
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.cpp     [all...]

Completed in 894 milliseconds

1 2 3 4 5