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

  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 38 DefaultIsStmt(0), LineBase(0), LineRange(0), OpcodeBase(0) {}
59 uint8_t OpcodeBase;
79 MinInstLength = LineBase = LineRange = OpcodeBase = 0;
DWARFDebugLine.cpp 28 << format(" opcode_base: %u\n", OpcodeBase);
182 prologue->OpcodeBase = debug_line_data.getU8(offset_ptr);
184 prologue->StandardOpcodeLengths.reserve(prologue->OpcodeBase-1);
185 for (uint32_t i = 1; i < prologue->OpcodeBase; ++i) {
320 } else if (opcode < prologue->OpcodeBase) {
381 uint8_t adjust_opcode = 255 - prologue->OpcodeBase;
465 uint8_t adjust_opcode = opcode - prologue->OpcodeBase;

Completed in 1011 milliseconds