| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 49 : Lower(std::move(V)), Upper(Lower + 1) {} in ConstantRange() 55 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && in ConstantRange() 368 return Lower == Upper && Lower.isMaxValue(); in isFullSet() 372 return Lower == Upper && Lower.isMinValue(); in isEmptySet() 537 if (Lower.ult(CR.Lower)) { in intersectWith() 583 if (CR.Lower.ult(Lower)) { in intersectWith() 607 if (CR.Lower.ult(Lower)) in intersectWith() 617 if (CR.Lower.ult(Lower)) in intersectWith() 651 APInt L = CR.Lower.ult(Lower) ? CR.Lower : Lower; in unionWith() 694 if (CR.Lower.ule(Upper) || Lower.ule(CR.Upper)) in unionWith() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ConstantRange.h | 48 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() 86 return getFull(Lower.getBitWidth()); in getNonEmpty() 87 return ConstantRange(std::move(Lower), std::move(Upper)); in getNonEmpty() 198 const APInt &getLower() const { return Lower; } in getLower() 247 if (Upper == Lower + 1) in getSingleElement() 248 return &Lower; in getSingleElement() 255 if (Lower == Upper + 1) in getSingleMissingElement() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | UnicodeCharRanges.h | 24 uint32_t Lower; member 29 return Value < Range.Lower; 75 if (I != Ranges.begin() && Prev >= I->Lower) { in rangesAreValid() 79 LLVM_DEBUG(dbgs().write_hex(I->Lower) << "\n"); in rangesAreValid() 82 if (I->Upper < I->Lower) { in rangesAreValid() 84 LLVM_DEBUG(dbgs().write_hex(I->Lower)); in rangesAreValid()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVRange.h | 26 LVAddress Lower = 0; variable 35 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry() 37 RangeType lower() const { return Lower; } in lower() 57 LVAddress Lower = MaxAddress; variable 71 LVAddress getLower() const { return Lower; } in getLower() 78 Lower = MaxAddress; in clear()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 33 uint64_t Upper = P1, Lower = P4; in multiply64() local 35 uint64_t NewLower = Lower + (getL(N) << 32); in multiply64() 36 Upper += getU(N) + (NewLower < Lower); in multiply64() 37 Lower = NewLower; in multiply64() 44 return std::make_pair(Lower, 0); in multiply64() 50 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64() 52 Shift && (Lower & UINT64_C(1) << (Shift - 1))); in multiply64()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerCorpus.h | 57 auto Lower = std::lower_bound(FeatureFreqs.begin(), FeatureFreqs.end(), in DeleteFeatureFreq() local 60 if (Lower != FeatureFreqs.end() && Lower->first == Idx) { in DeleteFeatureFreq() 61 FeatureFreqs.erase(Lower); in DeleteFeatureFreq() 136 auto Lower = std::lower_bound(FeatureFreqs.begin(), FeatureFreqs.end(), in UpdateFeatureFrequency() local 141 if (Lower != FeatureFreqs.end() && Lower->first == Idx) { in UpdateFeatureFrequency() 142 Lower->second++; in UpdateFeatureFrequency() 144 FeatureFreqs.insert(Lower, std::pair<uint32_t, uint16_t>(Idx, 1)); in UpdateFeatureFrequency()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstExtenders.cpp | 671 if (height(Lower->Left) > height(Lower->Right)) in rotateLeft() 672 Lower = rotateRight(Lower->Left, Lower); in rotateLeft() 673 assert(height(Lower->Left) <= height(Lower->Right)); in rotateLeft() 676 Lower->Left = Higher; in rotateLeft() 677 update(Lower); in rotateLeft() 678 return Lower; in rotateLeft() 686 if (height(Lower->Left) < height(Lower->Right)) in rotateRight() 687 Lower = rotateLeft(Lower->Right, Lower); in rotateRight() 688 assert(height(Lower->Left) >= height(Lower->Right)); in rotateRight() 692 update(Lower); in rotateRight() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.h | 78 Lower, enumerator 176 case LegacyLegalizeActions::Lower: in LegalizeActionStep() 177 Action = LegalizeActions::Lower; in LegalizeActionStep() 670 return actionIf(LegalizeAction::Lower, always); in lower() 679 return actionIf(LegalizeAction::Lower, Predicate); in lowerIf() 692 return actionFor(LegalizeAction::Lower, Types); in lowerFor() 698 return actionFor(LegalizeAction::Lower, Types, Mutation); in lowerFor() 703 return actionFor(LegalizeAction::Lower, Types); in lowerFor() 709 return actionFor(LegalizeAction::Lower, Types, Mutation); in lowerFor() 828 return actionIf(LegalizeAction::Lower, in lowerIfMemSizeNotPow2() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | RangeConstraintManager.cpp | 409 if (Lower <= Upper) in pin() 413 Lower = Type.getMinValue(); in pin() 432 Type.apply(Lower); in pin() 437 Type.apply(Lower); in pin() 442 Type.apply(Lower); in pin() 460 if (Lower <= Upper) in pin() 481 if (Lower <= Upper) { in intersect() 511 Range(ValueFactory.getValue(Lower), ValueFactory.getMaxValue(Lower))); in intersect() 855 llvm::APSInt Lower = Point; in deletePoint() local 858 --Lower; in deletePoint() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZAsmPrinter.cpp | 199 SystemZMCInstLower Lower(MF->getContext(), *this); in emitInstruction() local 306 .addExpr(Lower.getExpr(MI->getOperand(0), in emitInstruction() 527 Lower.lower(MI, LoweredMI); in emitInstruction() 532 Lower.lower(MI, LoweredMI); in emitInstruction() 537 Lower.lower(MI, LoweredMI); in emitInstruction() 542 Lower.lower(MI, LoweredMI); in emitInstruction() 651 LowerFENTRY_CALL(*MI, Lower); in emitInstruction() 659 LowerPATCHPOINT(*MI, Lower); in emitInstruction() 689 Lower.lower(MI, LoweredMI); in emitInstruction() 938 SystemZMCInstLower Lower(MF->getContext(), *this); in PrintAsmOperand() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | flags.inc | 15 "deallocation of chunks. Lower value may reduce memory usage but " 20 "quarantine. Lower value may reduce memory usage but might increase "
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVRange.cpp | 59 if (LowerAddress < Lower) in addEntry() 60 Lower = LowerAddress; in addEntry()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKYAsmPrinter.cpp | 84 MCInstLowering.Lower(Instr, LRWInst); in expandTLSLA() 91 MCInstLowering.Lower(Instr, GRSInst); in expandTLSLA() 163 MCInstLowering.Lower(MI, TmpInst); in emitInstruction()
|
| H A D | CSKYMCInstLower.h | 28 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreMCInstLower.h | 30 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCMCInstLower.h | 33 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| H A D | ARCAsmPrinter.cpp | 65 MCInstLowering.Lower(MI, TmpInst); in emitInstruction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiAsmPrinter.cpp | 176 MCInstLowering.Lower(MI, TmpInst); in emitCallInstruction() 193 MCInstLowering.Lower(MI, TmpInst); in customEmitInstruction()
|
| H A D | LanaiMCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | Lanai.def | 18 // Lower 16-bits of a symbolic relocation
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFMCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kMCInstLower.h | 50 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430MCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsMCInstLower.h | 37 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64MCInstLower.h | 36 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|