Lines Matching defs:ConstB
120 const APInt *ConstA = nullptr, *ConstB = nullptr, *ConstC = nullptr;
122 match(B, m_APInt(ConstB));
126 bool IsBPow2 = ConstB && ConstB->isPowerOf2();
157 } else if (ConstB && ConstC && ConstC->isSubsetOf(*ConstB)) {
602 const APInt *ConstB, *ConstD;
603 if (match(B, m_APInt(ConstB)) && match(D, m_APInt(ConstD))) {
610 APInt NewMask = *ConstB & *ConstD;
611 if (NewMask == *ConstB)
622 APInt NewMask = *ConstB | *ConstD;
623 if (NewMask == *ConstB)
658 const APInt ConstC = PredL != CC ? *ConstB ^ *OldConstC : *OldConstC;
661 if (((*ConstB & *ConstD) & (ConstC ^ ConstE)).getBoolValue())
664 if (IsNot && !ConstB->isSubsetOf(*ConstD) &&
665 !ConstD->isSubsetOf(*ConstB))
670 BD = *ConstB & *ConstD;
673 BD = *ConstB | *ConstD;