Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h261 template <class RangeType>
262 MemoryAccess *tryRemoveTrivialPhi(MemoryPhi *Phi, RangeType &Operands);
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DConstantRange.h403 PreferredRangeType RangeType = Smallest) const;
415 PreferredRangeType RangeType = Smallest) const;
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstantRange.cpp1007 PreferredRangeType RangeType) const { in addWithNoWrap()
1024 Result = Result.intersectWith(sadd_sat(Other), RangeType); in addWithNoWrap()
1027 Result = Result.intersectWith(uadd_sat(Other), RangeType); in addWithNoWrap()
1054 PreferredRangeType RangeType) const { in subWithNoWrap()
1071 Result = Result.intersectWith(ssub_sat(Other), RangeType); in subWithNoWrap()
1076 Result = Result.intersectWith(usub_sat(Other), RangeType); in subWithNoWrap()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp2570 QualType RangeType, VarDecl *BeginVar, VarDecl *EndVar, in BuildNonArrayForRange() argument
2633 if (CXXRecordDecl *D = RangeType->getAsCXXRecordDecl()) { in BuildNonArrayForRange()
2800 QualType RangeType = Range->getType(); in BuildCXXForRangeStmt() local
2802 if (RequireCompleteType(RangeLoc, RangeType, in BuildCXXForRangeStmt()
2816 if (const ArrayType *UnqAT = RangeType->getAsArrayTypeUnsafe()) { in BuildCXXForRangeStmt()
2912 *this, BeginRangeRef.get(), EndRangeRef.get(), RangeType, BeginVar, in BuildCXXForRangeStmt()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DSmallVector.h1289 template <typename RangeType>
1292 std::declval<RangeType &>()))>>;
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp207 template <class RangeType>
209 RangeType &Operands) { in tryRemoveTrivialPhi()
H A DScalarEvolution.cpp6612 ConstantRange::PreferredRangeType RangeType = in getRangeRef() local
6655 ConservativeResult.intersectWith(X.truncate(BitWidth), RangeType)); in getRangeRef()
6662 ConservativeResult.intersectWith(X.zeroExtend(BitWidth), RangeType)); in getRangeRef()
6669 ConservativeResult.intersectWith(X.signExtend(BitWidth), RangeType)); in getRangeRef()
6686 WrapType, RangeType); in getRangeRef()
6688 ConservativeResult.intersectWith(X, RangeType)); in getRangeRef()
6696 ConservativeResult.intersectWith(X, RangeType)); in getRangeRef()
6703 ConservativeResult.intersectWith(X.udiv(Y), RangeType)); in getRangeRef()
6713 ConstantRange(UnsignedMinValue, APInt(BitWidth, 0)), RangeType); in getRangeRef()
6734 RangeType); in getRangeRef()
[all …]
H A DValueTracking.cpp4949 ConstantRange::PreferredRangeType RangeType = in computeConstantRangeIncludingKnownBits() local
4951 return CR1.intersectWith(CR2, RangeType); in computeConstantRangeIncludingKnownBits()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp425 MemoryRegionInfo::RangeType section_range(load_addr, in BuildMemoryRegions()