Home
last modified time | relevance | path

Searched refs:Upper (Results 1 – 25 of 72) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp376 return Lower.ugt(Upper) && !Upper.isZero(); in isWrappedSet()
545 if (Upper.ult(CR.Upper)) in intersectWith()
554 if (Upper.ult(CR.Upper)) in intersectWith()
571 if (CR.Upper.ult(Upper)) in intersectWith()
599 if (CR.Upper.ult(Upper)) { in intersectWith()
647 if (CR.Upper.ult(Lower) || Upper.ult(CR.Lower)) in unionWith()
652 APInt U = (CR.Upper - 1).ugt(Upper - 1) ? CR.Upper : Upper; in unionWith()
663 if (CR.Upper.ule(Upper) || CR.Lower.uge(Lower)) in unionWith()
668 if (CR.Lower.ule(Upper) && Lower.ule(CR.Upper)) in unionWith()
694 if (CR.Lower.ule(Upper) || Lower.ule(CR.Upper)) in unionWith()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h170 bool Upper;
177 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
188 bool Upper = false) {
190 return FormattedNumber(N, 0, Width, true, Upper, true);
201 bool Upper = false) {
203 return FormattedNumber(N, 0, Width, true, Upper, false);
225 bool Upper; // Show offset and hex bytes as upper case.
233 ByteGroupSize(BGS), Upper(U), ASCII(A) {
244 uint32_t IndentLevel = 0, bool Upper = false) {
246 ByteGroupSize, Upper, false);
[all …]
H A DUnicodeCharRanges.h25 uint32_t Upper; member
32 return Range.Upper < Value;
82 if (I->Upper < I->Lower) { in rangesAreValid()
86 LLVM_DEBUG(dbgs().write_hex(I->Upper) << "\n"); in rangesAreValid()
89 Prev = I->Upper; in rangesAreValid()
H A DNativeFormatting.h22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; enumerator
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h48 APInt Lower, Upper; variable
70 ConstantRange(APInt Lower, APInt Upper);
84 static ConstantRange getNonEmpty(APInt Lower, APInt Upper) { in getNonEmpty() argument
85 if (Lower == Upper) in getNonEmpty()
87 return ConstantRange(std::move(Lower), std::move(Upper)); in getNonEmpty()
201 const APInt &getUpper() const { return Upper; } in getUpper()
247 if (Upper == Lower + 1) in getSingleElement()
255 if (Lower == Upper + 1) in getSingleMissingElement()
256 return &Upper; in getSingleMissingElement()
289 return Lower == CR.Lower && Upper == CR.Upper;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVRange.h27 LVAddress Upper = 0; variable
35 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry()
38 RangeType upper() const { return Upper; } in upper()
58 LVAddress Upper = 0; variable
72 LVAddress getUpper() const { return Upper; } in getUpper()
79 Upper = 0; in clear()
H A DLVType.h274 void setBounds(unsigned Lower, unsigned Upper) override { in setBounds() argument
276 UpperBound = Upper; in setBounds()
H A DLVSupport.h104 bool Upper = false) {
105 return format_hex(N, Width, Upper);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DScaledNumber.cpp33 uint64_t Upper = P1, Lower = P4; in multiply64() local
36 Upper += getU(N) + (NewLower < Lower); in multiply64()
43 if (!Upper) in multiply64()
47 unsigned LeadingZeros = llvm::countl_zero(Upper); in multiply64()
50 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64()
51 return getRounded(Upper, Shift, in multiply64()
H A DNativeFormatting.cpp144 bool Upper = in write_hex() local
145 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper); in write_hex()
158 *--CurPtr = hexdigit(x, !Upper); in write_hex()
H A Draw_ostream.cpp390 if (FN.Upper && FN.HexPrefix) in operator <<()
392 else if (FN.Upper && !FN.HexPrefix) in operator <<()
393 Style = HexPrintStyle::Upper; in operator <<()
394 else if (!FN.Upper && FN.HexPrefix) in operator <<()
417 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp30 bool Negative, bool Upper) { in appendNumber() argument
65 : (Upper ? 'A' : 'a') + Digit - 10); in appendNumber()
73 bool Upper) { in appendUnsigned() argument
75 PadWithZero, /*Negative=*/false, Upper); in appendUnsigned()
174 const bool Upper = (*Cur == 'X'); in formatString() local
176 Width, PadWithZero, Upper); in formatString()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp409 if (Lower <= Upper) in pin()
414 Upper = Type.getMaxValue(); in pin()
419 Type.apply(Upper); in pin()
438 Type.apply(Upper); in pin()
455 Type.apply(Upper); in pin()
460 if (Lower <= Upper) in pin()
481 if (Lower <= Upper) { in intersect()
509 Range(ValueFactory.getMinValue(Upper), ValueFactory.getValue(Upper))); in intersect()
854 llvm::APSInt Upper = Point; in deletePoint() local
857 ++Upper; in deletePoint()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp61 if (UpperAddress > Upper) in addEntry()
62 Upper = UpperAddress; in addEntry()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/
H A DLanai.def16 // Upper 16-bits of a symbolic relocation
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeHashing.h225 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8);
234 write_hex(Stream, B, HexPrintStyle::Upper, 2);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2633 if (Bound[K].Upper[Dependence::DVEntry::ALL]) in banerjeeMIVtest()
2747 if (Bound[Level].Upper[Dependence::DVEntry::LT]) in exploreDirections()
2758 if (Bound[Level].Upper[Dependence::DVEntry::EQ]) in exploreDirections()
2769 if (Bound[Level].Upper[Dependence::DVEntry::GT]) in exploreDirections()
2839 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL()
2849 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL()
2880 Bound[K].Upper[Dependence::DVEntry::EQ] = in findBoundsEQ()
2923 Bound[K].Upper[Dependence::DVEntry::LT] = in findBoundsLT()
2967 Bound[K].Upper[Dependence::DVEntry::GT] = in findBoundsGT()
3061 const SCEV *Sum = Bound[1].Upper[Bound[1].Direction]; in getUpperBound()
[all …]
H A DValueTracking.cpp428 ConstantInt *Upper = in computeKnownBitsFromRangeMetadata() local
2261 ConstantInt *Upper = in rangeMetadataExcludesValue() local
8560 Upper = *C + 1; in setLimitsForBinOp()
8590 Upper = *C + 1; in setLimitsForBinOp()
8605 Upper = *C + 1; in setLimitsForBinOp()
8620 Upper = *C + 1; in setLimitsForBinOp()
8652 Upper = IntMax + 1; in setLimitsForBinOp()
8660 Upper = Upper + 1; in setLimitsForBinOp()
8682 Upper = *C + 1; in setLimitsForBinOp()
8689 Upper = C->abs(); in setLimitsForBinOp()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h197 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper);
394 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const;
/freebsd-14.2/contrib/bmake/unit-tests/
H A Dvarmod-indirect.mk76 .if ${Upper:L:${:Utu}} != "UPPER"
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVELFReader.cpp685 LVOffset Upper = CurrentEndOffset; in traverseDieAndChildren() local
691 Upper = Child.getOffset(); in traverseDieAndChildren()
695 if (options().getPrintSizes() && Upper) in traverseDieAndChildren()
696 CompileUnit->addSize(Scope, Lower, Upper); in traverseDieAndChildren()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/
H A DARCDisassembler.cpp340 Field Upper = fieldFromInstruction(Insn, 0, 5); in DecodeSOPwithRS12() local
342 Field Result = Sign * ((Upper << 6) + Lower); in DecodeSOPwithRS12()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1132 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT); in splitLargeImmediate() local
1134 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper); in splitLargeImmediate()
1149 HandleSDNode Handle(Upper); in splitLargeImmediate()
1150 SelectCode(Upper.getNode()); in splitLargeImmediate()
1151 Upper = Handle.getValue(); in splitLargeImmediate()
1155 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower); in splitLargeImmediate()
/freebsd-14.2/sys/contrib/device-tree/Bindings/iio/frequency/
H A Dadi,adrf6780.yaml93 Switch to the Lower LO Sideband. By default the Upper LO
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp254 uint64_t Upper = std::min(A.HighPC, B.HighPC); in calculateOverlap() local
255 if (Lower >= Upper) in calculateOverlap()
257 return Upper - Lower; in calculateOverlap()

123