Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp31 if (DebugRanges) in getNonEmptySectionNames()
98 IO.mapOptional("debug_ranges", DWARF.DebugRanges); in mapping()
186 DWARFYAML::Ranges &DebugRanges) { in mapping() argument
187 IO.mapOptional("Offset", DebugRanges.Offset); in mapping()
188 IO.mapOptional("AddrSize", DebugRanges.AddrSize); in mapping()
189 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/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h240 std::optional<std::vector<Ranges>> DebugRanges; member
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def1302 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges", BoolOption)