Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/ObjectYAML/
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()
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()
/external/llvm-project/llvm/tools/obj2yaml/
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()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h217 Optional<std::vector<Ranges>> DebugRanges; member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDwarf.def926 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges")
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DDwarf.def963 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges", BoolOption)