Home
last modified time | relevance | path

Searched refs:m_FSub (Results 1 – 24 of 24) sorted by relevance

/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1586 m_OneUse(m_FSub(m_FPOne(), in factorizeLerp()
1781 if (match(&I, m_c_FAdd(m_FSub(m_FNeg(m_Value(X)), m_Value(Y)), in visitFAdd()
2469 match(Op, m_OneUse(m_FSub(m_Value(X), m_Value(Y))))) in visitFNeg()
2571 if (match(Op1, m_OneUse(m_FSub(m_Value(X), m_Value(Y))))) { in visitFSub()
2631 if (match(Op0, m_FSub(m_Specific(Op1), m_Value(X)))) in visitFSub()
2656 if (match(Op0, m_OneUse(m_c_FAdd(m_OneUse(m_FSub(m_Value(X), m_Value(Y))), in visitFSub()
2689 if (match(Op0, m_OneUse(m_FSub(m_Value(X), m_Value(Y))))) { in visitFSub()
H A DInstCombineMulDivRem.cpp606 if (match(Op0, m_OneUse(m_FSub(m_Constant(C1), m_Value(X))))) { in visitFMul()
H A DInstCombineSelect.cpp2616 if (match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X)))) { in foldSelectWithFCmpToFabs()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1419 m_OneUse(m_FSub(m_FPOne(), in factorizeLerp()
2168 match(Op, m_OneUse(m_FSub(m_Value(X), m_Value(Y))))) in visitFNeg()
2208 if (match(Op1, m_OneUse(m_FSub(m_Value(X), m_Value(Y))))) { in visitFSub()
2260 if (match(Op0, m_FSub(m_Specific(Op1), m_Value(X)))) in visitFSub()
H A DInstCombineSelect.cpp2474 match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(FalseVal))) && in visitSelectInst()
2482 match(FalseVal, m_FSub(m_PosZeroFP(), m_Specific(TrueVal))) && in visitSelectInst()
H A DInstCombineMulDivRem.cpp467 if (match(Op0, m_OneUse(m_FSub(m_Constant(C1), m_Value(X))))) { in visitFMul()
H A DInstCombineCalls.cpp2705 if ((match(Arg0, m_OneUse(m_FSub(m_Value(A), m_Value(B)))) && in visitCallInst()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4603 if (match(Op0, m_FSub(m_AnyZeroFP(), m_Specific(Op1))) || in SimplifyFAddInst()
4604 match(Op1, m_FSub(m_AnyZeroFP(), m_Specific(Op0)))) in SimplifyFAddInst()
4616 (match(Op0, m_FSub(m_Value(X), m_Specific(Op1))) || in SimplifyFAddInst()
4617 match(Op1, m_FSub(m_Value(X), m_Specific(Op0))))) in SimplifyFAddInst()
4652 (match(Op1, m_FSub(m_AnyZeroFP(), m_Value(X))) || in SimplifyFSubInst()
4663 (match(Op1, m_FSub(m_Specific(Op0), m_Value(X))) || in SimplifyFSubInst()
H A DIVDescriptors.cpp545 m_FSub(m_Value(Op1), m_Value(Op2)).match(I1)) && in isConditionalRdxPattern()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5414 if (match(Op0, m_FSub(m_AnyZeroFP(), m_Specific(Op1))) || in simplifyFAddInst()
5415 match(Op1, m_FSub(m_AnyZeroFP(), m_Specific(Op0)))) in simplifyFAddInst()
5427 (match(Op0, m_FSub(m_Value(X), m_Specific(Op1))) || in simplifyFAddInst()
5428 match(Op1, m_FSub(m_Value(X), m_Specific(Op0))))) in simplifyFAddInst()
5472 (match(Op1, m_FSub(m_AnyZeroFP(), m_Value(X))) || in simplifyFSubInst()
5496 (match(Op1, m_FSub(m_Specific(Op0), m_Value(X))) || in simplifyFSubInst()
H A DIVDescriptors.cpp750 m_FSub(m_Value(Op1), m_Value(Op2)).match(I1)) && in isConditionalRdxPattern()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/CodeGen/
DSDPatternMatch.h551 inline BinaryOpc_match<LHS, RHS, false> m_FSub(const LHS &L, const RHS &R) {
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/CodeGen/
DSDPatternMatch.h551 inline BinaryOpc_match<LHS, RHS, false> m_FSub(const LHS &L, const RHS &R) {
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DPatternMatch.h802 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
847 return m_FSub(m_AnyZeroFP(), X); in m_FNegNSZ()
/aosp_15_r20/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp810 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0)))) in SimplifyFAddInst()
812 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1)))) in SimplifyFAddInst()
844 if (match(Op0, m_NegZero()) && match(Op1, m_FSub(m_NegZero(), m_Value(X)))) in SimplifyFSubInst()
849 match(Op1, m_FSub(m_AnyZero(), m_Value(X)))) in SimplifyFSubInst()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/CodeGen/
DSDPatternMatch.h593 inline BinaryOpc_match<LHS, RHS, false> m_FSub(const LHS &L, const RHS &R) {
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/
H A DPatternMatch.h997 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
1041 return m_FSub(m_AnyZeroFP(), X); in m_FNegNSZ()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/IR/
DPatternMatch.h1000 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
1044 return m_FSub(m_AnyZeroFP(), X); in m_FNegNSZ()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/IR/
DPatternMatch.h1025 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
1069 return m_FSub(m_AnyZeroFP(), X); in m_FNegNSZ()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/IR/
DPatternMatch.h1025 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
1069 return m_FSub(m_AnyZeroFP(), X); in m_FNegNSZ()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/IR/
DPatternMatch.h1104 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
1148 return m_FSub(m_AnyZeroFP(), X); in m_FNegNSZ()
/aosp_15_r20/external/llvm/include/llvm/IR/
H A DPatternMatch.h452 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp2180 if (match(I, m_FSub(m_Value(X), m_OneUse(m_Instruction(Op))))) in canonicalizeNegFPConstants()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp2066 if (match(I, m_FSub(m_Value(X), m_OneUse(m_Instruction(Op))))) in canonicalizeNegFPConstants()