/third_party/ltp/tools/sparse/sparse-src/validation/optim/ |
H A D | ext-trunc-greater.c | 1 short sgt(char x) in sgt() function
|
H A D | binops-same-args.c | 14 int sgt(int a) { return a > a; } in sgt() function
|
H A D | canonical-cmp.c | 10 sint sgt(sint p, sint a) { return (123 < p) == (p > 123); } in sgt() function
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | tautological-compare.c | 6 int sgt(int a) { return a > a; } in sgt() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | APInt.h | 1075 bool sle(uint64_t RHS) const { return !sgt(RHS); } 1101 bool sgt(const APInt &RHS) const { return !slt(RHS) && !eq(RHS); } 1109 bool sgt(int64_t RHS) const { 1789 return A.sgt(B) ? A : B;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 549 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) { in intersectConstraints() 1197 if (Distance.sgt(0)) in strongSIVtest() 1442 if ((A.sgt(0) && B.sgt(0)) || in floorOfQuotient() 1455 if ((A.sgt(0) && B.sgt(0)) || in ceilingOfQuotient() 1465 return A.sgt(B) ? A : B; in maxAPInt() 1544 if (TMUL.sgt(0)) { in exactSIVtest() 1563 if (TMUL.sgt( in exactSIVtest() [all...] |
H A D | MemoryBuiltins.cpp | 806 if (TrueResult.sgt(FalseResult)) in visitSelectInst()
|
H A D | BasicAliasAnalysis.cpp | 1519 if (AllPositive && GEP1BaseOffset.sgt(0) && in aliasGEP()
|
H A D | ValueTracking.cpp | 4732 C1->sgt(*C2) && Pred == CmpInst::ICMP_SGT) in matchClamp() 5703 if (Lower.sgt(Upper)) in setLimitsForBinOp()
|
H A D | ScalarEvolution.cpp | 10581 return (std::move(MinValue) + MaxStrideMinusOne).sgt(MinRHS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | APInt.h | 1267 bool sle(uint64_t RHS) const { return !sgt(RHS); } 1294 bool sgt(const APInt &RHS) const { return !sle(RHS); } 1302 bool sgt(int64_t RHS) const { 2168 return A.sgt(B) ? A : B;
|
H A D | APSInt.h | 158 return IsUnsigned ? ugt(RHS) : sgt(RHS); in operator >()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 321 return Lower.sgt(Upper) && !Upper.isMinSignedValue(); in isSignWrappedSet() 325 return Lower.sgt(Upper); in isUpperSignWrapped() 1460 Min.sgt(SignedMax - OtherMin)) 1467 Max.sgt(SignedMax - OtherMax)) 1506 Min.sgt(SignedMax + OtherMax)) 1513 Max.sgt(SignedMax + OtherMin))
|
H A D | ConstantFold.cpp | 1894 case ICmpInst::ICMP_SGT: return ConstantInt::get(ResultTy, V1.sgt(V2)); in ConstantFoldCompareInstruction()
|
H A D | Verifier.cpp | 3379 Assert(LowV.sgt(LastRange.getLower()), "Intervals are not in order", in visitRangeMetadata()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | APInt.cpp | 2971 if (C.sgt(LowkR)) { 3002 if (Q.sgt(D))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 709 KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle); in LexIdentifier()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAndOrXor.cpp | 751 /// (icmp slt x, 0) | (icmp sgt x, n) --> icmp ugt x, n 918 /// %r = icmp sgt i32 %arg, -1 1264 // We can't fold (ugt x, C) & (sgt x, C2). in foldAndOfICmps() 1272 ShouldSwap = LHSC->getValue().sgt(RHSC->getValue()); in foldAndOfICmps() 2241 APInt RangeDiff = LRangeLow.sgt(RRangeLow) ? LRangeLow - RRangeLow in foldOrOfICmps() 2302 // E.g. (icmp slt x, 0) | (icmp sgt x, n) --> icmp ugt x, n in foldOrOfICmps() 2306 // E.g. (icmp sgt x, n) | (icmp slt x, 0) --> icmp ugt x, n in foldOrOfICmps() 2356 // We can't fold (ugt x, C) | (sgt x, C2). in foldOrOfICmps() 2364 ShouldSwap = LHSC->getValue().sgt(RHSC->getValue()); in foldOrOfICmps() 3242 // %cmp1 = icmp sgt i3 in visitXor() [all...] |
H A D | InstCombineCompares.cpp | 1173 if (AP2.sgt(AP1)) in foldICmpShrConstConst() 1397 // (icmp sgt smin(PosA, B) 0) -> (icmp sgt B 0) in foldICmpWithZero() 2199 // icmp sgt (ashr exact X, ShAmtC), C --> icmp sgt X, (C << ShAmtC) in foldICmpShrConstant() 2205 // icmp sgt (ashr X, ShAmtC), C --> icmp sgt X, ((C + 1) << ShAmtC) - 1 in foldICmpShrConstant() 2261 // (X % pow2C) sgt/slt 0 in foldICmpSRemConstant() 2521 // (icmp sgt (sub nsw X, Y), -1) -> (icmp sge X, Y) in foldICmpSubConstant() 2525 // (icmp sgt (su in foldICmpSubConstant() [all...] |
H A D | InstCombineSelect.cpp | 535 /// (select (icmp sgt x, C), lshr (X, Y), ashr (X, Y)); iff C s>= -1 617 // (icmp sgt (trunc (X)), -1). in foldSelectICmpAndOr() 1590 (SPF1 == SPF_SMIN && CB->sgt(*CC)) || in foldSPFofSPF()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 265 IMPLEMENT_INTEGER_ICMP(sgt,Ty); 266 IMPLEMENT_VECTOR_INTEGER_ICMP(sgt,Ty);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | BasicTTIImpl.h | 354 if (CaseVal.sgt(MaxCaseVal)) in getEstimatedNumberOfCaseClusters()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 502 return C.sgt(*Thr); in isValue() 1457 // Matchers for max/min idioms, eg: "select (sgt x, y), x, y" -> smax(x,y).
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 5394 if (CaseVal->getValue().sgt(MaxCaseVal->getValue())) in SwitchToLookupTable()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 2066 case ISD::SETGT: return getBoolConstant(C1.sgt(C2), dl, VT, OpVT);
|