Home
last modified time | relevance | path

Searched refs:StandardOpcodeLengths (Results 1 – 25 of 28) sorted by relevance

12

/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/DWARF/
H A Ddebug-line.yaml82 StandardOpcodeLengths: [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
212 StandardOpcodeLengths: []
238 StandardOpcodeLengths: []
302 StandardOpcodeLengths: []
347 StandardOpcodeLengths: []
429 StandardOpcodeLengths: []
543 StandardOpcodeLengths: [ 0, 1, 1 ]
568 StandardOpcodeLengths: [ 0, 1, 1 ]
618 StandardOpcodeLengths: [ 0, 1, 1 ]
657 StandardOpcodeLengths: []
[all …]
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp558 std::vector<uint8_t> StandardOpcodeLengths{0, 1, 1, 1, 1, 0, in getStandardOpcodeLengths() local
562 StandardOpcodeLengths.resize(9); in getStandardOpcodeLengths()
564 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths()
566 return StandardOpcodeLengths; in getStandardOpcodeLengths()
584 std::vector<uint8_t> StandardOpcodeLengths = in emitDebugLine() local
585 LineTable.StandardOpcodeLengths.value_or( in emitDebugLine()
589 : StandardOpcodeLengths.size() + 1; in emitDebugLine()
591 for (uint8_t OpcodeLength : StandardOpcodeLengths) in emitDebugLine()
H A DDWARFYAML.cpp248 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
/llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/
H A Dverify_invalid_line_table_prologue_dir_index.yaml41 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A Dverify_invalid_line_file_index.yaml41 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A Dverify_invalid_line_sequence.yaml41 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A Dverify_duplicate_file_warning.yaml41 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A Dverify_cu_dont_share_line_table.yaml51 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A Dverify_attr_file_indexes_no_files.yaml113 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A Dverify_attr_file_indexes.yaml113 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp112 StandardOpcodeLengths.clear(); in clear()
141 for (uint32_t I = 0; I != StandardOpcodeLengths.size(); ++I) in dump()
144 StandardOpcodeLengths[I]); in dump()
415 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
418 StandardOpcodeLengths.push_back(OpLen); in parse()
1132 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
1135 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp382 DebugLines.StandardOpcodeLengths.emplace(); in dumpDebugLines()
384 DebugLines.StandardOpcodeLengths->push_back(LineData.getU8(&Offset)); in dumpDebugLines()
453 i < (*DebugLines.StandardOpcodeLengths)[NewOp.Opcode - 1]; ++i) in dumpDebugLines()
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/
H A Ddead-code-filtering.yaml125 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCDwarf.cpp295 static const char StandardOpcodeLengths[] = { in Emit() local
309 assert(array_lengthof(StandardOpcodeLengths) >= in Emit()
313 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit()
483 ArrayRef<char> StandardOpcodeLengths, in Emit() argument
529 MCOS->emitInt8(StandardOpcodeLengths.size() + 1); in Emit()
532 for (char Length : StandardOpcodeLengths) in Emit()
/llvm-project-15.0.7/llvm/test/ObjectYAML/MachO/
H A DDWARF-debug_line.yaml501 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
541 # CHECK-NEXT: StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
H A DDWARF5-debug_info.yaml469 StandardOpcodeLengths:
/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDwarfGenerator.cpp190 P.StandardOpcodeLengths = {0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1}; in createBasicPrologue()
385 for (auto Length : Prologue.StandardOpcodeLengths) { in writeProloguePayload()
H A DDWARFDebugLineTest.cpp174 EXPECT_EQ(Prologue.StandardOpcodeLengths, ExpectedLengths); in checkDefaultPrologue()
1503 Prologue.StandardOpcodeLengths.push_back(2);
1504 Prologue.StandardOpcodeLengths.push_back(0);
1631 InputPrologue.StandardOpcodeLengths.resize(2);
1742 Prologue.StandardOpcodeLengths.push_back(2);
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h92 std::vector<uint8_t> StandardOpcodeLengths; member
/llvm-project-15.0.7/lldb/test/API/functionalities/source-map/
H A Da.yaml376 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
/llvm-project-15.0.7/llvm/test/tools/llvm-gsymutil/ARM_AArch64/
H A Dfat-macho-dwarf.yaml474 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
942 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
/llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/MachO/Inputs/
H A Dstrip-all-with-dwarf.yaml479 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h149 Optional<std::vector<uint8_t>> StandardOpcodeLengths; member
/llvm-project-15.0.7/lldb/unittests/Symbol/Inputs/
H A Dinlined-functions.yaml713 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]
/llvm-project-15.0.7/lldb/test/API/functionalities/module_cache/debug_index/
H A Dexe.yaml718 StandardOpcodeLengths: [ 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 ]

12