From 3798a1b873f4a22bd8d0aea2eaf6f7601d382cf7 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 15 Nov 2020 03:04:20 +0000 Subject: [PATCH] add fmr. minor shuffle --- openpower/sv/16_bit_compressed.mdwn | 39 ++++++++++++++++------------- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/openpower/sv/16_bit_compressed.mdwn b/openpower/sv/16_bit_compressed.mdwn index 6a4286cae..43052754b 100644 --- a/openpower/sv/16_bit_compressed.mdwn +++ b/openpower/sv/16_bit_compressed.mdwn @@ -108,7 +108,7 @@ that do not fit in the extreme limited space. ### Arithmetic | 0 1 | 2 3 4 | | 567 | 8 9 a | b c d | e | f | - | | RT | | 010 | RB | RA | 0 | 1 | add + | | RT | | 010 | RB | RA!=0 | 0 | 1 | add | | RT | | 010 | RB | RA | 1 | 1 | mul | | RT | | 011 | RB | (RA|0)| 0 | 1 | sub. @@ -122,9 +122,13 @@ that do not fit in the extreme limited space. | 0 1 | 2 3 4 | | 567 | 8 9 a | b c d | e | f | | | RT | | 100 | RB | RA!=0 | 0 | 1 | and - | | RT | | 100 | RB | RA | 1 | 1 | nand - | | RT | | 101 | RB | RA | 0 | 1 | or - | | RT | | 101 | RB | (RA|0)| 1 | 1 | nor + | | RT | | 100 | RB | RA!=0 | 1 | 1 | nand + | | RT | | 101 | RB | RA!=0 | 0 | 1 | or + | | RT | | 101 | RB | RA!=0 | 1 | 1 | nor + | | RT | | 100 | RB | 0 0 0 | 0 | 1 | exts + | | RT | | 100 | RB | 0 0 0 | 1 | 1 | cntlz + | | RT | | 101 | RB | 0 0 0 | 0 | 1 | popcnt + | | RT | | 101 | RB | 0 0 0 | 1 | 1 | not 10 bit mode: @@ -134,17 +138,16 @@ that do not fit in the extreme limited space. ### Floating Point | 0 1 | 2 3 4 | | 567 | 8 9 a | b c d | e | f | - | | RT | | 011 | RB | (RA|0)| 1 | 1 | fsub. + | | RT | | 011 | RB | RA!=0 | 1 | 1 | fsub. | | RT | | 110 | RB | RA!=0 | 0 | 1 | fadd - | | RT | | 110 | RB | 0 0 0 | 0 | 1 | fabs | | RT | | 110 | RB | RA!=0 | 1 | 1 | fmul + | | RT | | 011 | RB | 0 0 0 | 1 | 1 | fneg. + | | RT | | 110 | RB | 0 0 0 | 0 | 1 | fabs | | RT | | 110 | RB | 0 0 0 | 1 | 1 | fmr. 10 bit mode: -* fsub default target is CR1 -* for (RA|0) when RA=0 the input is a zero immediate, - meaning that fsub becomes fneg, and fcmp becomes fcmp-against-zero +* fsub. fneg. and fmr. default target is CR1 * fmr. is **not available** in 10-bit mode 16 bit mode: @@ -167,7 +170,7 @@ that do not fit in the extreme limited space. 10 bit mode: * mcrf BF is only 2 bits which means the destination is only CR0-CR3 -* CR operations: **not available** +* CR operations: **not available** in 10-bit mode 16 bit mode: @@ -184,8 +187,8 @@ SV (Vector Mode): 10/16-bit mode: | 0 1 | 2 3 4 | | 567 | 8 9 a | b c d | e | f | - | | | | 100 | 0 0 0 | 0 0 0 | 0 | 1 | sc - | | | | 100 | 0 0 1 | 0 0 0 | 0 | 1 | rfid + | | | | 010 | 0 0 0 | 0 0 0 | 0 | 1 | sc + | | | | 010 | 0 0 1 | 0 0 0 | 0 | 1 | rfid **not available** in 10-bit mode: @@ -202,12 +205,12 @@ SV (Vector Mode): ### Unallocated | 0 1 | 2 3 4 | | 567 | 8 9 a | b c d | e | f | - | | | | 100 | 0 1 0 | 0 0 0 | 0 | 1 | - | | | | 100 | 0 1 1 | 0 0 0 | 0 | 1 | - | | | | 100 | 1 0 0 | 0 0 0 | 0 | 1 | - | | | | 100 | 1 0 1 | 0 0 0 | 0 | 1 | - | | | | 100 | 1 1 0 | 0 0 0 | 0 | 1 | - | | | | 100 | 1 1 1 | 0 0 0 | 0 | 1 | + | | | | 010 | 0 1 0 | 0 0 0 | 0 | 1 | + | | | | 010 | 0 1 1 | 0 0 0 | 0 | 1 | + | | | | 010 | 1 0 0 | 0 0 0 | 0 | 1 | + | | | | 010 | 1 0 1 | 0 0 0 | 0 | 1 | + | | | | 010 | 1 1 0 | 0 0 0 | 0 | 1 | + | | | | 010 | 1 1 1 | 0 0 0 | 0 | 1 | | 0 1 2 3 | 4 | | 567 | 8 9 a | b c d e | f | | 0 0 1 0 | | | 001 | 1 | 0 | 1 | -- 2.30.2