(no commit message)
[libreriscv.git] / openpower / sv / svp64.mdwn
1 # SVP64 Zero-Overhead Loop Prefix Subsystem
2
3 * **DRAFT STATUS v0.1 18sep2021** Release notes <https://bugs.libre-soc.org/show_bug.cgi?id=699>
4
5 This document describes [[SV|sv]] augmentation of the [[Power|openpower]] v3.0B [[ISA|openpower/isa/]]. It is in Draft Status and
6 will be submitted to the [[!wikipedia OpenPOWER_Foundation]] ISA WG
7 via the External RFC Process.
8
9 Credits and acknowledgements:
10
11 * Luke Leighton
12 * Jacob Lifshay
13 * Hendrik Boom
14 * Richard Wilbur
15 * Alexandre Oliva
16 * Cesar Strauss
17 * NLnet Foundation, for funding
18 * OpenPOWER Foundation
19 * Paul Mackerras
20 * Toshaan Bharvani
21 * IBM for the Power ISA itself
22
23 Links:
24
25 * <http://lists.libre-soc.org/pipermail/libre-soc-dev/2020-December/001498.html>>
26 * [[svp64/discussion]]
27 * [[svp64/appendix]]
28 * <http://lists.libre-soc.org/pipermail/libre-soc-dev/2020-December/001650.html>
29 * <https://bugs.libre-soc.org/show_bug.cgi?id=550>
30 * <https://bugs.libre-soc.org/show_bug.cgi?id=573> TODO elwidth "infinite" discussion
31 * <https://bugs.libre-soc.org/show_bug.cgi?id=574> Saturating description.
32 * <https://bugs.libre-soc.org/show_bug.cgi?id=905> TODO [[sv/svp64-single]]
33 * <https://bugs.libre-soc.org/show_bug.cgi?id=1045> External RFC ls010
34 * [[sv/branches]] chapter
35 * [[sv/ldst]] chapter
36
37
38 Table of contents
39
40 [[!toc]]
41
42 ## Introduction
43
44 Simple-V is a type of Vectorisation best described as a "Prefix Loop
45 Subsystem" similar to the 5 decades-old Zilog Z80 `LDIR` instruction and
46 to the 8086 `REP` Prefix instruction. More advanced features are similar
47 to the Z80 `CPIR` instruction. If naively viewed one-dimensionally as an
48 actual Vector ISA it introduces over 1.5 million 64-bit True-Scalable
49 Vector instructions on the SFFS Subset and closer to 10 million 64-bit
50 True-Scalable Vector instructions if introduced on VSX. SVP64, the
51 instruction format used by Simple-V, is therefore best viewed as an
52 orthogonal RISC-paradigm "Prefixing" subsystem instead.
53
54 Except where explicitly stated all bit numbers remain as in the rest of
55 the Power ISA: in MSB0 form (the bits are numbered from 0 at the MSB on
56 the left and counting up as you move rightwards to the LSB end). All bit
57 ranges are inclusive (so `4:6` means bits 4, 5, and 6, in MSB0 order).
58 **All register numbering and element numbering however is LSB0 ordering**
59 which is a different convention from that used elsewhere in the Power ISA.
60
61 The SVP64 prefix always comes before the suffix in PC order and must be
62 considered an independent "Defined word" that augments the behaviour of
63 the following instruction, but does **not** change the actual Decoding
64 of that following instruction. **All prefixed 32-bit instructions
65 (Defined Words) retain their non-prefixed encoding and definition**.
66
67 Two apparent exceptions to the above hard rule exist: SV
68 Branch-Conditional operations and LD/ST-update "Post-Increment"
69 Mode. Post-Increment was considered sufficiently high priority
70 (significantly reducing hot-loop instruction count) that one bit in
71 the Prefix is reserved for it (*Note the intention to release that bit
72 and move Post-Increment instructions to EXT2xx, as part of [[ls011]]*).
73 Vectorised Branch-Conditional operations "embed" the original Scalar
74 Branch-Conditional behaviour into a much more advanced variant that is
75 highly suited to High-Performance Computation (HPC), Supercomputing,
76 and parallel GPU Workloads.
77
78 *Architectural Resource Allocation note: it is prohibited to accept RFCs
79 which fundamentally violate this hard requirement. Under no circumstances
80 must the Suffix space have an alternate instruction encoding allocated
81 within SVP64 that is entirely different from the non-prefixed Defined
82 Word. Hardware Implementors critically rely on this inviolate guarantee
83 to implement High-Performance Multi-Issue micro-architectures that can
84 sustain 100% throughput*
85
86 Subset implementations in hardware are permitted, as long as certain
87 rules are followed, allowing for full soft-emulation including future
88 revisions. Compliancy Subsets exist to ensure minimum levels of binary
89 interoperability expectations within certain environments. Details in
90 the [[svp64/appendix]].
91
92 ## Strict Program Order
93
94 Many Vector ISAs allow interrupts to occur in the middle of
95 processing of large Vector operations, only under the condition
96 that continuation on return will restart the entire operation.
97 The reason is that saving of full Architectural State is
98 not practical.
99
100 Simple-V operates on an entirely different paradigm from traditional
101 Vector ISAs: as a Sub-Program Counter where "Elements" are synonymous
102 with Scalar instructions. With this in mind it is critical for
103 implementations to observe Strict Element-Level Program Order.
104 Interrupts still only save `MSR` and `PC` in `SRR0` and `SRR1`
105 but the full SVP64 Architectural State may be saved and
106 restored through manual copying of `SVSTATE` and the four
107 REMAP SPRs.
108 This capability also allows nested function calls to be made from
109 inside Vector loops, which is unusual for Vector ISAs.
110
111 Strict Program Order is also preserved by the Parallel Reduction
112 REMAP Schedule, but only at the cost of requiring the destination
113 Vector to be permitted to store partial progress of the Deterministic
114 Parallel Reduction Schedule.
115
116 ## SVP64 encoding features
117
118 A number of features need to be compacted into a very small space of
119 only 24 bits:
120
121 * Independent per-register Scalar/Vector tagging and range extension on
122 every register
123 * Element width overrides on both source and destination
124 * Predication on both source and destination
125 * Two different sources of predication: INT and CR Fields
126 * SV Modes including saturation (for Audio, Video and DSP), mapreduce,
127 fail-first and predicate-result mode.
128
129 Different classes of operations require different formats. The earlier
130 sections cover the common formats and the four separate modes follow:
131 CR operations (crops), Arithmetic/Logical (termed "normal"), Load/Store
132 and Branch-Conditional.
133
134 ## Definition of Reserved in this spec.
135
136 For the new fields added in SVP64, instructions that have any of their
137 fields set to a reserved value must cause an illegal instruction trap,
138 to allow emulation of future instruction sets, or for subsets of SVP64 to
139 be implemented in hardware and the rest emulated. This includes SVP64
140 SPRs: reading or writing values which are not supported in hardware
141 must also raise illegal instruction traps in order to allow emulation.
142 Unless otherwise stated, reserved values are always all zeros.
143
144 This is unlike OpenPower ISA v3.1, which in many instances does not
145 require a trap if reserved fields are nonzero. Where the standard Power
146 ISA definition is intended the red keyword `RESERVED` is used.
147
148 ## Definition of "UnVectoriseable"
149
150 Any operation that inherently makes no sense if repeated is termed
151 "UnVectoriseable" or "UnVectorised". Examples include `sc` or `sync`
152 which have no registers. `mtmsr` is also classed as UnVectoriseable
153 because there is only one `MSR`.
154
155 UnVectorised instructions are required to be detected as such if
156 Prefixed (either SVP64 or SVP64Single) and an Illegal Instruction
157 Trap raised.
158
159 *Architectural Note: Given that a "pre-classification" Decode Phase is
160 required (identifying whether the Suffix - Defined Word - is
161 Arithmetic/Logical, CR-op, Load/Store or Branch-Conditional),
162 adding "UnVectorised" to this phase is not unreasonable.*
163
164 ## Register files, elements, and Element-width Overrides
165
166 The relationship between register files, elements, and element-width
167 overrides is expressed as follows:
168
169 * register files are considered to be *byte-level* contiguous SRAMs,
170 accessed exclusively in Little-Endian Byte-Order at all times
171 * elements are sequential contiguous unbounded arrays starting at the "address"
172 of any given 64-bit GPR or FPR, numbered from 0 as the first,
173 "spilling" into numerically-sequentially-increasing GPRs
174 * element-width overrides set the width of the *elements* in the
175 sequentially-numbered contiguous array.
176
177 The relationship is best defined in Canonical form, below, in ANSI c as a
178 union data structure. A key difference is that VSR elements are bounded
179 fixed at 128-bit, where SVP64 elements are conceptually unbounded and
180 only limited by the Maximum Vector Length.
181
182 *Future specification note: SVP64 may be defined on top of VSRs in future.
183 At which point VSX also gains conceptually unbounded VSR register elements*
184
185 In the Upper Compliancy Levels of SVP64 the size of the GPR and FPR
186 Register files are expanded from 32 to 128 entries, and the number of
187 CR Fields expanded from CR0-CR7 to CR0-CR127. (Note: A future version
188 of SVP64 is anticipated to extend the VSR register file).
189
190 Memory access remains exactly the same: the effects of `MSR.LE` remain
191 exactly the same, affecting as they already do and remain **only**
192 on the Load and Store memory-register operation byte-order, and having
193 nothing to do with the ordering of the contents of register files or
194 register-register operations.
195
196 The only major impact on Arithmetic and Logical operations is that all
197 Scalar operations are defined, where practical and workable, to have
198 three new widths: elwidth=32, elwidth=16, elwidth=8. The default of
199 elwidth=64 is the pre-existing (Scalar) behaviour which remains 100%
200 unchanged. Thus, `addi` is now joined by a 32-bit, 16-bit, and 8-bit
201 variant of `addi`, but the sole exclusive difference is the width.
202 *In no way* is the actual `addi` instruction fundamentally altered.
203 FP Operations elwidth overrides are also defined, as explained in
204 the [[svp64/appendix]].
205
206 To be absolutely clear:
207
208 ```
209 There are no conceptual arithmetic ordering or other changes over the
210 Scalar Power ISA definitions to registers or register files or to
211 arithmetic or Logical Operations beyond element-width subdivision
212 ```
213
214 Element offset
215 numbering is naturally **LSB0-sequentially-incrementing from zero, not
216 MSB0-incrementing** including when element-width overrides are used,
217 at which point the elements progress through each register
218 sequentially from the LSB end
219 (confusingly numbered the highest in MSB0 ordering) and progress
220 incrementally to the MSB end (confusingly numbered the lowest in
221 MSB0 ordering).
222
223 When exclusively using MSB0-numbering, SVP64 becomes unnecessarily complex
224 to both express and subsequently understand: the required conditional
225 subtractions from 63, 31, 15 and 7 needed to express the fact that
226 elements are LSB0-sequential unfortunately become a hostile minefield,
227 obscuring both intent and meaning. Therefore for the purposes of this
228 section the more natural **LSB0 numbering is assumed** and it is left
229 to the reader to translate to MSB0 numbering.
230
231 The Canonical specification for how element-sequential numbering and
232 element-width overrides is defined is expressed in the following c
233 structure, assuming a Little-Endian system, and naturally using LSB0
234 numbering everywhere because the ANSI c specification is inherently LSB0.
235 Note the deliberate similarity to how VSX register elements are defined,
236 from Figure 97, Book I, Section 6.3, Page 258:
237
238 ```
239 #pragma pack
240 typedef union {
241 uint8_t actual_bytes[8];
242 // all of these are very deliberately unbounded arrays
243 // that intentionally "wrap" into subsequent actual_bytes...
244 uint8_t bytes[]; // elwidth 8
245 uint16_t hwords[]; // elwidth 16
246 uint32_t words[]; // elwidth 32
247 uint64_t dwords[]; // elwidth 64
248
249 } el_reg_t;
250
251 // ... here, as packed statically-defined GPRs.
252 elreg_t int_regfile[128];
253
254 // use element 0 as the destination
255 void get_register_element(el_reg_t* el, int gpr, int element, int width) {
256 switch (width) {
257 case 64: el->dwords[0] = int_regfile[gpr].dwords[element];
258 case 32: el->words[0] = int_regfile[gpr].words[element];
259 case 16: el->hwords[0] = int_regfile[gpr].hwords[element];
260 case 8 : el->bytes[0] = int_regfile[gpr].bytes[element];
261 }
262 }
263
264 // use element 0 as the source
265 void set_register_element(el_reg_t* el, int gpr, int element, int width) {
266 switch (width) {
267 case 64: int_regfile[gpr].dwords[element] = el->dwords[0];
268 case 32: int_regfile[gpr].words[element] = el->words[0];
269 case 16: int_regfile[gpr].hwords[element] = el->hwords[0];
270 case 8 : int_regfile[gpr].bytes[element] = el->bytes[0];
271 }
272 }
273 ```
274
275 Example Vector-looped add operation implementation when elwidths are 64-bit:
276
277 ```
278 # vector-add RT, RA,RB using the "uint64_t" union member, "dwords"
279 for i in range(VL):
280 int_regfile[RT].dword[i] = int_regfile[RA].dword[i] + int_regfile[RB].dword[i]
281 ```
282
283 However if elwidth overrides are set to 16 for both source and destination:
284
285 ```
286 # vector-add RT, RA, RB using the "uint64_t" union member "hwords"
287 for i in range(VL):
288 int_regfile[RT].hwords[i] = int_regfile[RA].hwords[i] + int_regfile[RB].hwords[i]
289 ```
290
291 The most fundamental aspect here to understand is that the wrapping
292 into subsequent Scalar GPRs that occurs on larger-numbered elements
293 including and especially on smaller element widths is **deliberate
294 and intentional**. From this Canonical definition it should be clear
295 that sequential elements begin at the LSB end of any given underlying
296 Scalar GPR, progress to the MSB end, and then to the LSB end of the
297 *next numerically-larger Scalar GPR*. In the example above if VL=5
298 and RT=1 then the contents of GPR(1) and GPR(2) will be as follows.
299 For clarity in the table below:
300
301 * Both MSB0-ordered bitnumbering *and* LSB-ordered bitnumbering are shown
302 * The GPR-numbering is considered LSB0-ordered
303 * The Element-numbering (result0-result4) is LSB0-ordered
304 * Each of the results (result0-result4) are 16-bit
305 * "same" indicates "no change as a result of the Vectorised add"
306
307 ```
308 | MSB0: | 0:15 | 16:31 | 32:47 | 48:63 |
309 | LSB0: | 63:48 | 47:32 | 31:16 | 15:0 |
310 |--------|---------|---------|---------|---------|
311 | GPR(0) | same | same | same | same |
312 | GPR(1) | result3 | result2 | result1 | result0 |
313 | GPR(2) | same | same | same | result4 |
314 | GPR(3) | same | same | same | same |
315 | ... | ... | ... | ... | ... |
316 | ... | ... | ... | ... | ... |
317 ```
318
319 Note that the upper 48 bits of GPR(2) would **not** be modified due to
320 the example having VL=5. Thus on "wrapping" - sequential progression
321 from GPR(1) into GPR(2) - the 5th result modifies **only** the bottom
322 16 LSBs of GPR(1).
323
324 Hardware Architectural note: to avoid a Read-Modify-Write at the register
325 file it is strongly recommended to implement byte-level write-enable lines
326 exactly as has been implemented in DRAM ICs for many decades. Additionally
327 the predicate mask bit is advised to be associated with the element
328 operation and alongside the result ultimately passed to the register file.
329 When element-width is set to 64-bit the relevant predicate mask bit
330 may be repeated eight times and pull all eight write-port byte-level
331 lines HIGH. Clearly when element-width is set to 8-bit the relevant
332 predicate mask bit corresponds directly with one single byte-level
333 write-enable line. It is up to the Hardware Architect to then amortise
334 (merge) elements together into both PredicatedSIMD Pipelines as well
335 as simultaneous non-overlapping Register File writes, to achieve High
336 Performance designs. Overall it helps to think of the register files
337 as being much more akin to a byte-level-addressable SRAM.
338
339 If the 16-bit operation were to be followed up with a 32-bit Vectorised
340 Operation, the exact same contents would be viewed as follows:
341
342 ```
343 | MSB0: | 0:31 | 32:63 |
344 | LSB0: | 63:32 | 31:0 |
345 |--------|----------------------|----------------------|
346 | GPR(0) | same | same |
347 | GPR(1) | (result3 || result2) | (result1 || result0) |
348 | GPR(2) | same | (same || result4) |
349 | GPR(3) | same | same |
350 | ... | ... | ... |
351 | ... | ... | ... |
352 ```
353
354 In other words, this perspective really is no different from the situation
355 where the actual Register File is treated as an Industry-standard
356 byte-level-addressable Little-Endian-addressed SRAM. Note that
357 this perspective does **not** involve `MSR.LE` in any way shape or
358 form because `MSR.LE` is directly in control of the Memory-to-Register
359 byte-ordering. This section is exclusively about how to correctly perceive
360 Simple-V-Augmented **Register** Files.
361
362 **Comparative equivalent using VSR registers**
363
364 For a comparative data point the VSR Registers may be expressed in the
365 same fashion. The c code below is directly an expression of Figure 97 in
366 Power ISA Public v3.1 Book I Section 6.3 page 258, *after compensating
367 for MSB0 numbering in both bits and elements, adapting in full to LSB0
368 numbering, and obeying LE ordering*.
369
370 **Crucial to understanding why the subtraction from 1,3,7,15 is present is
371 because the Power ISA numbers VSX Registers elements also in MSB0 order**.
372 SVP64 very specifically numbers elements in **LSB0** order with the first
373 element (numbered zero) being at the bitwise-numbered **LSB** end of the
374 register, where VSX does the reverse: places the numerically-*highest*
375 (last-numbered) element at the LSB end of the register.
376
377
378 ```
379 #pragma pack
380 typedef union {
381 // these do NOT match their Power ISA VSX numbering directly, they are all reversed
382 // bytes[15] is actually VSR.byte[0] for example. if this convention is not
383 // followed then everything ends up in the wrong place
384 uint8_t bytes[16]; // elwidth 8, QTY 16 FIXED total
385 uint16_t hwords[8]; // elwidth 16, QTY 8 FIXED total
386 uint32_t words[4]; // elwidth 32, QTY 8 FIXED total
387 uint64_t dwords[2]; // elwidth 64, QTY 2 FIXED total
388 uint8_t actual_bytes[16]; // totals 128-bit
389 } el_reg_t;
390
391 elreg_t VSR_regfile[64];
392
393 static void check_num_elements(int elt, int width) {
394 switch (width) {
395 case 64: assert elt < 2;
396 case 32: assert elt < 4;
397 case 16: assert elt < 8;
398 case 8 : assert elt < 16;
399 }
400 }
401 void get_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
402 check_num_elements(elt, width);
403 switch (width) {
404 case 64: el->dwords[0] = VSR_regfile[gpr].dwords[1-elt];
405 case 32: el->words[0] = VSR_regfile[gpr].words[3-elt];
406 case 16: el->hwords[0] = VSR_regfile[gpr].hwords[7-elt];
407 case 8 : el->bytes[0] = VSR_regfile[gpr].bytes[15-elt];
408 }
409 }
410 void set_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
411 check_num_elements(elt, width);
412 switch (width) {
413 case 64: VSR_regfile[gpr].dwords[1-elt] = el->dwords[0];
414 case 32: VSR_regfile[gpr].words[3-elt] = el->words[0];
415 case 16: VSR_regfile[gpr].hwords[7-elt] = el->hwords[0];
416 case 8 : VSR_regfile[gpr].bytes[15-elt] = el->bytes[0];
417 }
418 }
419 ```
420
421 For VSR Registers one key difference is that the overlay of different
422 element widths is clearly a *bounded static quantity*, whereas for
423 Simple-V the elements are unrestrained and permitted to flow into
424 *successive underlying Scalar registers*. This difference is absolutely
425 critical to a full understanding of the entire Simple-V paradigm and
426 why element-ordering, bit-numbering *and register numbering* are all so
427 strictly defined.
428
429 Implementations are not permitted to violate the Canonical
430 definition. Software will be critically relying on the wrapped (overflow)
431 behaviour inherently implied by the unbounded variable-length c arrays.
432
433 Illustrating the exact same loop with the exact same effect as achieved
434 by Simple-V we are first forced to create wrapper functions, to cater
435 for the fact that VSR register elements are static bounded:
436
437 ```
438 int calc_VSR_reg_offs(int elt, int width) {
439 switch (width) {
440 case 64: return floor(elt / 2);
441 case 32: return floor(elt / 4);
442 case 16: return floor(elt / 8);
443 case 8 : return floor(elt / 16);
444 }
445 }
446 int calc_VSR_elt_offs(int elt, int width) {
447 switch (width) {
448 case 64: return (elt % 2);
449 case 32: return (elt % 4);
450 case 16: return (elt % 8);
451 case 8 : return (elt % 16);
452 }
453 }
454 void _set_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
455 int new_elt = calc_VSR_elt_offs(elt, width);
456 int new_reg = calc_VSR_reg_offs(elt, width);
457 set_VSR_element(el, gpr+new_reg, new_elt, width);
458 }
459 ```
460
461 And finally use these functions:
462
463 ```
464 # VSX-add RT, RA, RB using the "uint64_t" union member "hwords"
465 for i in range(VL):
466 el_reg_t result, ra, rb;
467 _get_VSR_element(&ra, RA, i, 16);
468 _get_VSR_element(&rb, RB, i, 16);
469 result.hwords[0] = ra.hwords[0] + rb.hwords[0]; // use array 0 elements
470 _set_VSR_element(&result, RT, i, 16);
471
472 ```
473
474 ## Scalar Identity Behaviour
475
476 SVP64 is designed so that when the prefix is all zeros, and VL=1, no
477 effect or influence occurs (no augmentation) such that all standard Power
478 ISA v3.0/v3.1 instructions covered by the prefix are "unaltered". This
479 is termed `scalar identity behaviour` (based on the mathematical
480 definition for "identity", as in, "identity matrix" or better "identity
481 transformation").
482
483 Note that this is completely different from when VL=0. VL=0 turns all
484 operations under its influence into `nops` (regardless of the prefix)
485 whereas when VL=1 and the SV prefix is all zeros, the operation simply
486 acts as if SV had not been applied at all to the instruction (an
487 "identity transformation").
488
489 The fact that `VL` is dynamic and can be set to any value at runtime
490 based on program conditions and behaviour means very specifically that
491 `scalar identity behaviour` is **not** a redundant encoding. If the only
492 means by which VL could be set was by way of static-compiled immediates
493 then this assertion would be false. VL should not be confused with
494 MAXVL when understanding this key aspect of SimpleV.
495
496 ## Register Naming and size
497
498 As indicated above SV Registers are simply the GPR, FPR and CR register
499 files extended linearly to larger sizes; SV Vectorisation iterates
500 sequentially through these registers (LSB0 sequential ordering from 0
501 to VL-1).
502
503 Where the integer regfile in standard scalar Power ISA v3.0B/v3.1B is
504 r0 to r31, SV extends this as r0 to r127. Likewise FP registers are
505 extended to 128 (fp0 to fp127), and CR Fields are extended to 128 entries,
506 CR0 thru CR127.
507
508 The names of the registers therefore reflects a simple linear extension
509 of the Power ISA v3.0B / v3.1B register naming, and in hardware this
510 would be reflected by a linear increase in the size of the underlying
511 SRAM used for the regfiles.
512
513 Note: when an EXTRA field (defined below) is zero, SV is deliberately
514 designed so that the register fields are identical to as if SV was not in
515 effect i.e. under these circumstances (EXTRA=0) the register field names
516 RA, RB etc. are interpreted and treated as v3.0B / v3.1B scalar registers.
517 This is part of `scalar identity behaviour` described above.
518
519 **Condition Register(s)**
520
521 The Scalar Power ISA Condition Register is a 64 bit register where
522 the top 32 MSBs (numbered 0:31 in MSB0 numbering) are not used.
523 This convention is *preserved* in SVP64 and an additional 15 Condition
524 Registers provided in order to store the new CR Fields, CR8-CR15,
525 CR16-CR23 etc. sequentially. The top 32 MSBs in each new SVP64 Condition
526 Register are *also* not used: only the bottom 32 bits (numbered 32:63
527 in MSB0 numbering).
528
529 *Programmer's note: using `sv.mfcr` without element-width overrides
530 to take into account the fact that the top 32 MSBs are zero and thus
531 effectively doubling the number of GPR registers required to hold all 128
532 CR Fields would seem the only option because a source elwidth override
533 to 32-bit would take only the bottom 16 LSBs of the Condition Register
534 and set the top 16 LSBs to zeros. However in this case it
535 is possible to use destination element-width overrides (for `sv.mfcr`.
536 source overrides would be used on the GPR of `sv.mtocrf`), whereupon
537 truncation of the 64-bit Condition Register(s) occurs, throwing away
538 the zeros and storing the remaining (valid, desired) 32-bit values
539 sequentially into (LSB0-convention) lower-numbered and upper-numbered
540 halves of GPRs respectively. The programmer is expected to be aware
541 however that the full width of the entire 64-bit Condition Register
542 is considered to be "an element". This is **not** like any other
543 Condition-Register instructions because all other CR instructions,
544 on closer investigation, will be observed to all be CR-bit or CR-Field
545 related. Thus a `VL` of 16 must be used*
546
547 **Condition Register Fields as Predicate Masks**
548
549 Condition Register Fields perform an additional duty in Simple-V: they are
550 used for Predicate Masks. ARM's Scalar Instruction Set calls single-bit
551 predication "Conditional Execution", and utilises Condition Codes for
552 exactly this purpose to solve the problem caused by Branch Speculation.
553 In a Vector ISA context the concept of Predication is naturally extended
554 from single-bit to multi-bit, and the (well-known) benefits become all the
555 more critical given that parallel branches in Vector ISAs are impossible
556 (even a Vector ISA can only have Scalar branches).
557
558 However the Scalar Power ISA does not have Conditional Execution (for
559 which, if it had ever been considered, Condition Register bits would be
560 a perfect natural fit). Thus, when adding Predication using CR Fields
561 via Simple-V it becomes a somewhat disruptive addition to the Power ISA.
562
563 To ameliorate this situation, particularly for pre-existing Hardware
564 designs implementing up to Scalar Power ISA v3.1, some rules are set that
565 allow those pre-existing designs not to require heavy modification to
566 their existing Scalar pipelines. These rules effectively allow Hardware
567 Architects to add the additional CR Fields CR8 to CR127 as if they were
568 an **entirely separate register file**.
569
570 * any instruction involving more than 1 source 1 destination
571 where one of the operands is a Condition Register is prohibited from
572 using registers from both the CR0-7 group and the CR8-127 group at
573 the same time.
574 * any instruction involving 1 source 1 destination where either the
575 source or the destination is a Condition Register is prohibited
576 from setting CR0-7 as a Vector.
577 * prohibitions are required to be enforced by raising Illegal Instruction
578 Traps
579
580 Examples of permitted instructions:
581
582 ```
583 sv.crand *cr8.eq, *cr16.le, *cr40.so # all CR8-CR127
584 sv.mfcr cr5, *cr40 # only one source (CR40) copied to CR5
585 sv.mfcr *cr16, cr40 # Vector-Splat CR40 onto CR16,17,18...
586 ```
587
588 Examples of prohibited instructions:
589
590 ```
591 sv.mfcr *cr0, cr40 # Vector-Splat onto CR0,1,2
592 sv.crand cr7, cr9, cr10 # crosses over between CR0-7 and CR8-127
593 ```
594
595 ## Future expansion.
596
597 With the way that EXTRA fields are defined and applied to register
598 fields, future versions of SV may involve 256 or greater registers
599 in some way as long as the reputation of Power ISA for full backwards
600 binary interoperability is preserved. Backwards binary compatibility
601 may be achieved with a PCR bit (Program Compatibility Register) or an
602 MSR bit analogous to SF. Further discussion is out of scope for this
603 version of SVP64.
604
605 Additionally, a future variant of SVP64 will be applied to the Scalar
606 (Quad-precision and 128-bit) VSX instructions. Element-width overrides are
607 an opportunity to expand a future version of the Power ISA to 256-bit,
608 512-bit and 1024-bit operations, as well as doubling or quadrupling the
609 number of VSX registers to 128 or 256. Again further discussion is out
610 of scope for this version of SVP64.
611
612 --------
613
614 \newpage{}
615
616 ## SVP64 Remapped Encoding (`RM[0:23]`)
617
618 In the SVP64 Vector Prefix spaces, the 24 bits 8-31 are termed `RM`. Bits
619 32-37 are the Primary Opcode of the Suffix "Defined Word". 38-63 are the
620 remainder of the Defined Word. Note that the new EXT232-263 SVP64 area
621 it is obviously mandatory that bit 32 is required to be set to 1.
622
623 | 0-5 | 6 | 7 | 8-31 | 32-37 | 38-64 |Description |
624 |-----|---|---|----------|--------|----------|-----------------------|
625 | PO | 0 | 1 | RM[0:23] | 1nnnnn | xxxxxxxx | SVP64:EXT232-263 |
626 | PO | 1 | 1 | RM[0:23] | nnnnnn | xxxxxxxx | SVP64:EXT000-063 |
627
628 It is important to note that unlike EXT1xx 64-bit prefixed instructions
629 there is insufficient space in `RM` to provide identification of
630 any SVP64 Fields without first partially decoding the 32-bit suffix.
631 Similar to the "Forms" (X-Form, D-Form) the `RM` format is individually
632 associated with every instruction. However this still does not adversely
633 affect Multi-Issue Decoding because the identification of the *length*
634 of anything in the 64-bit space has been kept brutally simple (EXT009),
635 and further decoding of any number of 64-bit Encodings in parallel at
636 that point is fully independent.
637
638 Extreme caution and care must be taken when extending SVP64
639 in future, to not create unnecessary relationships between prefix and
640 suffix that could complicate decoding, adding latency.
641
642 ## Common RM fields
643
644 The following fields are common to all Remapped Encodings:
645
646 | Field Name | Field bits | Description |
647 |------------|------------|----------------------------------------|
648 | MASKMODE | `0` | Execution (predication) Mask Kind |
649 | MASK | `1:3` | Execution Mask |
650 | SUBVL | `8:9` | Sub-vector length |
651
652 The following fields are optional or encoded differently depending
653 on context after decoding of the Scalar suffix:
654
655 | Field Name | Field bits | Description |
656 |------------|------------|----------------------------------------|
657 | ELWIDTH | `4:5` | Element Width |
658 | ELWIDTH_SRC | `6:7` | Element Width for Source |
659 | EXTRA | `10:18` | Register Extra encoding |
660 | MODE | `19:23` | changes Vector behaviour |
661
662 * MODE changes the behaviour of the SV operation (result saturation,
663 mapreduce)
664 * SUBVL groups elements together into vec2, vec3, vec4 for use in 3D
665 and Audio/Video DSP work
666 * ELWIDTH and ELWIDTH_SRC overrides the instruction's destination and
667 source operand width
668 * MASK (and MASK_SRC) and MASKMODE provide predication (two types of
669 sources: scalar INT and Vector CR).
670 * Bits 10 to 18 (EXTRA) are further decoded depending on the RM category
671 for the instruction, which is determined only by decoding the Scalar 32
672 bit suffix.
673
674 Similar to Power ISA `X-Form` etc. EXTRA bits are given designations,
675 such as `RM-1P-3S1D` which indicates for this example that the operation
676 is to be single-predicated and that there are 3 source operand EXTRA
677 tags and one destination operand tag.
678
679 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance
680 or increased latency in some implementations due to lane-crossing.
681
682 ## Mode
683
684 Mode is an augmentation of SV behaviour. Different types of instructions
685 have different needs, similar to Power ISA v3.1 64 bit prefix 8LS and MTRR
686 formats apply to different instruction types. Modes include Reduction,
687 Iteration, arithmetic saturation, and Fail-First. More specific details
688 in each section and in the [[svp64/appendix]]
689
690 * For condition register operations see [[sv/cr_ops]]
691 * For LD/ST Modes, see [[sv/ldst]].
692 * For Branch modes, see [[sv/branches]]
693 * For arithmetic and logical, see [[sv/normal]]
694
695 ## ELWIDTH Encoding
696
697 Default behaviour is set to 0b00 so that zeros follow the convention
698 of `scalar identity behaviour`. In this case it means that elwidth
699 overrides are not applicable. Thus if a 32 bit instruction operates
700 on 32 bit, `elwidth=0b00` specifies that this behaviour is unmodified.
701 Likewise when a processor is switched from 64 bit to 32 bit mode,
702 `elwidth=0b00` states that, again, the behaviour is not to be modified.
703
704 Only when elwidth is nonzero is the element width overridden to the
705 explicitly required value.
706
707 ### Elwidth for Integers:
708
709 | Value | Mnemonic | Description |
710 |-------|----------------|------------------------------------|
711 | 00 | DEFAULT | default behaviour for operation |
712 | 01 | `ELWIDTH=w` | Word: 32-bit integer |
713 | 10 | `ELWIDTH=h` | Halfword: 16-bit integer |
714 | 11 | `ELWIDTH=b` | Byte: 8-bit integer |
715
716 This encoding is chosen such that the byte width may be computed as
717 `8<<(3-ew)`
718
719 ### Elwidth for FP Registers:
720
721 | Value | Mnemonic | Description |
722 |-------|----------------|------------------------------------|
723 | 00 | DEFAULT | default behaviour for FP operation |
724 | 01 | `ELWIDTH=f32` | 32-bit IEEE 754 Single floating-point |
725 | 10 | `ELWIDTH=f16` | 16-bit IEEE 754 Half floating-point |
726 | 11 | `ELWIDTH=bf16` | Reserved for `bf16` |
727
728 Note:
729 [`bf16`](https://en.wikipedia.org/wiki/Bfloat16_floating-point_format)
730 is reserved for a future implementation of SV
731
732 Note that any IEEE754 FP operation in Power ISA ending in "s" (`fadds`)
733 shall perform its operation at **half** the ELWIDTH then padded back out
734 to ELWIDTH. `sv.fadds/ew=f32` shall perform an IEEE754 FP16 operation
735 that is then "padded" to fill out to an IEEE754 FP32. When ELWIDTH=DEFAULT
736 clearly the behaviour of `sv.fadds` is performed at 32-bit accuracy
737 then padded back out to fit in IEEE754 FP64, exactly as for Scalar
738 v3.0B "single" FP. Any FP operation ending in "s" where ELWIDTH=f16 or
739 ELWIDTH=bf16 is reserved and must raise an illegal instruction (IEEE754
740 FP8 or BF8 are not defined).
741
742 ### Elwidth for CRs (no meaning)
743
744 Element-width overrides for CR Fields has no meaning. The bits
745 are therefore used for other purposes, or when Rc=1, the Elwidth
746 applies to the result being tested (a GPR or FPR), but not to the
747 Vector of CR Fields.
748
749 ## SUBVL Encoding
750
751 The default for SUBVL is 1 and its encoding is 0b00 to indicate that
752 SUBVL is effectively disabled (a SUBVL for-loop of only one element). this
753 lines up in combination with all other "default is all zeros" behaviour.
754
755 | Value | Mnemonic | Subvec | Description |
756 |-------|-----------|---------|------------------------|
757 | 00 | `SUBVL=1` | single | Sub-vector length of 1 |
758 | 01 | `SUBVL=2` | vec2 | Sub-vector length of 2 |
759 | 10 | `SUBVL=3` | vec3 | Sub-vector length of 3 |
760 | 11 | `SUBVL=4` | vec4 | Sub-vector length of 4 |
761
762 The SUBVL encoding value may be thought of as an inclusive range of a
763 sub-vector. SUBVL=2 represents a vec2, its encoding is 0b01, therefore
764 this may be considered to be elements 0b00 to 0b01 inclusive.
765
766 ## MASK/MASK_SRC & MASKMODE Encoding
767
768 One bit (`MASKMODE`) indicates the mode: CR or Int predication. The two
769 types may not be mixed.
770
771 Special note: to disable predication this field must be set to zero in
772 combination with Integer Predication also being set to 0b000. this has the
773 effect of enabling "all 1s" in the predicate mask, which is equivalent to
774 "not having any predication at all".
775
776 `MASKMODE` may be set to one of 2 values:
777
778 | Value | Description |
779 |-----------|------------------------------------------------------|
780 | 0 | MASK/MASK_SRC are encoded using Integer Predication |
781 | 1 | MASK/MASK_SRC are encoded using CR-based Predication |
782
783 Integer Twin predication has a second set of 3 bits that uses the same
784 encoding thus allowing either the same register (r3, r10 or r31) to be
785 used for both src and dest, or different regs (one for src, one for dest).
786
787 Likewise CR based twin predication has a second set of 3 bits, allowing
788 a different test to be applied.
789
790 Note that it is assumed that Predicate Masks (whether INT or CR) are
791 read *before* the operations proceed. In practice (for CR Fields)
792 this creates an unnecessary block on parallelism. Therefore, it is up
793 to the programmer to ensure that the CR fields used as Predicate Masks
794 are not being written to by any parallel Vector Loop. Doing so results
795 in **UNDEFINED** behaviour, according to the definition outlined in the
796 Power ISA v3.0B Specification.
797
798 Hardware Implementations are therefore free and clear to delay reading
799 of individual CR fields until the actual predicated element operation
800 needs to take place, safe in the knowledge that no programmer will have
801 issued a Vector Instruction where previous elements could have overwritten
802 (destroyed) not-yet-executed CR-Predicated element operations.
803
804 ### Integer Predication (MASKMODE=0)
805
806 When the predicate mode bit is zero the 3 bits are interpreted as below.
807 Twin predication has an identical 3 bit field similarly encoded.
808
809 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the
810 following meaning:
811
812 | Value | Mnemonic | Element `i` enabled if: |
813 |-------|----------|------------------------------|
814 | 000 | ALWAYS | predicate effectively all 1s |
815 | 001 | 1 << R3 | `i == R3` |
816 | 010 | R3 | `R3 & (1 << i)` is non-zero |
817 | 011 | ~R3 | `R3 & (1 << i)` is zero |
818 | 100 | R10 | `R10 & (1 << i)` is non-zero |
819 | 101 | ~R10 | `R10 & (1 << i)` is zero |
820 | 110 | R30 | `R30 & (1 << i)` is non-zero |
821 | 111 | ~R30 | `R30 & (1 << i)` is zero |
822
823 r10 and r30 are at the high end of temporary and unused registers,
824 so as not to interfere with register allocation from ABIs.
825
826 ### CR-based Predication (MASKMODE=1)
827
828 When the predicate mode bit is one the 3 bits are interpreted as below.
829 Twin predication has an identical 3 bit field similarly encoded.
830
831 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the
832 following meaning:
833
834 | Value | Mnemonic | Element `i` is enabled if |
835 |-------|----------|--------------------------|
836 | 000 | lt | `CR[offs+i].LT` is set |
837 | 001 | nl/ge | `CR[offs+i].LT` is clear |
838 | 010 | gt | `CR[offs+i].GT` is set |
839 | 011 | ng/le | `CR[offs+i].GT` is clear |
840 | 100 | eq | `CR[offs+i].EQ` is set |
841 | 101 | ne | `CR[offs+i].EQ` is clear |
842 | 110 | so/un | `CR[offs+i].FU` is set |
843 | 111 | ns/nu | `CR[offs+i].FU` is clear |
844
845 `offs` is defined as CR32 (4x8) so as to mesh cleanly with Vectorised
846 Rc=1 operations (see below). Rc=1 operations start from CR8 (TBD).
847
848 The CR Predicates chosen must start on a boundary that Vectorised CR
849 operations can access cleanly, in full. With EXTRA2 restricting starting
850 points to multiples of 8 (CR0, CR8, CR16...) both Vectorised Rc=1 and
851 CR Predicate Masks have to be adapted to fit on these boundaries as well.
852
853 ## Extra Remapped Encoding <a name="extra_remap"> </a>
854
855 Shows all instruction-specific fields in the Remapped Encoding
856 `RM[10:18]` for all instruction variants. Note that due to the very
857 tight space, the encoding mode is *not* included in the prefix itself.
858 The mode is "applied", similar to Power ISA "Forms" (X-Form, D-Form)
859 on a per-instruction basis, and, like "Forms" are given a designation
860 (below) of the form `RM-nP-nSnD`. The full list of which instructions
861 use which remaps is here [[opcode_regs_deduped]].
862
863 **Please note the following**:
864
865 ```
866 Machine-readable CSV files have been autogenerated which will make the
867 task of creating SV-aware ISA decoders, documentation, assembler tools
868 compiler tools Simulators documentation all aspects of SVP64 easier
869 and less prone to mistakes. Please avoid manual re-creation of
870 information from the written specification wording in this chapter,
871 and use the CSV files or use the Canonical tool which creates the CSV
872 files, named sv_analysis.py. The information contained within
873 sv_analysis.py is considered to be part of this Specification, even
874 encoded as it is in python3.
875 ```
876
877
878 The mappings are part of the SVP64 Specification in exactly the same
879 way as X-Form, D-Form. New Scalar instructions added to the Power ISA
880 will need a corresponding SVP64 Mapping, which can be derived by-rote
881 from examining the Register "Profile" of the instruction.
882
883 There are two categories: Single and Twin Predication. Due to space
884 considerations further subdivision of Single Predication is based on
885 whether the number of src operands is 2 or 3. With only 9 bits available
886 some compromises have to be made.
887
888 * `RM-1P-3S1D` Single Predication dest/src1/2/3, applies to 4-operand
889 instructions (fmadd, isel, madd).
890 * `RM-1P-2S1D` Single Predication dest/src1/2 applies to 3-operand
891 instructions (src1 src2 dest)
892 * `RM-2P-1S1D` Twin Predication (src=1, dest=1)
893 * `RM-2P-2S1D` Twin Predication (src=2, dest=1) primarily for LDST (Indexed)
894 * `RM-2P-1S2D` Twin Predication (src=1, dest=2) primarily for LDST Update
895
896 ### RM-1P-3S1D
897
898 | Field Name | Field bits | Description |
899 |------------|------------|----------------------------------------|
900 | Rdest\_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
901 | Rsrc1\_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
902 | Rsrc2\_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
903 | Rsrc3\_EXTRA2 | `16:17` | extends Rsrc3 (R\*\_EXTRA2 Encoding) |
904 | EXTRA2_MODE | `18` | used by `divmod2du` and `maddedu` for RS |
905
906 These are for 3 operand in and either 1 or 2 out instructions.
907 3-in 1-out includes `madd RT,RA,RB,RC`. (DRAFT) instructions
908 such as `maddedu` have an implicit second destination, RS, the
909 selection of which is determined by bit 18.
910
911 ### RM-1P-2S1D
912
913 | Field Name | Field bits | Description |
914 |------------|------------|-------------------------------------------|
915 | Rdest\_EXTRA3 | `10:12` | extends Rdest |
916 | Rsrc1\_EXTRA3 | `13:15` | extends Rsrc1 |
917 | Rsrc2\_EXTRA3 | `16:18` | extends Rsrc3 |
918
919 These are for 2 operand 1 dest instructions, such as `add RT, RA,
920 RB`. However also included are unusual instructions with an implicit
921 dest that is identical to its src reg, such as `rlwinmi`.
922
923 Normally, with instructions such as `rlwinmi`, the scalar v3.0B ISA would
924 not have sufficient bit fields to allow an alternative destination.
925 With SV however this becomes possible. Therefore, the fact that the
926 dest is implicitly also a src should not mislead: due to the *prefix*
927 they are different SV regs.
928
929 * `rlwimi RA, RS, ...`
930 * Rsrc1_EXTRA3 applies to RS as the first src
931 * Rsrc2_EXTRA3 applies to RA as the secomd src
932 * Rdest_EXTRA3 applies to RA to create an **independent** dest.
933
934 With the addition of the EXTRA bits, the three registers
935 each may be *independently* made vector or scalar, and be independently
936 augmented to 7 bits in length.
937
938 ### RM-2P-1S1D/2S
939
940 | Field Name | Field bits | Description |
941 |------------|------------|----------------------------|
942 | Rdest_EXTRA3 | `10:12` | extends Rdest |
943 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
944 | MASK_SRC | `16:18` | Execution Mask for Source |
945
946 `RM-2P-2S` is for `stw` etc. and is Rsrc1 Rsrc2.
947
948 | Field Name | Field bits | Description |
949 |------------|------------|----------------------------|
950 | Rsrc1_EXTRA3 | `10:12` | extends Rsrc1 |
951 | Rsrc2_EXTRA3 | `13:15` | extends Rsrc2 |
952 | MASK_SRC | `16:18` | Execution Mask for Source |
953
954 ### RM-1P-2S1D
955
956 single-predicate, three registers (2 read, 1 write)
957
958 | Field Name | Field bits | Description |
959 |------------|------------|----------------------------|
960 | Rdest_EXTRA3 | `10:12` | extends Rdest |
961 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
962 | Rsrc2_EXTRA3 | `16:18` | extends Rsrc2 |
963
964 ### RM-2P-2S1D/1S2D/3S
965
966 The primary purpose for this encoding is for Twin Predication on LOAD
967 and STORE operations. see [[sv/ldst]] for detailed anslysis.
968
969 **RM-2P-2S1D:**
970
971 | Field Name | Field bits | Description |
972 |------------|------------|----------------------------|
973 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
974 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
975 | Rsrc2_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
976 | MASK_SRC | `16:18` | Execution Mask for Source |
977
978 **RM-2P-1S2D:**
979
980 For RM-2P-1S2D dest2 is in bits 14:15
981
982 | Field Name | Field bits | Description |
983 |------------|------------|----------------------------|
984 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
985 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
986 | Rdest2_EXTRA2 | `14:15` | extends Rdest22 (R\*\_EXTRA2 Encoding) |
987 | MASK_SRC | `16:18` | Execution Mask for Source |
988
989 **RM-2P-3S:**
990
991 Also that for RM-2P-3S (to cover `stdx` etc.) the names are switched to 3 src:
992 Rsrc1_EXTRA2, Rsrc2_EXTRA2, Rsrc3_EXTRA2.
993
994 | Field Name | Field bits | Description |
995 |------------|------------|----------------------------|
996 | Rsrc1_EXTRA2 | `10:11` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
997 | Rsrc2_EXTRA2 | `12:13` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
998 | Rsrc3_EXTRA2 | `14:15` | extends Rsrc3 (R\*\_EXTRA2 Encoding) |
999 | MASK_SRC | `16:18` | Execution Mask for Source |
1000
1001 Note also that LD with update indexed, which takes 2 src and
1002 creates 2 dest registers (e.g. `lhaux RT,RA,RB`), does not have room
1003 for 4 registers and also Twin Predication. Therefore these are treated as
1004 RM-2P-2S1D and the src spec for RA is also used for the same RA as a dest.
1005
1006 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance
1007 or increased latency in some implementations due to lane-crossing.
1008
1009 ## R\*\_EXTRA2/3
1010
1011 EXTRA is the means by which two things are achieved:
1012
1013 1. Registers are marked as either Vector *or Scalar*
1014 2. Register field numbers (limited typically to 5 bit)
1015 are extended in range, both for Scalar and Vector.
1016
1017 The register files are therefore extended:
1018
1019 * INT (GPR) is extended from r0-31 to r0-127
1020 * FP (FPR) is extended from fp0-32 to fp0-fp127
1021 * CR Fields are extended from CR0-7 to CR0-127
1022
1023 However due to pressure in `RM.EXTRA` not all these registers
1024 are accessible by all instructions, particularly those with
1025 a large number of operands (`madd`, `isel`).
1026
1027 In the following tables register numbers are constructed from the
1028 standard v3.0B / v3.1B 32 bit register field (RA, FRA) and the EXTRA2 or
1029 EXTRA3 field from the SV Prefix, determined by the specific RM-xx-yyyy
1030 designation for a given instruction. The prefixing is arranged so that
1031 interoperability between prefixing and nonprefixing of scalar registers
1032 is direct and convenient (when the EXTRA field is all zeros).
1033
1034 A pseudocode algorithm explains the relationship, for INT/FP (see
1035 [[svp64/appendix]] for CRs)
1036
1037 ```
1038 if extra3_mode:
1039 spec = EXTRA3
1040 else:
1041 spec = EXTRA2 << 1 # same as EXTRA3, shifted
1042 if spec[0]: # vector
1043 return (RA << 2) | spec[1:2]
1044 else: # scalar
1045 return (spec[1:2] << 5) | RA
1046 ```
1047
1048 Future versions may extend to 256 by shifting Vector numbering up.
1049 Scalar will not be altered.
1050
1051 Note that in some cases the range of starting points for Vectors
1052 is limited.
1053
1054 ### INT/FP EXTRA3
1055
1056 If EXTRA3 is zero, maps to "scalar identity" (scalar Power ISA field
1057 naming).
1058
1059 Fields are as follows:
1060
1061 * Value: R_EXTRA3
1062 * Mode: register is tagged as scalar or vector
1063 * Range/Inc: the range of registers accessible from this EXTRA
1064 encoding, and the "increment" (accessibility). "/4" means
1065 that this EXTRA encoding may only give access (starting point)
1066 every 4th register.
1067 * MSB..LSB: the bit field showing how the register opcode field
1068 combines with EXTRA to give (extend) the register number (GPR)
1069
1070 Encoding shown in LSB0: MSB down to LSB (MSB 6..0 LSB)
1071
1072 | Value | Mode | Range/Inc | 6..0 |
1073 |-----------|-------|---------------|---------------------|
1074 | 000 | Scalar | `r0-r31`/1 | `0b00 RA` |
1075 | 001 | Scalar | `r32-r63`/1 | `0b01 RA` |
1076 | 010 | Scalar | `r64-r95`/1 | `0b10 RA` |
1077 | 011 | Scalar | `r96-r127`/1 | `0b11 RA` |
1078 | 100 | Vector | `r0-r124`/4 | `RA 0b00` |
1079 | 101 | Vector | `r1-r125`/4 | `RA 0b01` |
1080 | 110 | Vector | `r2-r126`/4 | `RA 0b10` |
1081 | 111 | Vector | `r3-r127`/4 | `RA 0b11` |
1082
1083 ### INT/FP EXTRA2
1084
1085 If EXTRA2 is zero will map to "scalar identity behaviour" i.e Scalar
1086 Power ISA register naming:
1087
1088 Encoding shown in LSB0: MSB down to LSB (MSB 6..0 LSB)
1089
1090 | Value | Mode | Range/inc | 6..0 |
1091 |----------|-------|---------------|-----------|
1092 | 00 | Scalar | `r0-r31`/1 | `0b00 RA` |
1093 | 01 | Scalar | `r32-r63`/1 | `0b01 RA` |
1094 | 10 | Vector | `r0-r124`/4 | `RA 0b00` |
1095 | 11 | Vector | `r2-r126`/4 | `RA 0b10` |
1096
1097 **Note that unlike in EXTRA3, in EXTRA2**:
1098
1099 * the GPR Vectors may only start from
1100 `r0, r2, r4, r6, r8` and likewise FPR Vectors.
1101 * the GPR Scalars may only go from `r0, r1, r2.. r63` and likewise FPR Scalars.
1102
1103 as there is insufficient bits to cover the full range.
1104
1105 ### CR Field EXTRA3
1106
1107 CR Field encoding is essentially the same but made more complex due to CRs
1108 being bit-based, because the application of SVP64 element-numbering applies
1109 to the CR *Field* numbering not the CR register *bit* numbering.
1110 Note that Vectors may only start from `CR0, CR4, CR8, CR12, CR16, CR20`...
1111 and Scalars may only go from `CR0, CR1, ... CR31`
1112
1113 Encoding shown in LSB0: MSB down to LSB (MSB 8..5 4..2 1..0 LSB),
1114 BA ranges are in MSB0.
1115
1116 For a 5-bit operand (BA, BB, BT):
1117
1118 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
1119 |-------|------|---------------|-----------| --------|---------|
1120 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[0:2] | BA[3:4] |
1121 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[0:2] | BA[3:4] |
1122 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BA[0:2] | BA[3:4] |
1123 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BA[0:2] | BA[3:4] |
1124 | 100 | Vector | `CR0-CR112`/16 | BA[0:2] 0 | 0b000 | BA[3:4] |
1125 | 101 | Vector | `CR4-CR116`/16 | BA[0:2] 0 | 0b100 | BA[3:4] |
1126 | 110 | Vector | `CR8-CR120`/16 | BA[0:2] 1 | 0b000 | BA[3:4] |
1127 | 111 | Vector | `CR12-CR124`/16 | BA[0:2] 1 | 0b100 | BA[3:4] |
1128
1129 For a 3-bit operand (e.g. BFA):
1130
1131 | Value | Mode | Range/Inc | 6..3 | 2..0 |
1132 |-------|------|---------------|-----------| --------|
1133 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BFA |
1134 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BFA |
1135 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BFA |
1136 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BFA |
1137 | 100 | Vector | `CR0-CR112`/16 | BFA 0 | 0b000 |
1138 | 101 | Vector | `CR4-CR116`/16 | BFA 0 | 0b100 |
1139 | 110 | Vector | `CR8-CR120`/16 | BFA 1 | 0b000 |
1140 | 111 | Vector | `CR12-CR124`/16 | BFA 1 | 0b100 |
1141
1142 ### CR EXTRA2
1143
1144 CR encoding is essentially the same but made more complex due to CRs
1145 being bit-based, because the application of SVP64 element-numbering applies
1146 to the CR *Field* numbering not the CR register *bit* numbering.
1147 Note that Vectors may only start from CR0, CR8, CR16, CR24, CR32...
1148
1149 Encoding shown in LSB0: MSB down to LSB (MSB 8..5 4..2 1..0 LSB),
1150 BA ranges are in MSB0.
1151
1152 For a 5-bit operand (BA, BB, BC):
1153
1154 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
1155 |-------|--------|----------------|---------|---------|---------|
1156 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[0:2] | BA[3:4] |
1157 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[0:2] | BA[3:4] |
1158 | 10 | Vector | `CR0-CR112`/16 | BA[0:2] 0 | 0b000 | BA[3:4] |
1159 | 11 | Vector | `CR8-CR120`/16 | BA[0:2] 1 | 0b000 | BA[3:4] |
1160
1161 For a 3-bit operand (e.g. BFA):
1162
1163 | Value | Mode | Range/Inc | 6..3 | 2..0 |
1164 |-------|------|---------------|-----------| --------|
1165 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BFA |
1166 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BFA |
1167 | 10 | Vector | `CR0-CR112`/16 | BFA 0 | 0b000 |
1168 | 11 | Vector | `CR8-CR120`/16 | BFA 1 | 0b000 |
1169
1170 ## Appendix
1171
1172 Now at its own page: [[svp64/appendix]]
1173
1174 --------
1175
1176 [[!tag standards]]
1177
1178 \newpage{}