(no commit message)
authorlkcl <lkcl@web>
Sun, 31 Jul 2022 14:18:03 +0000 (15:18 +0100)
committerIkiWiki <ikiwiki.info>
Sun, 31 Jul 2022 14:18:03 +0000 (15:18 +0100)
openpower/sv/vector_ops.mdwn

index 310767b0d28fa7f09856a33aa32f7f042365972f..67d95d4df20321619aff964b3f168ec178f47e84 100644 (file)
@@ -47,9 +47,9 @@ BM2-Form
 The patterns within the pseudocode for AMD TBM and x86 BMI1 are
 as follows:
 
-* first pattern A: `x / ~x`
-* second pattern B: `| / & / ^`
-* third pattern C: `x+1 / x-1 / ~(x+1) / (~x)+1`
+* first pattern A: two options `x` or `~x`
+* second pattern B: three options `|` `&` or `^`
+* third pattern C: four options `x+1`, `x-1`, `~(x+1)` or `(~x)+1`
 
 Thus it makes sense to create a single instruction
 that covers all of these.  A crucial addition that is essential