Home
last modified time | relevance | path

Searched refs:OpcodeBase (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.cpp27 << format(" opcode_base: %u\n", OpcodeBase); in dump()
148 prologue->OpcodeBase = debug_line_data.getU8(offset_ptr); in parsePrologue()
150 prologue->StandardOpcodeLengths.reserve(prologue->OpcodeBase-1); in parsePrologue()
151 for (uint32_t i = 1; i < prologue->OpcodeBase; ++i) { in parsePrologue()
276 } else if (opcode < prologue->OpcodeBase) { in parseStatementTable()
337 uint8_t adjust_opcode = 255 - prologue->OpcodeBase; in parseStatementTable()
421 uint8_t adjust_opcode = opcode - prologue->OpcodeBase; in parseStatementTable()
DDWARFDebugLine.h36 DefaultIsStmt(0), LineBase(0), LineRange(0), OpcodeBase(0) {} in Prologue()
57 uint8_t OpcodeBase; member
77 MinInstLength = LineBase = LineRange = OpcodeBase = 0; in clear()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp25 OpcodeBase = 0; in clear()
42 << format(" opcode_base: %u\n", OpcodeBase); in dump()
92 OpcodeBase = debug_line_data.getU8(offset_ptr); in parse()
94 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
95 for (uint32_t i = 1; i < OpcodeBase; ++i) { in parse()
349 } else if (opcode < Prologue.OpcodeBase) { in parse()
410 uint8_t adjust_opcode = 255 - Prologue.OpcodeBase; in parse()
494 uint8_t adjust_opcode = opcode - Prologue.OpcodeBase; in parse()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h61 uint8_t OpcodeBase; member
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp3094 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit()
3098 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()