Home
last modified time | relevance | path

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

/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp27 StandardOpcodeLengths.clear(); in clear()
44 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i) in dump()
46 StandardOpcodeLengths[i]); in dump()
94 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
97 StandardOpcodeLengths.push_back(op_len); in parse()
453 assert(opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
454 uint8_t opcode_length = Prologue.StandardOpcodeLengths[opcode - 1]; in parse()
/external/llvm-project/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp559 std::vector<uint8_t> StandardOpcodeLengths{0, 1, 1, 1, 1, 0, in getStandardOpcodeLengths() local
563 StandardOpcodeLengths.resize(9); in getStandardOpcodeLengths()
565 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths()
567 return StandardOpcodeLengths; in getStandardOpcodeLengths()
585 std::vector<uint8_t> StandardOpcodeLengths = in emitDebugLine() local
586 LineTable.StandardOpcodeLengths.getValueOr( in emitDebugLine()
590 : StandardOpcodeLengths.size() + 1; in emitDebugLine()
592 for (uint8_t OpcodeLength : StandardOpcodeLengths) in emitDebugLine()
DDWARFYAML.cpp248 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp95 StandardOpcodeLengths.clear(); in clear()
116 for (uint32_t I = 0; I != StandardOpcodeLengths.size(); ++I) in dump()
118 LNStandardString(I + 1).data(), StandardOpcodeLengths[I]); in dump()
343 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
346 StandardOpcodeLengths.push_back(OpLen); in parse()
826 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
827 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
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()
1128 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
1131 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/external/llvm-project/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp381 DebugLines.StandardOpcodeLengths.emplace(); in dumpDebugLines()
383 DebugLines.StandardOpcodeLengths->push_back(LineData.getU8(&Offset)); in dumpDebugLines()
453 DebugLines.StandardOpcodeLengths.getValue()[NewOp.Opcode - 1]; in dumpDebugLines()
/external/llvm/lib/MC/
DMCDwarf.cpp209 static const char StandardOpcodeLengths[] = { in Emit() local
223 assert(array_lengthof(StandardOpcodeLengths) >= in Emit()
225 return Emit(MCOS, Params, makeArrayRef(StandardOpcodeLengths, in Emit()
247 ArrayRef<char> StandardOpcodeLengths) const { in Emit()
284 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1); in Emit()
287 for (char Length : StandardOpcodeLengths) in Emit()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h62 std::vector<uint8_t> StandardOpcodeLengths; member
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCDwarf.cpp272 static const char StandardOpcodeLengths[] = { in Emit() local
286 assert(array_lengthof(StandardOpcodeLengths) >= in Emit()
290 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit()
449 ArrayRef<char> StandardOpcodeLengths, in Emit() argument
503 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1); in Emit()
506 for (char Length : StandardOpcodeLengths) in Emit()
/external/llvm-project/llvm/lib/MC/
DMCDwarf.cpp290 static const char StandardOpcodeLengths[] = { in Emit() local
304 assert(array_lengthof(StandardOpcodeLengths) >= in Emit()
308 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit()
468 ArrayRef<char> StandardOpcodeLengths, in Emit() argument
532 MCOS->emitInt8(StandardOpcodeLengths.size() + 1); in Emit()
535 for (char Length : StandardOpcodeLengths) in Emit()
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugLineTest.cpp170 EXPECT_EQ(Prologue.StandardOpcodeLengths, ExpectedLengths); in checkDefaultPrologue()
1286 Prologue.StandardOpcodeLengths.push_back(2); in TEST_F()
1287 Prologue.StandardOpcodeLengths.push_back(0); in TEST_F()
1410 InputPrologue.StandardOpcodeLengths.resize(2); in TEST_P()
1521 Prologue.StandardOpcodeLengths.push_back(2); in setupTable()
DDwarfGenerator.cpp190 P.StandardOpcodeLengths = {0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1}; in createBasicPrologue()
390 for (auto Length : Prologue.StandardOpcodeLengths) { in writeProloguePayload()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h95 std::vector<uint8_t> StandardOpcodeLengths; member
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DDWARFYAML.cpp160 IO.mapRequired("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
DDWARFEmitter.cpp227 for (auto OpcodeLength : LineTable.StandardOpcodeLengths) in EmitDebugLine()
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h95 std::vector<uint8_t> StandardOpcodeLengths; member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h137 std::vector<uint8_t> StandardOpcodeLengths; member
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h149 Optional<std::vector<uint8_t>> StandardOpcodeLengths; member