Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DBranchProbability.cpp68 template <uint32_t ConstD>
70 if (ConstD > 0) in scale()
71 D = ConstD; in scale()
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp602 const APInt *ConstB, *ConstD; in foldLogOpOfMaskedICmps() local
603 if (!match(B, m_APInt(ConstB)) || !match(D, m_APInt(ConstD))) in foldLogOpOfMaskedICmps()
612 APInt NewMask = *ConstB & *ConstD; in foldLogOpOfMaskedICmps()
615 else if (NewMask == *ConstD) in foldLogOpOfMaskedICmps()
624 APInt NewMask = *ConstB | *ConstD; in foldLogOpOfMaskedICmps()
627 else if (NewMask == *ConstD) in foldLogOpOfMaskedICmps()
647 const APInt ConstE = PredR != NewCC ? *ConstD ^ *OldConstE : *OldConstE; in foldLogOpOfMaskedICmps()
651 if (((*ConstB & *ConstD) & (ConstC ^ ConstE)).getBoolValue()) in foldLogOpOfMaskedICmps()