Lines Matching refs:offset
545 int32_t offset = static_cast<int16_t>(instruction & 0xffff); in Dump() local
546 offset <<= 2; in Dump()
547 offset += 4; // Delay slot. in Dump()
548 args << FormatInstructionPointer(instr_ptr + offset) in Dump()
549 << StringPrintf(" ; %+d", offset); in Dump()
554 int32_t offset = (instruction & 0x1fffff) - ((instruction & 0x100000) << 1); in Dump() local
555 offset <<= 2; in Dump()
556 offset += 4; // Delay slot. in Dump()
557 args << FormatInstructionPointer(instr_ptr + offset) in Dump()
558 << StringPrintf(" ; %+d", offset); in Dump()
607 int32_t offset = static_cast<int16_t>(instruction) >> 7; in Dump() local
608 args << StringPrintf("%+d(%s)", offset, RegName(rs)); in Dump()
613 int32_t offset = static_cast<int16_t>(instruction & 0xffff); in Dump() local
614 args << StringPrintf("%+d(%s)", offset, RegName(rs)); in Dump()
617 GetDisassemblerOptions()->thread_offset_name_function_(args, offset); in Dump()
623 int32_t offset = (instruction & 0x7ffff) - ((instruction & 0x40000) << 1); in Dump() local
624 offset <<= 2; in Dump()
625 args << FormatInstructionPointer(instr_ptr + offset); in Dump()
626 args << StringPrintf(" ; %+d", offset); in Dump()
631 int32_t offset = (instruction & 0x3ffff) - ((instruction & 0x20000) << 1); in Dump() local
632 offset <<= 3; in Dump()
634 args << FormatInstructionPointer(reinterpret_cast<const uint8_t*>(ptr + offset)); in Dump()
635 args << StringPrintf(" ; %+d", offset); in Dump()
640 int32_t offset = (instruction & 0x3ffffff) - ((instruction & 0x2000000) << 1); in Dump() local
641 offset <<= 2; in Dump()
642 offset += 4; in Dump()
643 args << FormatInstructionPointer(instr_ptr + offset); in Dump()
644 args << StringPrintf(" ; %+d", offset); in Dump()
649 int32_t offset = (instruction & 0x7ffff) - ((instruction & 0x40000) << 1); in Dump() local
650 args << offset << " ; move " << RegName(rs) << ", "; in Dump()
651 args << FormatInstructionPointer(instr_ptr + (offset << 2)); in Dump()
824 uint32_t offset = (last_instr_ << 16) | (instruction & 0xFFFF); in Dump() local
825 offset -= (offset & 0x8000) << 1; in Dump()
826 offset -= 4; in Dump()
832 args << FormatInstructionPointer(instr_ptr + (int32_t)offset); in Dump()
833 args << StringPrintf(" ; %+d", (int32_t)offset); in Dump()