Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp52 void LVRange::addEntry(LVScope *Scope, LVAddress LowerAddress, in addEntry() argument
55 if (LowerAddress > UpperAddress) in addEntry()
56 std::swap(LowerAddress, UpperAddress); in addEntry()
59 if (LowerAddress < Lower) in addEntry()
60 Lower = LowerAddress; in addEntry()
65 RangeEntries.emplace_back(LowerAddress, UpperAddress, Scope); in addEntry()
109 LVScope *LVRange::getEntry(LVAddress LowerAddress, in getEntry() argument
112 if (LowerAddress >= RangeEntry.lower() && UpperAddress < RangeEntry.upper()) in getEntry()
118 bool LVRange::hasEntry(LVAddress LowerAddress, LVAddress UpperAddress) const { in hasEntry() argument
120 if (LowerAddress == RangeEntry.lower() && in hasEntry()
H A DLVLocation.cpp517 LVAddress LowerAddress = 0; in calculateCoverage() local
522 LowerAddress = Location->getLowerAddress(); 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
250 Location->setLowerAddress(LowerAddress); 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.cpp377 LVScope *Scope, LVAddress LowerAddress, in addSectionRange() argument
380 ScopesWithRanges->addEntry(Scope, LowerAddress, UpperAddress); in addSectionRange()