Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp247 DWARFYAML::LineTable DebugLines; in dumpDebugLines() local
251 dumpInitialLength(LineData, Offset, DebugLines.Length); in dumpDebugLines()
252 uint64_t LineTableLength = DebugLines.Length.getLength(); in dumpDebugLines()
253 uint64_t SizeOfPrologueLength = DebugLines.Length.isDWARF64() ? 8 : 4; in dumpDebugLines()
254 DebugLines.Version = LineData.getU16(&Offset); in dumpDebugLines()
255 DebugLines.PrologueLength = in dumpDebugLines()
257 const uint64_t EndPrologue = DebugLines.PrologueLength + Offset; in dumpDebugLines()
259 DebugLines.MinInstLength = LineData.getU8(&Offset); in dumpDebugLines()
260 if (DebugLines.Version >= 4) in dumpDebugLines()
261 DebugLines.MaxOpsPerInst = LineData.getU8(&Offset); in dumpDebugLines()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DDWARFYAML.cpp41 IO.mapOptional("debug_line", DWARF.DebugLines); in mapping()
DDWARFEmitter.cpp214 for (const auto &LineTable : DI.DebugLines) { in EmitDebugLine()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h157 std::vector<LineTable> DebugLines; member