Home
last modified time | relevance | path

Searched refs:RangeType (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemoryRegionInfo.h23 typedef Range<lldb::addr_t, lldb::addr_t> RangeType; typedef
28 MemoryRegionInfo(RangeType range, OptionalBool read, OptionalBool write, in MemoryRegionInfo()
38 RangeType &GetRange() { return m_range; } in GetRange()
42 const RangeType &GetRange() const { return m_range; } in GetRange()
140 RangeType m_range;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVRange.h31 using RangeType = LVAddress;
37 RangeType lower() const { return Lower; } in lower()
38 RangeType upper() const { return Upper; } in upper()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp58 template <typename T, typename RangeType>
60 allocateNewArray(const iterator_range<RangeType> &Range);
84 template <typename T, typename RangeType>
86 BlobAllocator::allocateNewArray(const iterator_range<RangeType> &Range) { in allocateNewArray()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp93 MemoryRegionInfo::RangeType tag_range(RemoveTagBits(addr), len); in MakeTaggedRange()
97 MemoryRegionInfo::RangeType remaining_range(tag_range); in MakeTaggedRange()
178 MemoryRegionInfo::RangeType range(RemoveTagBits(addr), len); in MakeTaggedRanges()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h258 template <class RangeType>
259 MemoryAccess *tryRemoveTrivialPhi(MemoryPhi *Phi, RangeType &Operands);
/freebsd-14.2/sys/contrib/dev/acpica/components/resources/
H A Drsaddr.c378 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET (Data.Address.Info.Mem.RangeType),
401 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET (Data.Address.Info.Io.RangeType),
H A Drsdumpinfo.c526 …{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET (Address.Info.Mem.RangeType), "Range Type", …
533 …{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET (Address.Info.Io.RangeType), "Range Type", …
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h403 PreferredRangeType RangeType = Smallest) const;
415 PreferredRangeType RangeType = Smallest) const;
/freebsd-14.2/sys/contrib/dev/acpica/include/
H A Dacrestyp.h413 UINT8 RangeType; member
420 UINT8 RangeType; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp1027 PreferredRangeType RangeType) const { in addWithNoWrap()
1044 Result = Result.intersectWith(sadd_sat(Other), RangeType); in addWithNoWrap()
1047 Result = Result.intersectWith(uadd_sat(Other), RangeType); in addWithNoWrap()
1074 PreferredRangeType RangeType) const { in subWithNoWrap()
1091 Result = Result.intersectWith(ssub_sat(Other), RangeType); in subWithNoWrap()
1096 Result = Result.intersectWith(usub_sat(Other), RangeType); in subWithNoWrap()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp1404 APSIntType RangeType = ValueFactory.getAPSIntType(T); in getSymmetricalRange() local
1406 if (RangeType.isUnsigned()) { in getSymmetricalRange()
1407 return Range(ValueFactory.getMinValue(RangeType), Origin.To()); in getSymmetricalRange()
1414 return {ValueFactory.getMinValue(RangeType), in getSymmetricalRange()
1415 ValueFactory.getMaxValue(RangeType)}; in getSymmetricalRange()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp207 template <class RangeType>
209 RangeType &Operands) { in tryRemoveTrivialPhi()
H A DScalarEvolution.cpp6606 ConstantRange::PreferredRangeType RangeType = in getRangeRef() local
6687 WrapType, RangeType); in getRangeRef()
6689 ConservativeResult.intersectWith(X, RangeType)); in getRangeRef()
6697 ConservativeResult.intersectWith(X, RangeType)); in getRangeRef()
6735 RangeType); in getRangeRef()
6741 RangeType); in getRangeRef()
6819 ConservativeResult.intersectWith(X, RangeType)); in getRangeRef()
6829 ConservativeResult.intersectWith(*MDRange, RangeType); in getRangeRef()
6866 RangeType); in getRangeRef()
6871 RangeType); in getRangeRef()
[all …]
H A DValueTracking.cpp6293 ConstantRange::PreferredRangeType RangeType = in computeConstantRangeIncludingKnownBits() local
6295 return CR1.intersectWith(CR2, RangeType); in computeConstantRangeIncludingKnownBits()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2580 QualType RangeType, VarDecl *BeginVar, VarDecl *EndVar, in BuildNonArrayForRange() argument
2643 if (CXXRecordDecl *D = RangeType->getAsCXXRecordDecl()) { in BuildNonArrayForRange()
2810 QualType RangeType = Range->getType(); in BuildCXXForRangeStmt() local
2812 if (RequireCompleteType(RangeLoc, RangeType, in BuildCXXForRangeStmt()
2826 if (const ArrayType *UnqAT = RangeType->getAsArrayTypeUnsafe()) { in BuildCXXForRangeStmt()
2922 *this, BeginRangeRef.get(), EndRangeRef.get(), RangeType, BeginVar, in BuildCXXForRangeStmt()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h1303 template <typename RangeType>
1306 std::declval<RangeType &>()))>>;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp348 MemoryRegionInfo::RangeType section_range(load_addr, in BuildMemoryRegions()