Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4099 const APInt &ValueLow = CstLow->getAPIntValue(); in computeKnownBits() local
4101 if (ValueLow.sle(ValueHigh)) { in computeKnownBits()
4102 unsigned LowSignBits = ValueLow.getNumSignBits(); in computeKnownBits()
4105 if (ValueLow.isNegative() && ValueHigh.isNegative()) { in computeKnownBits()
4109 if (ValueLow.isNonNegative() && ValueHigh.isNonNegative()) { in computeKnownBits()
4128 const APInt &ValueLow = CstLow->getAPIntValue(); in computeKnownBits() local
4129 if (ValueLow.isNonNegative()) { in computeKnownBits()
4131 Known.Zero.setHighBits(std::min(SignBits, ValueLow.getNumSignBits())); in computeKnownBits()