/external/llvm-project/llvm/test/tools/yaml2obj/ELF/DWARF/ |
D | debug-line.yaml | 81 OpcodeBase: 5 211 OpcodeBase: 13 237 OpcodeBase: 13 301 OpcodeBase: 13 346 OpcodeBase: 13 428 OpcodeBase: 13 542 OpcodeBase: 4 567 OpcodeBase: 4 617 OpcodeBase: 4 656 OpcodeBase: 1 [all …]
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | DWARFEmitter.cpp | 517 uint8_t OpcodeBase, uint8_t AddrSize, in writeLineTableOpcode() argument 522 } else if (Op.Opcode < OpcodeBase) { in writeLineTableOpcode() 556 getStandardOpcodeLengths(uint16_t Version, Optional<uint8_t> OpcodeBase) { in getStandardOpcodeLengths() argument 564 } else if (OpcodeBase) { in getStandardOpcodeLengths() 565 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths() 587 getStandardOpcodeLengths(LineTable.Version, LineTable.OpcodeBase)); in emitDebugLine() 588 uint8_t OpcodeBase = LineTable.OpcodeBase in emitDebugLine() local 589 ? *LineTable.OpcodeBase in emitDebugLine() 591 writeInteger(OpcodeBase, BufferOS, DI.IsLittleEndian); in emitDebugLine() 609 writeLineTableOpcode(Op, OpcodeBase, DI.Is64BitAddrSize ? 8 : 4, BufferOS, in emitDebugLine()
|
D | DWARFYAML.cpp | 247 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase); in mapping()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 25 OpcodeBase = 0; in clear() 42 << format(" opcode_base: %u\n", OpcodeBase); in dump() 92 OpcodeBase = debug_line_data.getU8(offset_ptr); in parse() 94 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse() 95 for (uint32_t i = 1; i < OpcodeBase; ++i) { in parse() 349 } else if (opcode < Prologue.OpcodeBase) { in parse() 410 uint8_t adjust_opcode = 255 - Prologue.OpcodeBase; in parse() 494 uint8_t adjust_opcode = opcode - Prologue.OpcodeBase; in parse()
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 109 OpcodeBase = 0; in clear() 139 << format(" opcode_base: %u\n", OpcodeBase); in dump() 403 OpcodeBase = DebugLineData.getU8(Cursor); in parse() 405 if (Cursor && OpcodeBase == 0) { in parse() 415 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse() 416 for (uint32_t I = 1; I < OpcodeBase; ++I) { in parse() 600 static StringRef getOpcodeName(uint8_t Opcode, uint8_t OpcodeBase) { in getOpcodeName() argument 602 if (Opcode < OpcodeBase) in getOpcodeName() 610 StringRef OpcodeName = getOpcodeName(Opcode, LineTable->Prologue.OpcodeBase); in advanceAddr() 642 Opcode >= LineTable->Prologue.OpcodeBase); in advanceAddrForOpcode() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 92 OpcodeBase = 0; in clear() 114 << format(" opcode_base: %u\n", OpcodeBase); in dump() 341 OpcodeBase = DebugLineData.getU8(OffsetPtr); in parse() 343 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse() 344 for (uint32_t I = 1; I < OpcodeBase; ++I) { in parse() 693 } else if (Opcode < Prologue.OpcodeBase) { in parse() 772 uint8_t AdjustOpcode = 255 - Prologue.OpcodeBase; in parse() 871 uint8_t AdjustOpcode = Opcode - Prologue.OpcodeBase; in parse()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 159 IO.mapRequired("OpcodeBase", LineTable.OpcodeBase); in mapping()
|
D | DWARFEmitter.cpp | 225 writeInteger((uint8_t)LineTable.OpcodeBase, OS, DI.IsLittleEndian); in EmitDebugLine() 260 } else if (Op.Opcode < LineTable.OpcodeBase) { in EmitDebugLine()
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 379 DebugLines.OpcodeBase = LineData.getU8(&Offset); in dumpDebugLines() 382 for (uint8_t i = 1; i < DebugLines.OpcodeBase; ++i) in dumpDebugLines() 425 } else if (NewOp.Opcode < *DebugLines.OpcodeBase) { in dumpDebugLines()
|
/external/llvm-project/llvm/test/ObjectYAML/MachO/ |
D | DWARF-debug_line.yaml | 500 OpcodeBase: 13 540 # CHECK-NEXT: OpcodeBase: 13
|
D | DWARF5-debug_info.yaml | 468 OpcodeBase: 13
|
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/ |
D | verify_attr_file_indexes.yaml | 112 OpcodeBase: 13
|
D | verify_attr_file_indexes_no_files.yaml | 112 OpcodeBase: 13
|
/external/llvm-project/llvm/test/tools/llvm-gsymutil/ARM_AArch64/ |
D | fat-macho-dwarf.yaml | 473 OpcodeBase: 13 941 OpcodeBase: 13
|
/external/llvm-project/lldb/test/API/functionalities/source-map/ |
D | a.yaml | 375 OpcodeBase: 13
|
/external/llvm-project/llvm/test/tools/llvm-objcopy/MachO/Inputs/ |
D | strip-all-with-dwarf.yaml | 470 OpcodeBase: 13
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 61 uint8_t OpcodeBase; member
|
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
D | DwarfGenerator.cpp | 189 P.OpcodeBase = 13; in createBasicPrologue() 389 Asm.emitInt8(Prologue.OpcodeBase); in writeProloguePayload()
|
D | DWARFDebugLineTest.cpp | 168 EXPECT_EQ(Prologue.OpcodeBase, 13u); in checkDefaultPrologue() 1285 Prologue.OpcodeBase += 2; in TEST_F() 1409 InputPrologue.OpcodeBase = 3; in TEST_P() 1520 ++Prologue.OpcodeBase; in setupTable()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 136 uint8_t OpcodeBase; member
|
/external/llvm-project/llvm/lib/DWARFLinker/ |
D | DWARFStreamer.cpp | 648 unsigned OpcodeBase = Data.getU8(&Offset); in translateLineTable() local 649 Offset += OpcodeBase - 1; in translateLineTable()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 92 uint8_t OpcodeBase; member
|
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 92 uint8_t OpcodeBase; member
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 148 Optional<uint8_t> OpcodeBase; member
|
/external/llvm-project/lldb/unittests/Symbol/Inputs/ |
D | inlined-functions.yaml | 712 OpcodeBase: 13
|