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)) {
561 const APInt *ConstB, *ConstD;
562 if (!match(B, m_APInt(ConstB)) || !match(D, m_APInt(ConstD)))
571 APInt NewMask = *ConstB & *ConstD;
572 if (NewMask == *ConstB)
583 APInt NewMask = *ConstB | *ConstD;
584 if (NewMask == *ConstB)
619 const APInt ConstC = PredL != CC ? *ConstB ^ *OldConstC : *OldConstC;
622 if (((*ConstB & *ConstD) & (ConstC ^ ConstE)).getBoolValue())
625 if (IsNot && !ConstB->isSubsetOf(*ConstD) && !ConstD->isSubsetOf(*ConstB))
630 BD = *ConstB & *ConstD;
633 BD = *ConstB | *ConstD;