/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ValueTracking.h | 607 static bool isMinOrMax(SelectPatternFlavor SPF) { in isMinOrMax() 608 return SPF != SPF_UNKNOWN && SPF != SPF_ABS && SPF != SPF_NABS; in isMinOrMax() 652 CmpInst::Predicate getMinMaxPred(SelectPatternFlavor SPF, 657 SelectPatternFlavor getInverseMinMaxFlavor(SelectPatternFlavor SPF); 661 CmpInst::Predicate getInverseMinMaxPred(SelectPatternFlavor SPF);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 232 SelectPatternFlavor SPF; in getHashValueImpl() local 234 if (matchSelectWithOptionalNotCond(Inst, Cond, A, B, SPF)) { in getHashValueImpl() 240 if (SPF == SPF_SMIN || SPF == SPF_SMAX || in getHashValueImpl() 241 SPF == SPF_UMIN || SPF == SPF_UMAX) { in getHashValueImpl() 244 return hash_combine(Inst->getOpcode(), SPF, A, B); in getHashValueImpl() 246 if (SPF == SPF_ABS || SPF == SPF_NABS) { in getHashValueImpl() 248 return hash_combine(Inst->getOpcode(), SPF, A, B); in getHashValueImpl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 50 SelectPatternFlavor SPF, Value *A, Value *B) { in createMinMax() argument 51 CmpInst::Predicate Pred = getMinMaxPred(SPF); in createMinMax() 1052 SelectPatternFlavor SPF = matchSelectPattern(&Sel, LHS, RHS).Flavor; in canonicalizeAbsNabs() local 1053 if (SPF != SelectPatternFlavor::SPF_ABS && in canonicalizeAbsNabs() 1054 SPF != SelectPatternFlavor::SPF_NABS) in canonicalizeAbsNabs() 1103 if (SPF == SelectPatternFlavor::SPF_NABS) { in canonicalizeAbsNabs() 2113 static Instruction *moveAddAfterMinMax(SelectPatternFlavor SPF, Value *X, in moveAddAfterMinMax() argument 2116 assert(SelectPatternResult::isMinOrMax(SPF) && "Expected min/max pattern"); in moveAddAfterMinMax() 2117 bool IsUnsigned = SPF == SelectPatternFlavor::SPF_UMIN || in moveAddAfterMinMax() 2118 SPF == SelectPatternFlavor::SPF_UMAX; in moveAddAfterMinMax() [all …]
|
D | InstCombineAddSub.cpp | 1818 SelectPatternFlavor SPF = matchSelectPattern(Op1, LHS, RHS).Flavor; in visitSub() local 1819 if (SPF == SPF_ABS || SPF == SPF_NABS) { in visitSub() 2033 SelectPatternFlavor SPF = matchSelectPattern(MinMax, LHS, RHS).Flavor; in visitSub() local 2034 if (!SelectPatternResult::isMinOrMax(SPF)) { in visitSub() 2037 SPF = matchSelectPattern(MinMax, LHS, RHS).Flavor; in visitSub() 2039 if (SelectPatternResult::isMinOrMax(SPF) && in visitSub()
|
D | InstCombineSimplifyDemanded.cpp | 320 SelectPatternFlavor SPF = matchSelectPattern(I, LHS, RHS).Flavor; in SimplifyDemandedUseBits() local 321 if (SPF == SPF_UMAX) { in SimplifyDemandedUseBits() 329 } else if (SPF == SPF_UMIN) { in SimplifyDemandedUseBits() 343 if (SPF != SPF_UNKNOWN) in SimplifyDemandedUseBits()
|
D | InstCombineAndOrXor.cpp | 3253 SelectPatternFlavor SPF = matchSelectPattern(Op0, LHS, RHS).Flavor; in visitXor() local 3254 if (SelectPatternResult::isMinOrMax(SPF)) { in visitXor() 3260 Builder.CreateICmp(getInverseMinMaxPred(SPF), X, NotY), X, NotY); in visitXor() 3268 Builder.CreateICmp(getInverseMinMaxPred(SPF), NotX, Y), NotX, Y); in visitXor() 3278 Builder.CreateICmp(getInverseMinMaxPred(SPF), NotLHS, NotRHS), in visitXor()
|
D | InstCombineCalls.cpp | 1213 SelectPatternFlavor SPF = matchSelectPattern(Op0, X, Y).Flavor; in foldCttzCtlz() local 1214 if (SPF == SPF_ABS || SPF == SPF_NABS) { in foldCttzCtlz()
|
/third_party/libdrm/intel/tests/ |
D | gen6-3d.batch-ref.txt | 66 0x12300104: 0x00000000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 81 0x12300140: 0x00000000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 117 0x123001d0: 0x00000000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 193 0x12300300: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 240 0x123003bc: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 275 0x12300448: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 298 0x123004a4: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 327 0x12300518: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 390 0x12300614: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 437 0x123006d0: 0x00010000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 [all …]
|
D | gen7-3d.batch-ref.txt | 48 0x123000bc: 0x00000000: SPF=0, VME=0, Sampler Count 0, Binding table count 0 105 0x123001a0: 0x08000000: SPF=0, VME=0, Sampler Count 1, Binding table count 0
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 1127 SelectPatternFlavor SPF = matchSelectPattern(I, LHS, RHS).Flavor; in computeKnownBitsFromOperator() local 1128 if (SelectPatternResult::isMinOrMax(SPF)) { in computeKnownBitsFromOperator() 1138 if (SPF == SPF_SMAX) { in computeKnownBitsFromOperator() 1148 } else if (SPF == SPF_SMIN) { in computeKnownBitsFromOperator() 1158 } else if (SPF == SPF_UMAX) { in computeKnownBitsFromOperator() 1163 } else if (SPF == SPF_UMIN) { in computeKnownBitsFromOperator() 1168 } else if (SPF == SPF_ABS) { in computeKnownBitsFromOperator() 2409 SelectPatternFlavor SPF = matchSelectPattern(Select, LHS, RHS).Flavor; in isSignedMinMaxClamp() local 2410 if (SPF != SPF_SMAX && SPF != SPF_SMIN) in isSignedMinMaxClamp() 2418 if (getInverseMinMaxFlavor(SPF) != SPF2) in isSignedMinMaxClamp() [all …]
|
/third_party/boost/libs/beast/tools/ |
D | field.txt | 253 Received-SPF
|
/third_party/toybox/www/ |
D | 0bsd-mckusick.txt | 39 Received-SPF: pass (google.com: best guess record for domain of mckusick@mckusick.com designates 70…
|
/third_party/boost/boost/beast/http/impl/ |
D | field.ipp | 373 "Received-SPF",
|
/third_party/boost/libs/beast/include/boost/beast/http/impl/ |
D | field.ipp | 373 "Received-SPF",
|
/third_party/mesa3d/docs/relnotes/ |
D | 7.10.rst | 2873 - i965: VS use SPF mode on sandybridge for now 2896 - Revert "i965: VS use SPF mode on sandybridge for now"
|