Searched refs:m_NegatedPower2 (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 264 if (Op0->hasOneUse() && match(Op1, m_NegatedPower2())) { in visitMul() 1621 if (match(Op1, m_NegatedPower2())) { in visitSDiv() 1678 (match(Op1, m_Power2(Op1C)) || match(Op1, m_NegatedPower2(Op1C))) && in visitSDiv() 1692 if (match(Op1, m_NegatedPower2())) { in visitSDiv()
|
H A D | InstCombineAddSub.cpp | 1688 if (match(&I, m_c_Add(m_OneUse(m_Mul(m_Value(A), m_NegatedPower2(NegPow2C))), in visitAdd()
|
H A D | InstCombineCalls.cpp | 1848 if (match(I0, m_OneUse(m_And(m_Value(X), m_NegatedPower2(RHSC)))) && in visitCallInst()
|
H A D | InstCombineAndOrXor.cpp | 980 if (!match(B, m_NegatedPower2()) || !match(D, m_ShiftedMask()) || in foldNegativePower2AndShiftedMask()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 627 inline cst_pred_ty<is_negated_power2> m_NegatedPower2() { in m_NegatedPower2() function 630 inline api_pred_ty<is_negated_power2> m_NegatedPower2(const APInt *&V) { in m_NegatedPower2() function
|