Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp77 StandardOpcodeLengths.clear(); in clear()
98 for (uint32_t I = 0; I != StandardOpcodeLengths.size(); ++I) in dump()
100 LNStandardString(I + 1).data(), StandardOpcodeLengths[I]); in dump()
319 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
322 StandardOpcodeLengths.push_back(OpLen); in parse()
767 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
768 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; in parse()
/freebsd-12.1/contrib/llvm/lib/MC/
H A 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
500 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1); in Emit()
503 for (char Length : StandardOpcodeLengths) in Emit()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h95 std::vector<uint8_t> StandardOpcodeLengths; member
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp161 IO.mapRequired("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
H A DDWARFEmitter.cpp228 for (auto OpcodeLength : LineTable.StandardOpcodeLengths) in EmitDebugLine()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h138 std::vector<uint8_t> StandardOpcodeLengths; member