Home
last modified time | relevance | path

Searched refs:UpperAddress (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp53 LVAddress UpperAddress) { in addEntry() argument
55 if (LowerAddress > UpperAddress) in addEntry()
56 std::swap(LowerAddress, UpperAddress); in addEntry()
61 if (UpperAddress > Upper) in addEntry()
62 Upper = UpperAddress; in addEntry()
65 RangeEntries.emplace_back(LowerAddress, UpperAddress, Scope); in addEntry()
110 LVAddress UpperAddress) const { in getEntry()
112 if (LowerAddress >= RangeEntry.lower() && UpperAddress < RangeEntry.upper()) in getEntry()
118 bool LVRange::hasEntry(LVAddress LowerAddress, LVAddress UpperAddress) const { in hasEntry()
121 UpperAddress == RangeEntry.upper()) in hasEntry()
H A DLVLocation.cpp518 LVAddress UpperAddress = 0; in calculateCoverage() local
523 UpperAddress = Location->getUpperAddress(); in calculateCoverage()
524 Factor += (UpperAddress > LowerAddress) ? UpperAddress - LowerAddress in calculateCoverage()
525 : LowerAddress - UpperAddress; in calculateCoverage()
H A DLVScope.cpp247 void LVScope::addObject(LVAddress LowerAddress, LVAddress UpperAddress) { in addObject() argument
251 Location->setUpperAddress(UpperAddress); in addObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVRange.h34 LVRangeEntry(LVAddress LowerAddress, LVAddress UpperAddress, LVScope *Scope) in LVRangeEntry() argument
35 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry()
66 void addEntry(LVScope *Scope, LVAddress LowerAddress, LVAddress UpperAddress);
69 LVScope *getEntry(LVAddress LowerAddress, LVAddress UpperAddress) const;
H A DLVScope.h218 void addObject(LVAddress LowerAddress, LVAddress UpperAddress);
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.h184 LVAddress LowerAddress, LVAddress UpperAddress);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp378 LVAddress UpperAddress) { in addSectionRange() argument
380 ScopesWithRanges->addEntry(Scope, LowerAddress, UpperAddress); in addSectionRange()