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.cpp4336 const APInt &ValueLow = CstLow->getAPIntValue(); in computeKnownBits() local
4338 if (ValueLow.sle(ValueHigh)) { in computeKnownBits()
4339 unsigned LowSignBits = ValueLow.getNumSignBits(); in computeKnownBits()
4342 if (ValueLow.isNegative() && ValueHigh.isNegative()) { in computeKnownBits()
4346 if (ValueLow.isNonNegative() && ValueHigh.isNonNegative()) { in computeKnownBits()
4365 const APInt &ValueLow = CstLow->getAPIntValue(); in computeKnownBits() local
4366 if (ValueLow.isNonNegative()) { in computeKnownBits()
4368 Known.Zero.setHighBits(std::min(SignBits, ValueLow.getNumSignBits())); in computeKnownBits()