Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.cpp29 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i) in dump()
31 StandardOpcodeLengths[i]); in dump()
150 prologue->StandardOpcodeLengths.reserve(prologue->OpcodeBase-1); in parsePrologue()
153 prologue->StandardOpcodeLengths.push_back(op_len); in parsePrologue()
380 assert(opcode - 1U < prologue->StandardOpcodeLengths.size()); in parseStatementTable()
381 uint8_t opcode_length = prologue->StandardOpcodeLengths[opcode - 1]; in parseStatementTable()
DDWARFDebugLine.h58 std::vector<uint8_t> StandardOpcodeLengths; member
78 StandardOpcodeLengths.clear(); in clear()
/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/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp76 StandardOpcodeLengths.clear(); in clear()
97 for (uint32_t I = 0; I != StandardOpcodeLengths.size(); ++I) in dump()
99 LNStandardString(I + 1).data(), StandardOpcodeLengths[I]); in dump()
335 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
338 StandardOpcodeLengths.push_back(OpLen); in parse()
780 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
781 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp267 DebugLines.StandardOpcodeLengths.reserve(DebugLines.OpcodeBase - 1); in dumpDebugLines()
269 DebugLines.StandardOpcodeLengths.push_back(LineData.getU8(&Offset)); in dumpDebugLines()
338 i < DebugLines.StandardOpcodeLengths[NewOp.Opcode - 1]; ++i) 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/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCDwarf.cpp273 static const char StandardOpcodeLengths[] = { in Emit() local
287 assert(array_lengthof(StandardOpcodeLengths) >= in Emit()
291 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit()
446 ArrayRef<char> StandardOpcodeLengths, in Emit() argument
503 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1); in Emit()
506 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-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h95 std::vector<uint8_t> StandardOpcodeLengths; member
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DDwarfGenerator.cpp181 P.StandardOpcodeLengths = {0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1}; in createBasicPrologue()
360 for (auto Length : Prologue.StandardOpcodeLengths) { in writeProloguePayload()
DDWARFDebugLineTest.cpp186 EXPECT_EQ(Prologue.StandardOpcodeLengths, ExpectedLengths); in checkDefaultPrologue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DDWARFYAML.cpp161 IO.mapRequired("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
DDWARFEmitter.cpp228 for (auto OpcodeLength : LineTable.StandardOpcodeLengths) in EmitDebugLine()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h138 std::vector<uint8_t> StandardOpcodeLengths; member