Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp586 std::vector<uint8_t> StandardOpcodeLengths{0, 1, 1, 1, 1, 0, in getStandardOpcodeLengths() local
590 StandardOpcodeLengths.resize(9); in getStandardOpcodeLengths()
592 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths()
594 return StandardOpcodeLengths; in getStandardOpcodeLengths()
612 std::vector<uint8_t> StandardOpcodeLengths = in emitDebugLine() local
613 LineTable.StandardOpcodeLengths.value_or( in emitDebugLine()
617 : StandardOpcodeLengths.size() + 1; in emitDebugLine()
619 for (uint8_t OpcodeLength : StandardOpcodeLengths) in emitDebugLine()
H A DDWARFYAML.cpp291 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
/freebsd/contrib/llvm-project/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()
435 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
438 StandardOpcodeLengths.push_back(OpLen); in parse()
1208 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
1211 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp337 static const char StandardOpcodeLengths[] = { in Emit() local
351 assert(std::size(StandardOpcodeLengths) >= in Emit()
354 ArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1), in Emit()
534 ArrayRef<char> StandardOpcodeLengths, in Emit() argument
580 MCOS->emitInt8(StandardOpcodeLengths.size() + 1); in Emit()
583 for (char Length : StandardOpcodeLengths) in Emit()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h92 std::vector<uint8_t> StandardOpcodeLengths; member
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerTypeUnit.cpp35 LineTable.Prologue.StandardOpcodeLengths = {0, 1, 1, 1, 1, 0, in TypeUnit()
H A DDebugLineSectionEmitter.h286 for (auto Length : P.StandardOpcodeLengths) in emitLineTableProloguePayload()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h176 std::optional<std::vector<uint8_t>> StandardOpcodeLengths; member
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp1025 for (auto Length : P.StandardOpcodeLengths) { in emitLineTableProloguePayload()