Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3937 const APInt &ValueLow = CstLow->getAPIntValue(); in computeKnownBits() local
3939 if (ValueLow.sle(ValueHigh)) { in computeKnownBits()
3940 unsigned LowSignBits = ValueLow.getNumSignBits(); in computeKnownBits()
3943 if (ValueLow.isNegative() && ValueHigh.isNegative()) { in computeKnownBits()
3947 if (ValueLow.isNonNegative() && ValueHigh.isNonNegative()) { in computeKnownBits()
3966 const APInt &ValueLow = CstLow->getAPIntValue(); in computeKnownBits() local
3967 if (ValueLow.isNonNegative()) { in computeKnownBits()
3969 Known.Zero.setHighBits(std::min(SignBits, ValueLow.getNumSignBits())); in computeKnownBits()