(no commit message)
authorlkcl <lkcl@web>
Thu, 17 Dec 2020 02:46:17 +0000 (02:46 +0000)
committerIkiWiki <ikiwiki.info>
Thu, 17 Dec 2020 02:46:17 +0000 (02:46 +0000)
openpower/sv/svp_rewrite/svp64.mdwn

index 6b27fe87b966c6f4150fc43b012b6590f85b17c3..a4e91dae2c3a47f3c10111c87a35e2abdcf70de2 100644 (file)
@@ -211,16 +211,16 @@ Likewise CR based twin predication has a second set of 3 bits, allowing a differ
 When the predicate mode bit is zero the 3 bits are interpreted as below. 
 Twin predication has an identical 3 bit field similarly encoded.
 
-| MASK/MASK_SRC<br/>Value | Mnemonic | Description                                            |
-|-------------------------|----------|--------------------------------------------------------|
-| 000                     | ALWAYS   | Operation is not masked (mask set to all 1s)           |
-| 001                     | 1 << R3  | Element `i` is enabled if `i == R3`                    |
-| 010                     | R3       | Element `i` is enabled if `R3 & (1 << i)` is non-zero  |
-| 011                     | ~R3      | Element `i` is enabled if `R3 & (1 << i)` is zero      |
-| 100                     | R10      | Element `i` is enabled if `R10 & (1 << i)` is non-zero |
-| 101                     | ~R10     | Element `i` is enabled if `R10 & (1 << i)` is zero     |
-| 110                     | R30      | Element `i` is enabled if `R30 & (1 << i)` is non-zero |
-| 111                     | ~R30     | Element `i` is enabled if `R30 & (1 << i)` is zero     |
+| Value | Mnemonic | Element `i` enabled if:      |
+|-------|----------|------------------------------|
+| 000   | ALWAYS   | (Operation is not masked)    |
+| 001   | 1 << R3  | `i == R3`                    |
+| 010   | R3       | `R3 & (1 << i)` is non-zero  |
+| 011   | ~R3      | `R3 & (1 << i)` is zero      |
+| 100   | R10      | `R10 & (1 << i)` is non-zero |
+| 101   | ~R10     | `R10 & (1 << i)` is zero     |
+| 110   | R30      | `R30 & (1 << i)` is non-zero |
+| 111   | ~R30     | `R30 & (1 << i)` is zero     |
 
 ### CR-based Predication (MASK_KIND=1)