Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp151 std::vector<DWARFYAML::Ranges> DebugRanges; in dumpDebugRanges() local
161 DebugRanges.push_back(std::move(YamlRanges)); in dumpDebugRanges()
164 Y.DebugRanges = DebugRanges; in dumpDebugRanges()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h217 Optional<std::vector<Ranges>> DebugRanges; member
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/
H A Dirtranslator-extract-used-by-dbg.ll176 !148 = !DIEnumerator(name: "DebugRanges", value: 15)
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DDwarf.def1180 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges", BoolOption)