Home
last modified time | relevance | path

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

/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp28 StandardOpcodeLengths.clear(); in clear()
45 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i) in dump()
47 StandardOpcodeLengths[i]); in dump()
88 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
91 StandardOpcodeLengths.push_back(op_len); in parse()
454 assert(opcode - 1U < Prologue.StandardOpcodeLengths.size()); in parse()
455 uint8_t opcode_length = Prologue.StandardOpcodeLengths[opcode - 1]; in parse()
/external/llvm/lib/MC/
DMCDwarf.cpp223 static const char StandardOpcodeLengths[] = { in Emit() local
237 assert(array_lengthof(StandardOpcodeLengths) == in Emit()
239 return Emit(MCOS, StandardOpcodeLengths); in Emit()
260 ArrayRef<char> StandardOpcodeLengths) const { in Emit()
298 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1); in Emit()
301 for (char Length : StandardOpcodeLengths) in Emit()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h62 std::vector<uint8_t> StandardOpcodeLengths; member