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