Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A 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.value_or( in emitDebugLine()
590 : StandardOpcodeLengths.size() + 1; in emitDebugLine()
592 for (uint8_t OpcodeLength : StandardOpcodeLengths) in emitDebugLine()
H A DDWARFYAML.cpp248 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
/openbsd-src/gnu/llvm/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()
1133 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
1136 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp383 DebugLines.StandardOpcodeLengths.emplace(); in dumpDebugLines()
385 DebugLines.StandardOpcodeLengths->push_back(LineData.getU8(&Offset)); in dumpDebugLines()
454 i < (*DebugLines.StandardOpcodeLengths)[NewOp.Opcode - 1]; ++i) in dumpDebugLines()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCDwarf.cpp295 static const char StandardOpcodeLengths[] = { in Emit() local
309 assert(std::size(StandardOpcodeLengths) >= in Emit()
312 ArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit()
482 ArrayRef<char> StandardOpcodeLengths, in Emit() argument
528 MCOS->emitInt8(StandardOpcodeLengths.size() + 1); in Emit()
531 for (char Length : StandardOpcodeLengths) in Emit()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h91 std::vector<uint8_t> StandardOpcodeLengths; member
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h150 std::optional<std::vector<uint8_t>> StandardOpcodeLengths; member