Searched refs:m_Mul (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 1651 if (match(Op1, m_Mul(m_Value(A), m_Neg(m_Value(B)))) || in visitSub() 1652 match(Op1, m_Mul(m_Neg(m_Value(A)), m_Value(B)))) in visitSub() 1657 if (match(Op1, m_Mul(m_Value(A), m_Constant(CI))) || in visitSub() 1658 match(Op1, m_Mul(m_Constant(CI), m_Value(A)))) { in visitSub()
|
D | InstCombineMulDivRem.cpp | 201 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)), in visitMul() 216 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) { in visitMul() 287 if (!match(Mul, m_Mul(m_Value(), m_Value()))) in visitMul()
|
D | InstCombineCompares.cpp | 3663 if (match(Op0, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) { in visitICmpInst() 3667 if (match(Op1, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) { in visitICmpInst()
|
/external/llvm/lib/Transforms/Scalar/ |
D | NaryReassociate.cpp | 534 return match(V, m_Mul(m_Value(Op1), m_Value(Op2))); in matchTernaryOp()
|
D | StraightLineStrengthReduce.cpp | 397 if (match(RHS, m_Mul(m_Value(S), m_ConstantInt(Idx)))) { in allocateCandidatesAndFindBasisForAdd()
|
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 458 inline BinaryOp_match<LHS, RHS, Instruction::Mul> m_Mul(const LHS &L, in m_Mul() function
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1035 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) { in SimplifyDiv()
|
D | ValueTracking.cpp | 2033 else if (match(V, m_Mul(m_Value(X), m_Value(Y)))) { in isKnownNonZero()
|