Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp3040 const APInt *LowBitMaskCst; in foldRoundUpIntegerWithPow2Alignment() local
3041 if (!match(XLowBits, m_And(m_Specific(X), m_APIntAllowPoison(LowBitMaskCst)))) in foldRoundUpIntegerWithPow2Alignment()
3054 if (!LowBitMaskCst->isMask()) in foldRoundUpIntegerWithPow2Alignment()
3057 APInt InvertedLowBitMaskCst = ~*LowBitMaskCst; in foldRoundUpIntegerWithPow2Alignment()
3061 APInt AlignmentCst = *LowBitMaskCst + 1; in foldRoundUpIntegerWithPow2Alignment()
3063 if (*BiasCst != AlignmentCst && *BiasCst != *LowBitMaskCst) in foldRoundUpIntegerWithPow2Alignment()
3068 if (*BiasCst == *LowBitMaskCst && impliesPoison(XBiasedHighBits, X)) in foldRoundUpIntegerWithPow2Alignment()
3075 Value *XOffset = Builder.CreateAdd(X, ConstantInt::get(Ty, *LowBitMaskCst), in foldRoundUpIntegerWithPow2Alignment()