Searched refs:StandardOpcodeLengths (Results 1 – 14 of 14) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
D | DWARFDebugLine.cpp | 29 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()
|
D | DWARFDebugLine.h | 58 std::vector<uint8_t> StandardOpcodeLengths; member 78 StandardOpcodeLengths.clear(); in clear()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 27 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/ |
D | DWARFDebugLine.cpp | 76 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/ |
D | dwarf2yaml.cpp | 267 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/ |
D | MCDwarf.cpp | 209 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/ |
D | MCDwarf.cpp | 273 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/ |
D | DWARFDebugLine.h | 62 std::vector<uint8_t> StandardOpcodeLengths; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 95 std::vector<uint8_t> StandardOpcodeLengths; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/ |
D | DwarfGenerator.cpp | 181 P.StandardOpcodeLengths = {0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1}; in createBasicPrologue() 360 for (auto Length : Prologue.StandardOpcodeLengths) { in writeProloguePayload()
|
D | DWARFDebugLineTest.cpp | 186 EXPECT_EQ(Prologue.StandardOpcodeLengths, ExpectedLengths); in checkDefaultPrologue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 161 IO.mapRequired("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
|
D | DWARFEmitter.cpp | 228 for (auto OpcodeLength : LineTable.StandardOpcodeLengths) in EmitDebugLine()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 138 std::vector<uint8_t> StandardOpcodeLengths; member
|