Searched refs:StandardOpcodeLengths (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp29 StandardOpcodeLengths.clear();
46 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i)
48 StandardOpcodeLengths[i]);
96 StandardOpcodeLengths.reserve(OpcodeBase - 1);
99 StandardOpcodeLengths.push_back(op_len);
463 assert(opcode - 1U < Prologue.StandardOpcodeLengths.size());
464 uint8_t opcode_length = Prologue.StandardOpcodeLengths[opcode - 1];
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h62 std::vector<uint8_t> StandardOpcodeLengths; member in struct:llvm::DWARFDebugLine::Prologue
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCDwarf.cpp209 static const char StandardOpcodeLengths[] = { local
223 assert(array_lengthof(StandardOpcodeLengths) >=
225 return Emit(MCOS, Params, makeArrayRef(StandardOpcodeLengths,
247 ArrayRef<char> StandardOpcodeLengths) const {
284 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1);
287 for (char Length : StandardOpcodeLengths)

Completed in 63 milliseconds