Home
last modified time | relevance | path

Searched refs:DebugRanges (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp31 if (DebugRanges) in getNonEmptySectionNames()
96 IO.mapOptional("debug_ranges", DWARF.DebugRanges); in mapping()
157 DWARFYAML::Ranges &DebugRanges) { in mapping() argument
158 IO.mapOptional("Offset", DebugRanges.Offset); in mapping()
159 IO.mapOptional("AddrSize", DebugRanges.AddrSize); in mapping()
160 IO.mapRequired("Entries", DebugRanges.Entries); in mapping()
H A DDWARFEmitter.cpp193 for (const auto &DebugRanges : *DI.DebugRanges) { in emitDebugRanges()
195 if (DebugRanges.Offset && (uint64_t)*DebugRanges.Offset < CurrOffset) in emitDebugRanges()
202 if (DebugRanges.Offset) in emitDebugRanges()
203 ZeroFillBytes(OS, *DebugRanges.Offset - CurrOffset); in emitDebugRanges()
206 if (DebugRanges.AddrSize) in emitDebugRanges()
207 AddrSize = *DebugRanges.AddrSize; in emitDebugRanges()
210 for (const auto &Entry : DebugRanges.Entries) { in emitDebugRanges()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h218 std::optional<std::vector<Ranges>> DebugRanges; member
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def1224 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges", BoolOption)