Searched refs:DebugRanges (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 31 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()
|
D | DWARFEmitter.cpp | 193 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/ |
D | dwarf2yaml.cpp | 150 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/ |
D | DWARFYAML.h | 217 Optional<std::vector<Ranges>> DebugRanges; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Dwarf.def | 926 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges")
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | Dwarf.def | 963 HANDLE_DWARF_SECTION(DebugRanges, ".debug_ranges", "debug-ranges", BoolOption)
|