Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h1074 SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS,
1078 inline SelectPatternResult matchSelectPattern(const Value *V, const Value *&LHS, in matchSelectPattern() function
1082 auto Result = matchSelectPattern(const_cast<Value *>(V), L, R); in matchSelectPattern()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp236 auto SPR = matchSelectPattern(SI, LHS, RHS); in trySADReplacement()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp3192 SelectPatternFlavor SPF = matchSelectPattern(Select, LHS, RHS).Flavor; in isSignedMinMaxClamp()
3200 SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor; in isSignedMinMaxClamp()
7454 SelectPatternResult L = matchSelectPattern(TVal, A, B, nullptr, Depth + 1); in matchMinMaxOfMinMax()
7459 SelectPatternResult R = matchSelectPattern(FVal, C, D, nullptr, Depth + 1); in matchMinMaxOfMinMax()
7645 static SelectPatternResult matchSelectPattern(CmpInst::Predicate Pred, in matchSelectPattern() function
7946 SelectPatternResult llvm::matchSelectPattern(Value *V, Value *&LHS, Value *&RHS, in matchSelectPattern() function in llvm
7986 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, in matchDecomposedSelectPattern()
7995 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, in matchDecomposedSelectPattern()
8000 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, TrueVal, FalseVal, in matchDecomposedSelectPattern()
8060 auto CurrentPattern = matchSelectPattern(I, LHS, RHS); in canConvertToMinOrMaxIntrinsic()
[all …]
H A DIVDescriptors.cpp1175 matchSelectPattern(Cur, LHS, RHS).Flavor); in getReductionOpChain()
H A DLazyValueInfo.cpp863 SelectPatternResult SPR = matchSelectPattern(SI, LHS, RHS); in solveBlockValueSelect()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp346 SelectPatternFlavor InstSPF = matchSelectPattern(Inst, LHS, RHS).Flavor; in isSSATMinMaxPattern()
357 matchSelectPattern(MinInst, MinLHS, MinRHS).Flavor; in isSSATMinMaxPattern()
958 SelectPatternFlavor SPF = matchSelectPattern(Sel, LHS, RHS).Flavor; in getCmpSelInstrCost()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp3574 SelectPatternResult SPR = matchSelectPattern(&SI, LHS, RHS, &CastOp); in visitSelectInst()
3578 if (SelectPatternFlavor SPF2 = matchSelectPattern(LHS, LHS2, RHS2).Flavor) in visitSelectInst()
3582 if (SelectPatternFlavor SPF2 = matchSelectPattern(RHS, LHS2, RHS2).Flavor) in visitSelectInst()
H A DInstCombineMulDivRem.cpp325 SelectPatternFlavor SPF = matchSelectPattern(Op0, X, Y).Flavor; in visitMul()
H A DInstCombineCasts.cpp721 if (matchSelectPattern(Sel, LHS, RHS).Flavor != SPF_UNKNOWN) in visitTrunc()
H A DInstCombineCompares.cpp6168 SelectPatternFlavor SPF = matchSelectPattern(Cmp.user_back(), A, B).Flavor; in foldICmpUsingKnownBits()
7009 SelectPatternResult SPR = matchSelectPattern(SI, A, B); in visitICmpInst()
7708 SelectPatternResult SPR = matchSelectPattern(SI, A, B); in visitFCmpInst()
H A DInstCombineCalls.cpp551 SelectPatternFlavor SPF = matchSelectPattern(Op0, X, Y).Flavor; in foldCttzCtlz()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3547 auto SPR = matchSelectPattern(const_cast<User*>(&I), LHS, RHS); in visitSelect()