Skip to content

Commit

Permalink
disas: nanoMIPS: Comment the decoder of 'gpr1' gpr encoding type
Browse files Browse the repository at this point in the history
Comment the decoder of 'gpr1' gpr encoding type in nanoMIPS
disassembler.

Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
  • Loading branch information
AMarkovic committed Jan 3, 2019
1 parent 68d80fd commit dffcf17
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions disas/nanomips.cpp
Expand Up @@ -389,6 +389,27 @@ uint64 NMD::decode_gpr_gpr3_src_store(uint64 d)
}


/*
* NMD::decode_gpr_gpr1() - decoder for 'gpr1' gpr encoding type
*
* Map a 1-bit code to the 5-bit register space according to this pattern:
*
* 1 0
* | |
* | |
* | └---------------------┐
* └---------------------┐ |
* | |
* | |
* | |
* | |
* 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
* 3 2 1 0
*
* Used in handling following instruction:
*
* - MOVE.BALC
*/
uint64 NMD::decode_gpr_gpr1(uint64 d)
{
static uint64 register_list[] = { 4, 5 };
Expand Down

0 comments on commit dffcf17

Please sign in to comment.