Home
last modified time | relevance | path

Searched refs:EndAddress (Results 1 – 20 of 20) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DPerfReader.cpp870 uint64_t EndAddress = 0; in computeCounterFromLBR() local
886 Binary->addressIsCode(EndAddress) && in computeCounterFromLBR()
887 isValidFallThroughRange(StartAddress, EndAddress, Binary)) in computeCounterFromLBR()
888 Counter.recordRangeCount(StartAddress, EndAddress, Repeat); in computeCounterFromLBR()
889 EndAddress = SourceAddress; in computeCounterFromLBR()
1099 uint64_t EndAddress = 0; in warnInvalidRange() local
1103 if (EndAddress != 0) in warnInvalidRange()
1104 Ranges[{StartAddress, EndAddress}] += Count; in warnInvalidRange()
1105 EndAddress = SourceAddress; in warnInvalidRange()
1114 auto WarnInvalidRange = [&](uint64_t StartAddress, uint64_t EndAddress, in warnInvalidRange()
[all …]
H A DProfiledBinary.h102 uint64_t EndAddress; member
447 if (Address >= I->second.EndAddress) in findFuncRange()
534 uint64_t EndAddress);
H A DProfiledBinary.cpp778 uint64_t EndAddress = Range.HighPC; in loadSymbolsFromDWARFUnit() local
780 if (EndAddress <= StartAddress || in loadSymbolsFromDWARFUnit()
786 Func.Ranges.emplace_back(StartAddress, EndAddress); in loadSymbolsFromDWARFUnit()
793 FRange.EndAddress = EndAddress; in loadSymbolsFromDWARFUnit()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRangeList.cpp50 Entry.EndAddress = in extract()
83 OS << format(AddrFmt, Offset, RLE.StartAddress, RLE.EndAddress); in dump()
95 BaseAddr = {RLE.EndAddress, RLE.SectionIndex}; in getAbsoluteRanges()
103 E.HighPC = RLE.EndAddress; in getAbsoluteRanges()
H A DDWARFDebugFrame.cpp218 UT.EndAddress = Fde->getInitialLocation() + Fde->getAddressRange(); in create()
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A DMachOUtils.cpp261 uint64_t &EndAddress) { in transferSegmentAndSections() argument
280 uint64_t PrevEndAddress = EndAddress; in transferSegmentAndSections()
281 EndAddress = alignTo(EndAddress, 0x1000); in transferSegmentAndSections()
282 if (GapForDwarf == UINT64_MAX && Segment.vmaddr > EndAddress && in transferSegmentAndSections()
283 Segment.vmaddr - EndAddress >= DwarfSegmentSize) in transferSegmentAndSections()
284 GapForDwarf = EndAddress; in transferSegmentAndSections()
287 EndAddress = in transferSegmentAndSections()
546 uint64_t EndAddress = 0; in generateDsymCompanion() local
553 EHFrameSize, DwarfSegmentSize, GapForDwarf, EndAddress); in generateDsymCompanion()
558 EHFrameSize, DwarfSegmentSize, GapForDwarf, EndAddress); in generateDsymCompanion()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugRangeList.h37 uint64_t EndAddress; member
45 return (StartAddress == 0) && (EndAddress == 0); in isEndOfListEntry()
H A DDWARFDebugFrame.h378 std::optional<uint64_t> EndAddress; variable
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.h27 mach_vm_address_t EndAddress() const { return m_start + m_size; } in EndAddress() function
36 return addr >= StartAddress() && addr < EndAddress(); in ContainsAddress()
H A DMachVMRegion.cpp48 mach_vm_address_t end_addr = EndAddress(); in SetProtections()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
H A DPECallFrameInfo.cpp452 range.SetByteSize(runtime_function->EndAddress - in GetAddressRange()
500 runtime_function->EndAddress - runtime_function->StartAddress)); in GetUnwindPlan()
523 runtime_function->EndAddress > rva) in FindRuntimeFunctionIntersectsWithRange()
529 if (runtime_function->EndAddress <= rva) in FindRuntimeFunctionIntersectsWithRange()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DWin64EH.h143 support::ulittle32_t EndAddress; member
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp255 const uint64_t EndAddress = FI.endAddress(); in convertFunctionLineTable() local
256 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp674 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction()
705 RF.EndAddress); in printRuntimeFunctionRels()
H A Dllvm-objdump.cpp1128 uint64_t EndAddress = SectionAddr + End; in collectBBAddrMapLabels() local
1134 if (BBAddress >= EndAddress) in collectBBAddrMapLabels()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp248 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress, in printRuntimeFunctionEntry()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp161 YamlRanges.Entries.push_back({RLE.StartAddress, RLE.EndAddress}); in dumpDebugRanges()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DCOFF.h727 support::ulittle32_t EndAddress; member
/openbsd-src/gnu/llvm/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp1685 BaseAddress = Range.EndAddress; in patchRangesForUnit()
1702 Range.EndAddress + BaseAddress + CachedRange->second}); in patchRangesForUnit()
/openbsd-src/gnu/llvm/libunwind/src/
H A DUnwindCursor.hpp1971 _info.end_ip = base + unwindEntry->EndAddress; in getInfoFromSEH()