Searched refs:StandardOpcodeLengths (Results 1 – 7 of 7) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
H A D | DWARFEmitter.cpp | 558 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.getValueOr( in emitDebugLine() 589 : StandardOpcodeLengths.size() + 1; in emitDebugLine() 591 for (uint8_t OpcodeLength : StandardOpcodeLengths) in emitDebugLine()
|
H A D | DWARFYAML.cpp | 248 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.cpp | 112 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
H A D | dwarf2yaml.cpp | 381 DebugLines.StandardOpcodeLengths.emplace(); in dumpDebugLines() 383 DebugLines.StandardOpcodeLengths->push_back(LineData.getU8(&Offset)); in dumpDebugLines() 453 DebugLines.StandardOpcodeLengths.getValue()[NewOp.Opcode - 1]; in dumpDebugLines()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | MCDwarf.cpp | 275 static const char StandardOpcodeLengths[] = { in Emit() local 289 assert(array_lengthof(StandardOpcodeLengths) >= in Emit() 293 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit() 453 ArrayRef<char> StandardOpcodeLengths, in Emit() argument 499 MCOS->emitInt8(StandardOpcodeLengths.size() + 1); in Emit() 502 for (char Length : StandardOpcodeLengths) in Emit()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.h | 95 std::vector<uint8_t> StandardOpcodeLengths; member
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
H A D | DWARFYAML.h | 149 Optional<std::vector<uint8_t>> StandardOpcodeLengths; member
|