Searched refs:ConstB (Results 1 - 1 of 1) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp120 const APInt *ConstA = nullptr, *ConstB = nullptr, *ConstC = nullptr; local
122 match(B, m_APInt(ConstB));
126 bool IsBPow2 = ConstB && ConstB->isPowerOf2();
157 } else if (ConstB && ConstC && ConstC->isSubsetOf(*ConstB)) {
561 const APInt *ConstB, *ConstD; local
562 if (!match(B, m_APInt(ConstB)) || !match(D, m_APInt(ConstD)))
571 APInt NewMask = *ConstB & *ConstD;
572 if (NewMask == *ConstB)
[all...]

Completed in 177 milliseconds