Home
last modified time | relevance | path

Searched refs:adjust_opcode (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugLine.cpp315 uint8_t adjust_opcode = 255 - prologue.opcode_base; in DumpStatementOpcodes() local
316 … dw_addr_t addr_offset = (adjust_opcode / prologue.line_range) * prologue.min_inst_length; in DumpStatementOpcodes()
362 uint8_t adjust_opcode = opcode - prologue.opcode_base; in DumpStatementOpcodes() local
363 … dw_addr_t addr_offset = (adjust_opcode / prologue.line_range) * prologue.min_inst_length; in DumpStatementOpcodes()
364 … int32_t line_offset = prologue.line_base + (adjust_opcode % prologue.line_range); in DumpStatementOpcodes()
746 uint8_t adjust_opcode = 255 - prologue->opcode_base; in ParseStatementTable() local
747 … dw_addr_t addr_offset = (adjust_opcode / prologue->line_range) * prologue->min_inst_length; in ParseStatementTable()
830 uint8_t adjust_opcode = opcode - prologue->opcode_base; in ParseStatementTable() local
831 … dw_addr_t addr_offset = (adjust_opcode / prologue->line_range) * prologue->min_inst_length; in ParseStatementTable()
832 int32_t line_offset = prologue->line_base + (adjust_opcode % prologue->line_range); in ParseStatementTable()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp411 uint8_t adjust_opcode = 255 - Prologue.OpcodeBase; in parse() local
413 (adjust_opcode / Prologue.LineRange) * Prologue.MinInstLength; in parse()
495 uint8_t adjust_opcode = opcode - Prologue.OpcodeBase; in parse() local
497 (adjust_opcode / Prologue.LineRange) * Prologue.MinInstLength; in parse()
499 Prologue.LineBase + (adjust_opcode % Prologue.LineRange); in parse()