HomeSort by relevance Sort by last modified time
    Searched refs:StandardOpcodeLengths (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 28 StandardOpcodeLengths.clear();
45 for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i)
47 StandardOpcodeLengths[i]);
88 StandardOpcodeLengths.reserve(OpcodeBase - 1);
91 StandardOpcodeLengths.push_back(op_len);
454 assert(opcode - 1U < Prologue.StandardOpcodeLengths.size());
455 uint8_t opcode_length = Prologue.StandardOpcodeLengths[opcode - 1];
DWARFDebugLine.h 62 std::vector<uint8_t> StandardOpcodeLengths;
  /external/llvm/lib/MC/
MCDwarf.cpp 232 static const char StandardOpcodeLengths[] = {
246 assert(array_lengthof(StandardOpcodeLengths) == (DWARF2_LINE_OPCODE_BASE - 1));
247 return Emit(MCOS, StandardOpcodeLengths);
252 ArrayRef<char> StandardOpcodeLengths) const {
289 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1);
292 for (char Length : StandardOpcodeLengths)
    [all...]

Completed in 52 milliseconds