Home
last modified time | relevance | path

Searched refs:matchSelectPattern (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h1159 SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS,
1163 inline SelectPatternResult matchSelectPattern(const Value *V, const Value *&LHS, in matchSelectPattern() function
1167 auto Result = matchSelectPattern(const_cast<Value *>(V), L, R); in matchSelectPattern()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp236 auto SPR = matchSelectPattern(SI, LHS, RHS); in trySADReplacement()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp3676 SelectPatternFlavor SPF = matchSelectPattern(Select, LHS, RHS).Flavor; in isSignedMinMaxClamp()
3684 SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor; in isSignedMinMaxClamp()
8177 SelectPatternResult L = matchSelectPattern(TVal, A, B, nullptr, Depth + 1); in matchMinMaxOfMinMax()
8182 SelectPatternResult R = matchSelectPattern(FVal, C, D, nullptr, Depth + 1); in matchMinMaxOfMinMax()
8400 static SelectPatternResult matchSelectPattern(CmpInst::Predicate Pred, in matchSelectPattern() function
8701 SelectPatternResult llvm::matchSelectPattern(Value *V, Value *&LHS, Value *&RHS, in matchSelectPattern() function in llvm
8741 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, in matchDecomposedSelectPattern()
8750 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, in matchDecomposedSelectPattern()
8755 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, TrueVal, FalseVal, in matchDecomposedSelectPattern()
8815 auto CurrentPattern = matchSelectPattern(I, LHS, RHS); in canConvertToMinOrMaxIntrinsic()
[all …]
H A DIVDescriptors.cpp1174 matchSelectPattern(Cur, LHS, RHS).Flavor); in getReductionOpChain()
H A DLazyValueInfo.cpp864 SelectPatternResult SPR = matchSelectPattern(SI, LHS, RHS); in solveBlockValueSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp350 SelectPatternFlavor InstSPF = matchSelectPattern(Inst, LHS, RHS).Flavor; in isSSATMinMaxPattern()
361 matchSelectPattern(MinInst, MinLHS, MinRHS).Flavor; in isSSATMinMaxPattern()
962 SelectPatternFlavor SPF = matchSelectPattern(Sel, LHS, RHS).Flavor; in getCmpSelInstrCost()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp3794 SelectPatternResult SPR = matchSelectPattern(&SI, LHS, RHS, &CastOp); in visitSelectInst()
3798 if (SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor) in visitSelectInst()
3802 if (SelectPatternFlavor SPF2 = matchSelectPattern(RHS, LHS2, RHS2).Flavor) in visitSelectInst()
H A DInstCombineCompares.cpp6497 SelectPatternFlavor SPF = matchSelectPattern(Cmp.user_back(), A, B).Flavor; in foldICmpUsingKnownBits()
7372 SelectPatternResult SPR = matchSelectPattern(SI, A, B); in visitICmpInst()
8133 SelectPatternResult SPR = matchSelectPattern(SI, A, B); in visitFCmpInst()
H A DInstCombineCasts.cpp729 if (matchSelectPattern(Sel, LHS, RHS).Flavor != SPF_UNKNOWN) in visitTrunc()
H A DInstCombineCalls.cpp545 SelectPatternFlavor SPF = matchSelectPattern(Op0, X, Y).Flavor; in foldCttzCtlz()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3736 auto SPR = matchSelectPattern(const_cast<User*>(&I), LHS, RHS); in visitSelect()