Searched refs:Upper (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h22 /// Represents a closed range of Unicode code points [Lower, Upper].
25 uint32_t Upper; member in struct:llvm::sys::UnicodeCharRange
32 return Range.Upper < Value;
76 LLVM_DEBUG(dbgs() << "Upper bound 0x");
82 if (I->Upper < I->Lower) {
83 LLVM_DEBUG(dbgs() << "Upper bound 0x");
86 LLVM_DEBUG(dbgs().write_hex(I->Upper) << "\n");
89 Prev = I->Upper;
H A DFormat.h169 bool Upper; member in class:llvm::FormattedNumber
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
187 bool Upper = false) {
189 return FormattedNumber(N, 0, Width, true, Upper, true);
200 bool Upper = false) {
202 return FormattedNumber(N, 0, Width, true, Upper, false);
223 bool Upper; // Show offset and hex bytes as upper case. member in class:llvm::FormattedBytes
231 ByteGroupSize(BGS), Upper(U), ASCII(A) {
241 uint32_t IndentLevel = 0, bool Upper = false) {
243 ByteGroupSize, Upper, fals
[all...]
H A DNativeFormatting.h23 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; member in class:llvm::HexPrintStyle
H A DFormatProviders.h84 Style = HexPrintStyle::Upper;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp44 Upper(Lower) {}
47 : Lower(std::move(V)), Upper(Lower + 1) {}
50 : Lower(std::move(L)), Upper(std::move(U)) {
51 assert(Lower.getBitWidth() == Upper.getBitWidth() &&
53 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
54 "Lower == Upper, but they aren't min or max value!");
71 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue();
73 Upper.clearSignBit();
74 return ConstantRange(Lower, Upper + 1);
210 APInt Lower, Upper;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h48 APInt Lower, Upper; member in class:llvm::ConstantRange
68 /// Lower==Upper and Lower != Min or Max value for its type. It will also
70 ConstantRange(APInt Lower, APInt Upper);
83 /// Upper are the same, a full range is returned.
84 static ConstantRange getNonEmpty(APInt Lower, APInt Upper) { argument
85 if (Lower == Upper)
87 return ConstantRange(std::move(Lower), std::move(Upper));
162 const APInt &getUpper() const { return Upper; }
208 if (Upper == Lower + 1)
216 if (Lower == Upper
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp27 const llvm::APSInt &Lower, const llvm::APSInt &Upper,
42 if (i->From() > Upper) {
47 if (i->Includes(Upper)) {
49 F.add(newRanges, Range(BV.getValue(Lower), BV.getValue(Upper)));
54 if (i->Includes(Upper)) {
55 newRanges = F.add(newRanges, Range(i->From(), BV.getValue(Upper)));
68 bool RangeSet::pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
76 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper, true);
84 if (Lower <= Upper)
89 Upper
26 IntersectInRange(BasicValueFactory &BV, Factory &F, const llvm::APSInt &Lower, const llvm::APSInt &Upper, PrimRangeSet &newRanges, PrimRangeSet::iterator &i, PrimRangeSet::iterator &e) const argument
563 llvm::APSInt Upper = Lower; local
610 llvm::APSInt Upper = ComparisonVal - Adjustment; local
646 llvm::APSInt Upper = Max - Adjustment; local
683 llvm::APSInt Upper = Max - Adjustment; local
719 llvm::APSInt Upper = ComparisonVal - Adjustment; local
[all...]
/freebsd-11-stable/stand/pc98/boot0.5/
H A Dputssjis.s115 ja sjis_h_2 # Upper > 0x9f
116 subb $0x71, %al # Upper -= 0x71
119 subb $0xb1, %al # Upper -= 0xb1
121 salb %al # Upper *= 2
122 incb %al # Upper += 1
131 incb %al # Upper += 1
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp30 bool Negative, bool Upper) {
65 : (Upper ? 'A' : 'a') + Digit - 10);
73 bool Upper) {
75 PadWithZero, /*Negative=*/false, Upper);
84 /*Upper=*/false);
113 /*Upper=*/false);
171 const bool Upper = (*Cur == 'X'); local
173 Width, PadWithZero, Upper);
28 appendNumber(char **Buffer, const char *BufferEnd, u64 AbsoluteValue, u8 Base, u8 MinNumberLength, bool PadWithZero, bool Negative, bool Upper) argument
71 appendUnsigned(char **Buffer, const char *BufferEnd, u64 Num, u8 Base, u8 MinNumberLength, bool PadWithZero, bool Upper) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DScaledNumber.cpp33 uint64_t Upper = P1, Lower = P4; local
36 Upper += getU(N) + (NewLower < Lower);
43 if (!Upper)
47 unsigned LeadingZeros = countLeadingZeros(Upper);
50 Upper = Upper << LeadingZeros | Lower >> Shift;
51 return getRounded(Upper, Shift,
H A DNativeFormatting.cpp142 bool Upper = local
143 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper);
156 *--CurPtr = hexdigit(x, !Upper);
H A Draw_ostream.cpp382 if (FN.Upper && FN.HexPrefix)
384 else if (FN.Upper && !FN.HexPrefix)
385 Style = HexPrintStyle::Upper;
386 else if (!FN.Upper && FN.HexPrefix)
409 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower;
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dmodmatch.mk32 @echo Upper=${LIST:M[A-Z]*}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStratifiedSets.h514 auto *Upper = &linksAt(UpperIndex); local
515 if (Lower == Upper)
521 while (Current->hasAbove() && Current != Upper) {
527 if (Current != Upper)
530 Upper->setAttrs(Attrs);
534 Upper->setBelow(NewBelowIndex);
538 Upper->clearBelow();
542 Ptr->remapTo(Upper->Number);
H A DValueTracking.cpp452 ConstantInt *Upper = local
454 ConstantRange Range(Lower->getValue(), Upper->getValue());
2081 ConstantInt *Upper = local
2083 ConstantRange Range(Lower->getValue(), Upper->getValue());
5596 APInt &Upper, const InstrInfoQuery &IIQ) {
5610 Upper = APInt::getSignedMaxValue(Width) + *C + 1;
5614 Upper = APInt::getSignedMaxValue(Width) + 1;
5623 Upper = *C + 1;
5636 Upper = APInt::getSignedMaxValue(Width).ashr(*C) + 1;
5644 Upper
5595 setLimitsForBinOp(const BinaryOperator &BO, APInt &Lower, APInt &Upper, const InstrInfoQuery &IIQ) argument
5750 setLimitsForIntrinsic(const IntrinsicInst &II, APInt &Lower, APInt &Upper) argument
5811 setLimitsForSelectPattern(const SelectInst &SI, APInt &Lower, APInt &Upper, const InstrInfoQuery &IIQ) argument
5874 APInt Upper = APInt(BitWidth, 0); local
[all...]
H A DDependenceAnalysis.cpp2557 if (Bound[K].Upper[Dependence::DVEntry::ALL])
2558 LLVM_DEBUG(dbgs() << *Bound[K].Upper[Dependence::DVEntry::ALL] << '\n');
2658 if (Bound[Level].Upper[Dependence::DVEntry::LT])
2659 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::LT]
2669 if (Bound[Level].Upper[Dependence::DVEntry::EQ])
2670 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::EQ]
2680 if (Bound[Level].Upper[Dependence::DVEntry::GT])
2681 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::GT]
2745 Bound[K].Upper[Dependence::DVEntry::ALL] = nullptr; // Default value = +infinity.
2750 Bound[K].Upper[Dependenc
[all...]
H A DStackSafetyAnalysis.cpp220 ConstantRange getRange(uint64_t Lower, uint64_t Upper) const {
221 return ConstantRange(APInt(PointerSize, Lower), APInt(PointerSize, Upper));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h105 const llvm::APSInt &Lower, const llvm::APSInt &Upper,
111 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const;
115 llvm::APSInt Upper) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeHashing.h217 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8);
226 write_hex(Stream, B, HexPrintStyle::Upper, 2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1116 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT); local
1118 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper);
1121 // When we haven't passed in Op0, Upper will be a constant. In order to
1124 // we need to use a handle to keep track of Upper in case it gets CSE'd by
1128 // SelectCode(Upper) later, along with the SelectCode(Or), and avoid needing
1133 HandleSDNode Handle(Upper);
1134 SelectCode(Upper.getNode());
1135 Upper = Handle.getValue();
1139 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lowe
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h362 const SCEV *Upper[8]; member in struct:llvm::DependenceInfo::BoundInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp69 int64_t Lower, int64_t Upper, Twine Msg);
798 OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper,
801 return Error(ErrorLoc, Msg + " [" + Twine(Lower) + ", " + Twine(Upper) + "]");
797 generateImmOutOfRangeError( OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper, Twine Msg = �) argument
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh126 grep -i Upper "$(atf_get_srcdir)/d_input"
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5684 /// Upper bound.
6488 // Upper - Lower
6491 Expr *Upper = tryBuildCapture(SemaRef, UBExpr, Captures).get();
6493 if (!Upper || !Lower)
6496 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower);
6501 SemaRef.Diag(Upper->getBeginLoc(), diag::err_omp_loop_diff_cxx)
6502 << Upper->getSourceRange() << Lower->getSourceRange();
6510 // Upper - Lower [- 1]
6518 // Upper - Lower [- 1] + Step
6531 // (Upper
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2588 const APInt &Upper = CR.getUpper(); local
2592 return new ICmpInst(ICmpInst::ICMP_SLT, X, ConstantInt::get(Ty, Upper));
2593 if (Upper.isSignMask())
2597 return new ICmpInst(ICmpInst::ICMP_ULT, X, ConstantInt::get(Ty, Upper));
2598 if (Upper.isMinValue())

Completed in 486 milliseconds

12