Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp267 APInt find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative);
323 bool NonNegative);
506 bool NonNegative) { in CanTraceInto() argument
536 if (BO->getOpcode() == Instruction::Add && !ZeroExtended && NonNegative) { in CanTraceInto()
604 bool ZeroExtended, bool NonNegative) { in find() argument
620 if (CanTraceInto(SignExtended, ZeroExtended, BO, NonNegative)) in find()
624 find(U->getOperand(0), SignExtended, ZeroExtended, NonNegative) in find()
628 ZeroExtended, NonNegative).sext(BitWidth); in find()
H A DCorrelatedValuePropagation.cpp660 enum class Domain { NonNegative, NonPositive, Unknown }; enumerator
664 return Domain::NonNegative; in getDomain()
792 if (Op.D == Domain::NonNegative) in processSRem()
848 if (Op.D == Domain::NonNegative) in processSDiv()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp10659 bool NonNegative; member
10661 IntRange(unsigned Width, bool NonNegative) in IntRange()
10662 : Width(Width), NonNegative(NonNegative) {} in IntRange()
10666 return NonNegative ? Width : Width - 1; in valueBits()
10752 bool Unsigned = L.NonNegative && R.NonNegative; in join()
10754 L.NonNegative && R.NonNegative); in join()
10760 bool NonNegative = false; in bit_and() local
10761 if (L.NonNegative) { in bit_and()
10763 NonNegative = true; in bit_and()
10765 if (R.NonNegative) { in bit_and()
[all …]