Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.cpp337 uint8_t adjust_opcode = 255 - prologue->OpcodeBase; in parseStatementTable() local
338 uint64_t addr_offset = (adjust_opcode / prologue->LineRange) * in parseStatementTable()
421 uint8_t adjust_opcode = opcode - prologue->OpcodeBase; in parseStatementTable() local
422 uint64_t addr_offset = (adjust_opcode / prologue->LineRange) * in parseStatementTable()
425 (adjust_opcode % prologue->LineRange); in parseStatementTable()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp410 uint8_t adjust_opcode = 255 - Prologue.OpcodeBase; in parse() local
412 (adjust_opcode / Prologue.LineRange) * Prologue.MinInstLength; in parse()
494 uint8_t adjust_opcode = opcode - Prologue.OpcodeBase; in parse() local
496 (adjust_opcode / Prologue.LineRange) * Prologue.MinInstLength; in parse()
498 Prologue.LineBase + (adjust_opcode % Prologue.LineRange); in parse()