Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp31 if (DebugRanges) in getNonEmptySectionNames()
98 IO.mapOptional("debug_ranges", DWARF.DebugRanges); in mapping()
159 DWARFYAML::Ranges &DebugRanges) { in mapping() argument
160 IO.mapOptional("Offset", DebugRanges.Offset); in mapping()
161 IO.mapOptional("AddrSize", DebugRanges.AddrSize); in mapping()
162 IO.mapRequired("Entries", DebugRanges.Entries); in mapping()
H A DDWARFEmitter.cpp192 for (const auto &DebugRanges : *DI.DebugRanges) { in emitDebugRanges()
194 if (DebugRanges.Offset && (uint64_t)*DebugRanges.Offset < CurrOffset) in emitDebugRanges()
201 if (DebugRanges.Offset) in emitDebugRanges()
202 ZeroFillBytes(OS, *DebugRanges.Offset - CurrOffset); in emitDebugRanges()
205 if (DebugRanges.AddrSize) in emitDebugRanges()
206 AddrSize = *DebugRanges.AddrSize; in emitDebugRanges()
209 for (const auto &Entry : DebugRanges.Entries) { in emitDebugRanges()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp150 std::vector<DWARFYAML::Ranges> DebugRanges; in dumpDebugRanges() local
160 DebugRanges.push_back(std::move(YamlRanges)); in dumpDebugRanges()
163 Y.DebugRanges = DebugRanges; in dumpDebugRanges()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h217 Optional<std::vector<Ranges>> DebugRanges; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DDwarf.def1172 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges", BoolOption)