(no commit message)
[libreriscv.git] / openpower / sv / rfc / ls010.mdwn
1 # RFC ls009 SVP64 Zero-Overhead Loop Prefix Subsystem
2
3 Credits and acknowledgements:
4
5 * Luke Leighton
6 * Jacob Lifshay
7 * Hendrik Boom
8 * Richard Wilbur
9 * Alexandre Oliva
10 * Cesar Strauss
11 * NLnet Foundation, for funding
12 * OpenPOWER Foundation
13 * Paul Mackerras
14 * Toshaan Bharvani
15 * IBM for the Power ISA itself
16
17 Links:
18
19 * <https://bugs.libre-soc.org/show_bug.cgi?id=1045>
20
21 # Introduction
22
23 Simple-V is a type of Vectorisation best described as a "Prefix Loop Subsystem"
24 similar to the Z80 `LDIR` instruction and to the x86 `REP` Prefix instruction.
25 More advanced features are similar to the Z80 `CPIR` instruction. If viewed
26 as an actual Vector ISA it introduces over 1.5 million 64-bit Vector instructions.
27 SVP64, the instruction format, is therefore best viewed as an orthogonal
28 RISC-style "Prefixing" subsystem instead.
29
30 Except where explicitly stated all bit numbers remain as in the rest of the Power ISA:
31 in MSB0 form (the bits are numbered from 0 at the MSB on the left
32 and counting up as you move rightwards to the LSB end). All bit ranges are inclusive
33 (so `4:6` means bits 4, 5, and 6, in MSB0 order). **All register numbering and
34 element numbering however is LSB0 ordering** which is a different convention from that used
35 elsewhere in the Power ISA.
36
37 The SVP64 prefix always comes before the suffix in PC order and must be considered
38 an independent "Defined word" that augments the behaviour of the following instruction,
39 but does **not** change the actual Decoding of that following instruction.
40 **All prefixed instructions retain their non-prefixed encoding and definition**.
41
42 *Architectural Resource Allocation note: it is prohibited to accept RFCs which
43 fundamentally violate this hard requirement. Under no circumstances must the
44 Suffix space have an alternate instruction encoding allocated within SVP64 that is
45 entirely different from the non-prefixed Defined Word. Hardware Implementors
46 critically rely on this inviolate guarantee to implement High-Performance Multi-Issue
47 micro-architectures that can sustain 100% throughput*
48
49 | 0:5 | 6:31 | 32:63 |
50 |--------|--------------|--------------|
51 | EXT09 | v3.1 Prefix | v3.0/1 Suffix |
52
53 Subset implementations in hardware are permitted, as long as certain
54 rules are followed, allowing for full soft-emulation including future
55 revisions. Compliancy Subsets exist to ensure minimum levels of binary
56 interoperability expectations within certain environments.
57
58 ## Register files, elements, and Element-width Overrides
59
60 In the Upper Compliancy Levels the size of the GPR and FPR Register files are expanded
61 from 32 to 128 entries, and the number of CR Fields expanded from CR0-CR7 to CR0-CR127.
62
63 Memory access remains exactly the same: the effects of `MSR.LE` remain exactly the same,
64 affecting as they already do and remain **only** on the Load and Store memory-register
65 operation byte-order, and having nothing to do with the
66 ordering of the contents of register files or register-register operations.
67
68 Whilst the bits within the GPRs and FPRs are expected to be MSB0-ordered and for
69 numbering to be sequentially incremental the element offset numbering is naturally
70 **LSB0-sequentially-incrementing from zero not MSB0-incrementing.** Expressed exclusively in
71 MSB0-numbering, SVP64 is unnecessarily complex to understand: the required
72 subtractions from 63, 31, 15 and 7 unfortunately become a hostile minefield.
73 Therefore for the purposes of this section the more natural
74 **LSB0 numbering is assumed** and it is up to the reader to translate to MSB0 numbering.
75
76 The Canonical specification for how element-sequential numbering and element-width
77 overrides is defined is expressed in the following c structure, assuming a Little-Endian
78 system, and naturally using LSB0 numbering everywhere because the ANSI c specification
79 is inherently LSB0:
80
81 ```
82 #pragma pack
83 typedef union {
84 uint8_t b[]; // elwidth 8
85 uint16_t s[]; // elwidth 16
86 uint32_t i[]; // elwidth 32
87 uint64_t l[]; // elwidth 64
88 uint8_t actual_bytes[8];
89 } el_reg_t;
90
91 elreg_t int_regfile[128];
92
93 void get_register_element(el_reg_t* el, int gpr, int element, int width) {
94 switch (width) {
95 case 64: el->l = int_regfile[gpr].l[element];
96 case 32: el->i = int_regfile[gpr].i[element];
97 case 16: el->s = int_regfile[gpr].s[element];
98 case 8 : el->b = int_regfile[gpr].b[element];
99 }
100 }
101 void set_register_element(el_reg_t* el, int gpr, int element, int width) {
102 switch (width) {
103 case 64: int_regfile[gpr].l[element] = el->l;
104 case 32: int_regfile[gpr].i[element] = el->i;
105 case 16: int_regfile[gpr].s[element] = el->s;
106 case 8 : int_regfile[gpr].b[element] = el->b;
107 }
108 }
109 ```
110
111 Example Vector-looped add operation implementation when elwidths are 64-bit:
112
113 ```
114 # add RT, RA,RB using the "uint64_t" union member, "l"
115 for i in range(VL):
116 int_regfile[RT].l[i] = int_regfile[RA].l[i] + int_regfile[RB].l[i]
117 ```
118
119 However if elwidth overrides are set to 16 for both source and destination:
120
121 ```
122 # add RT, RA, RB using the "uint64_t" union member "s"
123 for i in range(VL):
124 int_regfile[RT].s[i] = int_regfile[RA].s[i] + int_regfile[RB].s[i]
125 ```
126
127 Hardware Architectural note: to avoid a Read-Modify-Write at the register file it is
128 strongly recommended to implement byte-level write-enable lines exactly as has been
129 implemented in DRAM ICs for many decades. Additionally the predicate mask bit is advised
130 to be associated with the element operation and alongside the result ultimately
131 passed to the register file.
132 When element-width is set to 64-bit the relevant predicate mask bit may be repeated
133 eight times and pull all eight write-port byte-level lines HIGH. Clearly when element-width
134 is set to 8-bit the relevant predicate mask bit corresponds directly with one single
135 byte-level write-enable line. It is up to the Hardware Architect to then amortise (merge)
136 elements together into both PredicatedSIMD Pipelines as well as simultaneous non-overlapping
137 Register File writes, to achieve High Performance designs.
138
139 ## SVP64 encoding features
140
141 A number of features need to be compacted into a very small space of only 24 bits:
142
143 * Independent per-register Scalar/Vector tagging and range extension on every register
144 * Element width overrides on both source and destination
145 * Predication on both source and destination
146 * Two different sources of predication: INT and CR Fields
147 * SV Modes including saturation (for Audio, Video and DSP), mapreduce, fail-first and
148 predicate-result mode.
149
150 Different classes of operations require different formats. The earlier sections cover
151 the c9mmon formats and the four separate modes follow: CR operations (crops),
152 Arithmetic/Logical (termed "normal"), Load/Store and Branch-Conditional.
153
154 ## Definition of Reserved in this spec.
155
156 For the new fields added in SVP64, instructions that have any of their
157 fields set to a reserved value must cause an illegal instruction trap,
158 to allow emulation of future instruction sets, or for subsets of SVP64
159 to be implemented in hardware and the rest emulated.
160 This includes SVP64 SPRs: reading or writing values which are not
161 supported in hardware must also raise illegal instruction traps
162 in order to allow emulation.
163 Unless otherwise stated, reserved values are always all zeros.
164
165 This is unlike OpenPower ISA v3.1, which in many instances does not require a trap if reserved fields are nonzero. Where the standard Power ISA definition
166 is intended the red keyword `RESERVED` is used.
167
168 ## Definition of "UnVectoriseable"
169
170 Any operation that inherently makes no sense if repeated is termed "UnVectoriseable"
171 or "UnVectorised". Examples include `sc` or `sync` which have no registers. `mtmsr` is
172 also classed as UnVectoriseable because there is only one `MSR`.
173
174 ## Scalar Identity Behaviour
175
176 SVP64 is designed so that when the prefix is all zeros, and
177 VL=1, no effect or
178 influence occurs (no augmentation) such that all standard Power ISA
179 v3.0/v3 1 instructions covered by the prefix are "unaltered". This is termed `scalar identity behaviour` (based on the mathematical definition for "identity", as in, "identity matrix" or better "identity transformation").
180
181 Note that this is completely different from when VL=0. VL=0 turns all operations under its influence into `nops` (regardless of the prefix)
182 whereas when VL=1 and the SV prefix is all zeros, the operation simply acts as if SV had not been applied at all to the instruction (an "identity transformation").
183
184 ## Register Naming and size
185
186 As previously mentioned SV Registers are simply the INT, FP and CR register files extended
187 linearly to larger sizes; SV Vectorisation iterates sequentially through these registers
188 (LSB0 sequential ordering from 0 to VL-1).
189
190 Where the integer regfile in standard scalar
191 Power ISA v3.0B/v3.1B is r0 to r31, SV extends this as r0 to r127.
192 Likewise FP registers are extended to 128 (fp0 to fp127), and CR Fields
193 are
194 extended to 128 entries, CR0 thru CR127.
195
196 The names of the registers therefore reflects a simple linear extension
197 of the Power ISA v3.0B / v3.1B register naming, and in hardware this
198 would be reflected by a linear increase in the size of the underlying
199 SRAM used for the regfiles.
200
201 Note: when an EXTRA field (defined below) is zero, SV is deliberately designed
202 so that the register fields are identical to as if SV was not in effect
203 i.e. under these circumstances (EXTRA=0) the register field names RA,
204 RB etc. are interpreted and treated as v3.0B / v3.1B scalar registers. This is part of
205 `scalar identity behaviour` described above.
206
207 ## Future expansion.
208
209 With the way that EXTRA fields are defined and applied to register fields,
210 future versions of SV may involve 256 or greater registers. Backwards binary compatibility may be achieved with a PCR bit (Program Compatibility Register). Further discussion is out of scope for this version of SVP64.
211
212 # Remapped Encoding (`RM[0:23]`)
213
214 To allow relatively easy remapping of which portions of the Prefix Opcode
215 Map are used for SVP64 without needing to rewrite a large portion of the
216 SVP64 spec, a mapping is defined from the OpenPower v3.1 prefix bits to
217 a new 24-bit Remapped Encoding denoted `RM[0]` at the MSB to `RM[23]`
218 at the LSB.
219
220 The mapping from the OpenPower v3.1 prefix bits to the Remapped Encoding
221 is defined in the Prefix Fields section.
222
223 ## Prefix Fields
224
225 TODO incorporate EXT09
226
227 To "activate" svp64 (in a way that does not conflict with v3.1B 64 bit Prefix mode), fields within the v3.1B Prefix Opcode Map are set
228 (see Prefix Opcode Map, above), leaving 24 bits "free" for use by SV.
229 This is achieved by setting bits 7 and 9 to 1:
230
231 | Name | Bits | Value | Description |
232 |------------|---------|-------|--------------------------------|
233 | EXT01 | `0:5` | `1` | Indicates Prefixed 64-bit |
234 | `RM[0]` | `6` | | Bit 0 of Remapped Encoding |
235 | SVP64_7 | `7` | `1` | Indicates this is SVP64 |
236 | `RM[1]` | `8` | | Bit 1 of Remapped Encoding |
237 | SVP64_9 | `9` | `1` | Indicates this is SVP64 |
238 | `RM[2:23]` | `10:31` | | Bits 2-23 of Remapped Encoding |
239
240 Laid out bitwise, this is as follows, showing how the 32-bits of the prefix
241 are constructed:
242
243 | 0:5 | 6 | 7 | 8 | 9 | 10:31 |
244 |--------|-------|---|-------|---|----------|
245 | EXT01 | RM | 1 | RM | 1 | RM |
246 | 000001 | RM[0] | 1 | RM[1] | 1 | RM[2:23] |
247
248 Following the prefix will be the suffix: this is simply a 32-bit v3.0B / v3.1
249 instruction. That instruction becomes "prefixed" with the SVP context: the
250 Remapped Encoding field (RM).
251
252 It is important to note that unlike v3.1 64-bit prefixed instructions
253 there is insufficient space in `RM` to provide identification of
254 any SVP64 Fields without first partially decoding the
255 32-bit suffix. Similar to the "Forms" (X-Form, D-Form) the
256 `RM` format is individually associated with every instruction.
257
258 Extreme caution and care must therefore be taken
259 when extending SVP64 in future, to not create unnecessary relationships
260 between prefix and suffix that could complicate decoding, adding latency.
261
262 # Common RM fields
263
264 The following fields are common to all Remapped Encodings:
265
266 | Field Name | Field bits | Description |
267 |------------|------------|----------------------------------------|
268 | MASKMODE | `0` | Execution (predication) Mask Kind |
269 | MASK | `1:3` | Execution Mask |
270 | SUBVL | `8:9` | Sub-vector length |
271
272 The following fields are optional or encoded differently depending
273 on context after decoding of the Scalar suffix:
274
275 | Field Name | Field bits | Description |
276 |------------|------------|----------------------------------------|
277 | ELWIDTH | `4:5` | Element Width |
278 | ELWIDTH_SRC | `6:7` | Element Width for Source |
279 | EXTRA | `10:18` | Register Extra encoding |
280 | MODE | `19:23` | changes Vector behaviour |
281
282 * MODE changes the behaviour of the SV operation (result saturation, mapreduce)
283 * SUBVL groups elements together into vec2, vec3, vec4 for use in 3D and Audio/Video DSP work
284 * ELWIDTH and ELWIDTH_SRC overrides the instruction's destination and source operand width
285 * MASK (and MASK_SRC) and MASKMODE provide predication (two types of sources: scalar INT and Vector CR).
286 * Bits 10 to 18 (EXTRA) are further decoded depending on the RM category for the instruction, which is determined only by decoding the Scalar 32 bit suffix.
287
288 Similar to Power ISA `X-Form` etc. EXTRA bits are given designations, such as `RM-1P-3S1D` which indicates for this example that the operation is to be single-predicated and that there are 3 source operand EXTRA tags and one destination operand tag.
289
290 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance or increased latency in some implementations due to lane-crossing.
291
292 # Mode
293
294 Mode is an augmentation of SV behaviour. Different types of
295 instructions have different needs, similar to Power ISA
296 v3.1 64 bit prefix 8LS and MTRR formats apply to different
297 instruction types. Modes include Reduction, Iteration, arithmetic
298 saturation, and Fail-First. More specific details in each
299 section and in the [[svp64/appendix]]
300
301 * For condition register operations see [[sv/cr_ops]]
302 * For LD/ST Modes, see [[sv/ldst]].
303 * For Branch modes, see [[sv/branches]]
304 * For arithmetic and logical, see [[sv/normal]]
305
306 # ELWIDTH Encoding
307
308 Default behaviour is set to 0b00 so that zeros follow the convention of
309 `scalar identity behaviour`. In this case it means that elwidth overrides
310 are not applicable. Thus if a 32 bit instruction operates on 32 bit,
311 `elwidth=0b00` specifies that this behaviour is unmodified. Likewise
312 when a processor is switched from 64 bit to 32 bit mode, `elwidth=0b00`
313 states that, again, the behaviour is not to be modified.
314
315 Only when elwidth is nonzero is the element width overridden to the
316 explicitly required value.
317
318 ## Elwidth for Integers:
319
320 | Value | Mnemonic | Description |
321 |-------|----------------|------------------------------------|
322 | 00 | DEFAULT | default behaviour for operation |
323 | 01 | `ELWIDTH=w` | Word: 32-bit integer |
324 | 10 | `ELWIDTH=h` | Halfword: 16-bit integer |
325 | 11 | `ELWIDTH=b` | Byte: 8-bit integer |
326
327 This encoding is chosen such that the byte width may be computed as
328 `8<<(3-ew)`
329
330 ## Elwidth for FP Registers:
331
332 | Value | Mnemonic | Description |
333 |-------|----------------|------------------------------------|
334 | 00 | DEFAULT | default behaviour for FP operation |
335 | 01 | `ELWIDTH=f32` | 32-bit IEEE 754 Single floating-point |
336 | 10 | `ELWIDTH=f16` | 16-bit IEEE 754 Half floating-point |
337 | 11 | `ELWIDTH=bf16` | Reserved for `bf16` |
338
339 Note:
340 [`bf16`](https://en.wikipedia.org/wiki/Bfloat16_floating-point_format)
341 is reserved for a future implementation of SV
342
343 Note that any IEEE754 FP operation in Power ISA ending in "s" (`fadds`) shall
344 perform its operation at **half** the ELWIDTH then padded back out
345 to ELWIDTH. `sv.fadds/ew=f32` shall perform an IEEE754 FP16 operation that is then "padded" to fill out to an IEEE754 FP32. When ELWIDTH=DEFAULT
346 clearly the behaviour of `sv.fadds` is performed at 32-bit accuracy
347 then padded back out to fit in IEEE754 FP64, exactly as for Scalar
348 v3.0B "single" FP. Any FP operation ending in "s" where ELWIDTH=f16
349 or ELWIDTH=bf16 is reserved and must raise an illegal instruction
350 (IEEE754 FP8 or BF8 are not defined).
351
352 ## Elwidth for CRs:
353
354 Element-width overrides for CR Fields has no meaning. The bits
355 are therefore used for other purposes, or when Rc=1, the Elwidth
356 applies to the result being tested (a GPR or FPR), but not to the
357 Vector of CR Fields.
358
359 # SUBVL Encoding
360
361 the default for SUBVL is 1 and its encoding is 0b00 to indicate that
362 SUBVL is effectively disabled (a SUBVL for-loop of only one element). this
363 lines up in combination with all other "default is all zeros" behaviour.
364
365 | Value | Mnemonic | Subvec | Description |
366 |-------|-----------|---------|------------------------|
367 | 00 | `SUBVL=1` | single | Sub-vector length of 1 |
368 | 01 | `SUBVL=2` | vec2 | Sub-vector length of 2 |
369 | 10 | `SUBVL=3` | vec3 | Sub-vector length of 3 |
370 | 11 | `SUBVL=4` | vec4 | Sub-vector length of 4 |
371
372 The SUBVL encoding value may be thought of as an inclusive range of a
373 sub-vector. SUBVL=2 represents a vec2, its encoding is 0b01, therefore
374 this may be considered to be elements 0b00 to 0b01 inclusive.
375
376 # MASK/MASK_SRC & MASKMODE Encoding
377
378 TODO: rename MASK_KIND to MASKMODE
379
380 One bit (`MASKMODE`) indicates the mode: CR or Int predication. The two
381 types may not be mixed.
382
383 Special note: to disable predication this field must
384 be set to zero in combination with Integer Predication also being set
385 to 0b000. this has the effect of enabling "all 1s" in the predicate
386 mask, which is equivalent to "not having any predication at all"
387 and consequently, in combination with all other default zeros, fully
388 disables SV (`scalar identity behaviour`).
389
390 `MASKMODE` may be set to one of 2 values:
391
392 | Value | Description |
393 |-----------|------------------------------------------------------|
394 | 0 | MASK/MASK_SRC are encoded using Integer Predication |
395 | 1 | MASK/MASK_SRC are encoded using CR-based Predication |
396
397 Integer Twin predication has a second set of 3 bits that uses the same
398 encoding thus allowing either the same register (r3, r10 or r31) to be used
399 for both src and dest, or different regs (one for src, one for dest).
400
401 Likewise CR based twin predication has a second set of 3 bits, allowing
402 a different test to be applied.
403
404 Note that it is assumed that Predicate Masks (whether INT or CR)
405 are read *before* the operations proceed. In practice (for CR Fields)
406 this creates an unnecessary block on parallelism. Therefore,
407 it is up to the programmer to ensure that the CR fields used as
408 Predicate Masks are not being written to by any parallel Vector Loop.
409 Doing so results in **UNDEFINED** behaviour, according to the definition
410 outlined in the Power ISA v3.0B Specification.
411
412 Hardware Implementations are therefore free and clear to delay reading
413 of individual CR fields until the actual predicated element operation
414 needs to take place, safe in the knowledge that no programmer will
415 have issued a Vector Instruction where previous elements could have
416 overwritten (destroyed) not-yet-executed CR-Predicated element operations.
417
418 ## Integer Predication (MASKMODE=0)
419
420 When the predicate mode bit is zero the 3 bits are interpreted as below.
421 Twin predication has an identical 3 bit field similarly encoded.
422
423 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the following meaning:
424
425 | Value | Mnemonic | Element `i` enabled if: |
426 |-------|----------|------------------------------|
427 | 000 | ALWAYS | predicate effectively all 1s |
428 | 001 | 1 << R3 | `i == R3` |
429 | 010 | R3 | `R3 & (1 << i)` is non-zero |
430 | 011 | ~R3 | `R3 & (1 << i)` is zero |
431 | 100 | R10 | `R10 & (1 << i)` is non-zero |
432 | 101 | ~R10 | `R10 & (1 << i)` is zero |
433 | 110 | R30 | `R30 & (1 << i)` is non-zero |
434 | 111 | ~R30 | `R30 & (1 << i)` is zero |
435
436 r10 and r30 are at the high end of temporary and unused registers, so as not to interfere with register allocation from ABIs.
437
438 ## CR-based Predication (MASKMODE=1)
439
440 When the predicate mode bit is one the 3 bits are interpreted as below.
441 Twin predication has an identical 3 bit field similarly encoded.
442
443 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the following meaning:
444
445 | Value | Mnemonic | Element `i` is enabled if |
446 |-------|----------|--------------------------|
447 | 000 | lt | `CR[offs+i].LT` is set |
448 | 001 | nl/ge | `CR[offs+i].LT` is clear |
449 | 010 | gt | `CR[offs+i].GT` is set |
450 | 011 | ng/le | `CR[offs+i].GT` is clear |
451 | 100 | eq | `CR[offs+i].EQ` is set |
452 | 101 | ne | `CR[offs+i].EQ` is clear |
453 | 110 | so/un | `CR[offs+i].FU` is set |
454 | 111 | ns/nu | `CR[offs+i].FU` is clear |
455
456 CR based predication. TODO: select alternate CR for twin predication? see
457 [[discussion]] Overlap of the two CR based predicates must be taken
458 into account, so the starting point for one of them must be suitably
459 high, or accept that for twin predication VL must not exceed the range
460 where overlap will occur, *or* that they use the same starting point
461 but select different *bits* of the same CRs
462
463 `offs` is defined as CR32 (4x8) so as to mesh cleanly with Vectorised Rc=1 operations (see below). Rc=1 operations start from CR8 (TBD).
464
465 The CR Predicates chosen must start on a boundary that Vectorised
466 CR operations can access cleanly, in full.
467 With EXTRA2 restricting starting points
468 to multiples of 8 (CR0, CR8, CR16...) both Vectorised Rc=1 and CR Predicate
469 Masks have to be adapted to fit on these boundaries as well.
470
471 # Extra Remapped Encoding <a name="extra_remap"> </a>
472
473 Shows all instruction-specific fields in the Remapped Encoding `RM[10:18]` for all instruction variants. Note that due to the very tight space, the encoding mode is *not* included in the prefix itself. The mode is "applied", similar to Power ISA "Forms" (X-Form, D-Form) on a per-instruction basis, and, like "Forms" are given a designation (below) of the form `RM-nP-nSnD`. The full list of which instructions use which remaps is here [[opcode_regs_deduped]]. (*Machine-readable CSV files have been provided which will make the task of creating SV-aware ISA decoders easier*).
474
475 These mappings are part of the SVP64 Specification in exactly the same
476 way as X-Form, D-Form. New Scalar instructions added to the Power ISA
477 will need a corresponding SVP64 Mapping, which can be derived by-rote
478 from examining the Register "Profile" of the instruction.
479
480 There are two categories: Single and Twin Predication.
481 Due to space considerations further subdivision of Single Predication
482 is based on whether the number of src operands is 2 or 3. With only
483 9 bits available some compromises have to be made.
484
485 * `RM-1P-3S1D` Single Predication dest/src1/2/3, applies to 4-operand instructions (fmadd, isel, madd).
486 * `RM-1P-2S1D` Single Predication dest/src1/2 applies to 3-operand instructions (src1 src2 dest)
487 * `RM-2P-1S1D` Twin Predication (src=1, dest=1)
488 * `RM-2P-2S1D` Twin Predication (src=2, dest=1) primarily for LDST (Indexed)
489 * `RM-2P-1S2D` Twin Predication (src=1, dest=2) primarily for LDST Update
490
491 ## RM-1P-3S1D
492
493 | Field Name | Field bits | Description |
494 |------------|------------|----------------------------------------|
495 | Rdest\_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
496 | Rsrc1\_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
497 | Rsrc2\_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
498 | Rsrc3\_EXTRA2 | `16:17` | extends Rsrc3 (R\*\_EXTRA2 Encoding) |
499 | EXTRA2_MODE | `18` | used by `divmod2du` and `maddedu` for RS |
500
501 These are for 3 operand in and either 1 or 2 out instructions.
502 3-in 1-out includes `madd RT,RA,RB,RC`. (DRAFT) instructions
503 such as `maddedu` have an implicit second destination, RS, the
504 selection of which is determined by bit 18.
505
506 ## RM-1P-2S1D
507
508 | Field Name | Field bits | Description |
509 |------------|------------|-------------------------------------------|
510 | Rdest\_EXTRA3 | `10:12` | extends Rdest |
511 | Rsrc1\_EXTRA3 | `13:15` | extends Rsrc1 |
512 | Rsrc2\_EXTRA3 | `16:18` | extends Rsrc3 |
513
514 These are for 2 operand 1 dest instructions, such as `add RT, RA,
515 RB`. However also included are unusual instructions with an implicit dest
516 that is identical to its src reg, such as `rlwinmi`.
517
518 Normally, with instructions such as `rlwinmi`, the scalar v3.0B ISA would not have sufficient bit fields to allow
519 an alternative destination. With SV however this becomes possible.
520 Therefore, the fact that the dest is implicitly also a src should not
521 mislead: due to the *prefix* they are different SV regs.
522
523 * `rlwimi RA, RS, ...`
524 * Rsrc1_EXTRA3 applies to RS as the first src
525 * Rsrc2_EXTRA3 applies to RA as the secomd src
526 * Rdest_EXTRA3 applies to RA to create an **independent** dest.
527
528 With the addition of the EXTRA bits, the three registers
529 each may be *independently* made vector or scalar, and be independently
530 augmented to 7 bits in length.
531
532 ## RM-2P-1S1D/2S
533
534 | Field Name | Field bits | Description |
535 |------------|------------|----------------------------|
536 | Rdest_EXTRA3 | `10:12` | extends Rdest |
537 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
538 | MASK_SRC | `16:18` | Execution Mask for Source |
539
540 `RM-2P-2S` is for `stw` etc. and is Rsrc1 Rsrc2.
541
542 ## RM-1P-2S1D
543
544 single-predicate, three registers (2 read, 1 write)
545
546 | Field Name | Field bits | Description |
547 |------------|------------|----------------------------|
548 | Rdest_EXTRA3 | `10:12` | extends Rdest |
549 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
550 | Rsrc2_EXTRA3 | `16:18` | extends Rsrc2 |
551
552 ## RM-2P-2S1D/1S2D/3S
553
554 The primary purpose for this encoding is for Twin Predication on LOAD
555 and STORE operations. see [[sv/ldst]] for detailed anslysis.
556
557 RM-2P-2S1D:
558
559 | Field Name | Field bits | Description |
560 |------------|------------|----------------------------|
561 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
562 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
563 | Rsrc2_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
564 | MASK_SRC | `16:18` | Execution Mask for Source |
565
566 Note that for 1S2P the EXTRA2 dest and src names are switched (Rsrc_EXTRA2
567 is in bits 10:11, Rdest1_EXTRA2 in 12:13)
568
569 Also that for 3S (to cover `stdx` etc.) the names are switched to 3 src: Rsrc1_EXTRA2, Rsrc2_EXTRA2, Rsrc3_EXTRA2.
570
571 Note also that LD with update indexed, which takes 2 src and 2 dest
572 (e.g. `lhaux RT,RA,RB`), does not have room for 4 registers and also
573 Twin Predication. therefore these are treated as RM-2P-2S1D and the
574 src spec for RA is also used for the same RA as a dest.
575
576 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance or increased latency in some implementations due to lane-crossing.
577
578 # R\*\_EXTRA2/3
579
580 EXTRA is the means by which two things are achieved:
581
582 1. Registers are marked as either Vector *or Scalar*
583 2. Register field numbers (limited typically to 5 bit)
584 are extended in range, both for Scalar and Vector.
585
586 The register files are therefore extended:
587
588 * INT is extended from r0-31 to r0-127
589 * FP is extended from fp0-32 to fp0-fp127
590 * CR Fields are extended from CR0-7 to CR0-127
591
592 However due to pressure in `RM.EXTRA` not all these registers
593 are accessible by all instructions, particularly those with
594 a large number of operands (`madd`, `isel`).
595
596 In the following tables register numbers are constructed from the
597 standard v3.0B / v3.1B 32 bit register field (RA, FRA) and the EXTRA2
598 or EXTRA3 field from the SV Prefix, determined by the specific
599 RM-xx-yyyy designation for a given instruction.
600 The prefixing is arranged so that
601 interoperability between prefixing and nonprefixing of scalar registers
602 is direct and convenient (when the EXTRA field is all zeros).
603
604 A pseudocode algorithm explains the relationship, for INT/FP (see [[svp64/appendix]] for CRs)
605
606 ```
607 if extra3_mode:
608 spec = EXTRA3
609 else:
610 spec = EXTRA2 << 1 # same as EXTRA3, shifted
611 if spec[0]: # vector
612 return (RA << 2) | spec[1:2]
613 else: # scalar
614 return (spec[1:2] << 5) | RA
615 ```
616
617 Future versions may extend to 256 by shifting Vector numbering up.
618 Scalar will not be altered.
619
620 Note that in some cases the range of starting points for Vectors
621 is limited.
622
623 ## INT/FP EXTRA3
624
625 If EXTRA3 is zero, maps to
626 "scalar identity" (scalar Power ISA field naming).
627
628 Fields are as follows:
629
630 * Value: R_EXTRA3
631 * Mode: register is tagged as scalar or vector
632 * Range/Inc: the range of registers accessible from this EXTRA
633 encoding, and the "increment" (accessibility). "/4" means
634 that this EXTRA encoding may only give access (starting point)
635 every 4th register.
636 * MSB..LSB: the bit field showing how the register opcode field
637 combines with EXTRA to give (extend) the register number (GPR)
638
639 | Value | Mode | Range/Inc | 6..0 |
640 |-----------|-------|---------------|---------------------|
641 | 000 | Scalar | `r0-r31`/1 | `0b00 RA` |
642 | 001 | Scalar | `r32-r63`/1 | `0b01 RA` |
643 | 010 | Scalar | `r64-r95`/1 | `0b10 RA` |
644 | 011 | Scalar | `r96-r127`/1 | `0b11 RA` |
645 | 100 | Vector | `r0-r124`/4 | `RA 0b00` |
646 | 101 | Vector | `r1-r125`/4 | `RA 0b01` |
647 | 110 | Vector | `r2-r126`/4 | `RA 0b10` |
648 | 111 | Vector | `r3-r127`/4 | `RA 0b11` |
649
650 ## INT/FP EXTRA2
651
652 If EXTRA2 is zero will map to
653 "scalar identity behaviour" i.e Scalar Power ISA register naming:
654
655 | Value | Mode | Range/inc | 6..0 |
656 |-----------|-------|---------------|-----------|
657 | 00 | Scalar | `r0-r31`/1 | `0b00 RA` |
658 | 01 | Scalar | `r32-r63`/1 | `0b01 RA` |
659 | 10 | Vector | `r0-r124`/4 | `RA 0b00` |
660 | 11 | Vector | `r2-r126`/4 | `RA 0b10` |
661
662 **Note that unlike in EXTRA3, in EXTRA2**:
663
664 * the GPR Vectors may only start from
665 `r0, r2, r4, r6, r8` and likewise FPR Vectors.
666 * the GPR Scalars may only go from `r0, r1, r2.. r63` and likewise FPR Scalars.
667
668 as there is insufficient bits to cover the full range.
669
670 ## CR Field EXTRA3
671
672 CR Field encoding is essentially the same but made more complex due to CRs being bit-based. See [[svp64/appendix]] for explanation and pseudocode.
673 Note that Vectors may only start from `CR0, CR4, CR8, CR12, CR16, CR20`...
674 and Scalars may only go from `CR0, CR1, ... CR31`
675
676 Encoding shown MSB down to LSB
677
678 For a 5-bit operand (BA, BB, BT):
679
680 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
681 |-------|------|---------------|-----------| --------|---------|
682 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[4:2] | BA[1:0] |
683 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[4:2] | BA[1:0] |
684 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BA[4:2] | BA[1:0] |
685 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BA[4:2] | BA[1:0] |
686 | 100 | Vector | `CR0-CR112`/16 | BA[4:2] 0 | 0b000 | BA[1:0] |
687 | 101 | Vector | `CR4-CR116`/16 | BA[4:2] 0 | 0b100 | BA[1:0] |
688 | 110 | Vector | `CR8-CR120`/16 | BA[4:2] 1 | 0b000 | BA[1:0] |
689 | 111 | Vector | `CR12-CR124`/16 | BA[4:2] 1 | 0b100 | BA[1:0] |
690
691 For a 3-bit operand (e.g. BFA):
692
693 | Value | Mode | Range/Inc | 6..3 | 2..0 |
694 |-------|------|---------------|-----------| --------|
695 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BFA |
696 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BFA |
697 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BFA |
698 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BFA |
699 | 100 | Vector | `CR0-CR112`/16 | BFA 0 | 0b000 |
700 | 101 | Vector | `CR4-CR116`/16 | BFA 0 | 0b100 |
701 | 110 | Vector | `CR8-CR120`/16 | BFA 1 | 0b000 |
702 | 111 | Vector | `CR12-CR124`/16 | BFA 1 | 0b100 |
703
704 ## CR EXTRA2
705
706 CR encoding is essentially the same but made more complex due to CRs being bit-based. See separate section for explanation and pseudocode.
707 Note that Vectors may only start from CR0, CR8, CR16, CR24, CR32...
708
709
710 Encoding shown MSB down to LSB
711
712 For a 5-bit operand (BA, BB, BC):
713
714 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
715 |-------|--------|----------------|---------|---------|---------|
716 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[4:2] | BA[1:0] |
717 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[4:2] | BA[1:0] |
718 | 10 | Vector | `CR0-CR112`/16 | BA[4:2] 0 | 0b000 | BA[1:0] |
719 | 11 | Vector | `CR8-CR120`/16 | BA[4:2] 1 | 0b000 | BA[1:0] |
720
721 For a 3-bit operand (e.g. BFA):
722
723 | Value | Mode | Range/Inc | 6..3 | 2..0 |
724 |-------|------|---------------|-----------| --------|
725 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BFA |
726 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BFA |
727 | 10 | Vector | `CR0-CR112`/16 | BFA 0 | 0b000 |
728 | 11 | Vector | `CR8-CR120`/16 | BFA 1 | 0b000 |
729
730 # Appendix
731
732 Now at its own page: [[svp64/appendix]]
733