Searched refs:m_APIntAllowPoison (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CmpInstAnalysis.cpp | 82 if (!match(RHS, m_APIntAllowPoison(C))) in decomposeBitTestICmp()
|
H A D | InstructionSimplify.cpp | 3039 if (!match(RHS, m_APIntAllowPoison(C))) in simplifyICmpWithConstant() 3072 ((match(LHS, m_NUWMul(m_Value(), m_APIntAllowPoison(MulC))) && in simplifyICmpWithConstant() 3074 (match(LHS, m_NSWMul(m_Value(), m_APIntAllowPoison(MulC))) && in simplifyICmpWithConstant() 3219 if (match(LBO, m_Sub(m_APIntAllowPoison(C), m_Specific(RHS))) && in simplifyICmpWithBinOpOnLHS() 3370 match(RHS, m_APIntAllowPoison(C)) && !C->isPowerOf2()) { in simplifyICmpWithBinOp() 6513 if (match(Op1, m_APIntAllowPoison(C))) { in simplifyBinaryIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 1651 if (!match(Cmp->getOperand(1), m_APIntAllowPoison(CmpC))) in foldSelectZeroOrOnes() 2969 if (!match(XLowBits, m_And(m_Specific(X), m_APIntAllowPoison(LowBitMaskCst)))) in foldRoundUpIntegerWithPow2Alignment() 2975 m_And(m_Add(m_Specific(X), m_APIntAllowPoison(BiasCst)), in foldRoundUpIntegerWithPow2Alignment() 2976 m_APIntAllowPoison(HighBitMaskCst))) && in foldRoundUpIntegerWithPow2Alignment() 2978 m_Add(m_And(m_Specific(X), m_APIntAllowPoison(HighBitMaskCst)), in foldRoundUpIntegerWithPow2Alignment() 2979 m_APIntAllowPoison(BiasCst)))) in foldRoundUpIntegerWithPow2Alignment()
|
H A D | InstCombineAndOrXor.cpp | 997 return match(B, m_APIntAllowPoison(BCst)) && match(D, m_APInt(DCst)) && in foldNegativePower2AndShiftedMask() 2780 m_AShr(m_Value(X), m_APIntAllowPoison(C)))), in visitAnd() 2789 m_Not(m_AShr(m_Value(X), m_APIntAllowPoison(C))))), in visitAnd() 2890 if (match(L, m_APIntAllowPoison(LI)) && match(R, m_APIntAllowPoison(RI))) in convertOrOfShiftsToFunnelShift() 3245 !match(LHS->getOperand(1), m_APIntAllowPoison(CInt)) || in foldAndOrOfICmpEqConstantAndICmp() 4716 m_AShr(m_Value(X), m_APIntAllowPoison(CA))))) && in visitXor()
|
H A D | InstCombineCompares.cpp | 3453 if (match(Cmp.getOperand(1), m_APIntAllowPoison(C))) in foldICmpInstWithConstant() 5108 if (match(B, m_APIntAllowPoison(AP1)) && in foldICmpBinOp() 5109 match(D, m_APIntAllowPoison(AP2)) && in foldICmpBinOp() 5681 if ((match(Op0, m_OneUse(m_LShr(m_Value(A), m_APIntAllowPoison(AP1)))) && in foldICmpEquality() 5682 match(Op1, m_OneUse(m_LShr(m_Value(B), m_APIntAllowPoison(AP2))))) || in foldICmpEquality() 5683 (match(Op0, m_OneUse(m_AShr(m_Value(A), m_APIntAllowPoison(AP1)))) && in foldICmpEquality() 5684 match(Op1, m_OneUse(m_AShr(m_Value(B), m_APIntAllowPoison(AP2)))))) { in foldICmpEquality()
|
H A D | InstCombineMulDivRem.cpp | 285 match(Op1, m_APIntAllowPoison(NegPow2C))) { in visitMul()
|
H A D | InstructionCombining.cpp | 3880 if (match(WO->getRHS(), m_APIntAllowPoison(C))) { in foldExtractOfOverflowIntrinsic()
|
H A D | InstCombineCalls.cpp | 1896 if (match(I1, m_APIntAllowPoison(RHSC))) { in visitCallInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibCalls.cpp | 918 match(opr1, m_APIntAllowPoison(CINT)); in fold_pow() 1158 if (!match(opr1, m_APIntAllowPoison(CINT))) in fold_rootn()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 305 inline apint_match m_APIntAllowPoison(const APInt *&Res) { in m_APIntAllowPoison() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.cpp | 4212 PatternMatch::match(Args[2], PatternMatch::m_APIntAllowPoison(Amt))) in getIntrinsicInstrCost() 4228 PatternMatch::match(Args[2], PatternMatch::m_APIntAllowPoison(Amt))) in getIntrinsicInstrCost()
|