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