different mapreduce modes
[libreriscv.git] / openpower / sv / svp64.mdwn
1 [[!tag standards]]
2
3 # SVP64 for OpenPOWER ISA v3.0B
4
5 **DRAFT STATUS**
6
7 This document describes [[SV|sv]] augmentation of the [[OpenPOWER|openpower]] v3.0B [[ISA|openpower/isa/]]. Permission to create commercial v3.1B implementations has not yet been granted through the issuance of a v3.1B EULA by the [[!wikipedia OpenPOWER_Foundation]] (only v3.0B)
8
9 Links:
10
11 * <http://lists.libre-soc.org/pipermail/libre-soc-dev/2020-December/001498.html>>
12 * [[svp64/discussion]]
13 * [[svp64/appendix]]
14 * <http://lists.libre-soc.org/pipermail/libre-soc-dev/2020-December/001650.html>
15 * <https://bugs.libre-soc.org/show_bug.cgi?id=550>
16 * <https://bugs.libre-soc.org/show_bug.cgi?id=573> TODO elwidth "infinite" discussion
17 * <https://bugs.libre-soc.org/show_bug.cgi?id=574> Saturating description.
18
19 Table of contents
20
21 [[!toc]]
22
23 # Introduction
24
25 This document focuses on the encoding of [[SV|sv]], and assumes familiarity with the same. It does not cover how SV works (merely the instruction encoding), and is therefore best read in conjunction with the [[sv/overview]].
26
27 The plan is to create an encoding for SVP64, then to create an encoding
28 for SVP48, then to reorganize them both to improve field overlap,
29 reducing the amount of decoder hardware necessary.
30
31 All bit numbers are in MSB0 form (the bits are numbered from 0 at the MSB
32 and counting up as you move to the LSB end). All bit ranges are inclusive
33 (so `4:6` means bits 4, 5, and 6).
34
35 64-bit instructions are split into two 32-bit words, the prefix and the
36 suffix. The prefix always comes before the suffix in PC order.
37
38 | 0:5 | 6:31 | 0:31 |
39 |--------|--------------|--------------|
40 | EXT01 | v3.1 Prefix | v3.1 Suffix |
41
42 svp64 fits into the "reserved" portions of the v3.1 prefix, making it possible for svp64, v3.0B (or v3.1 including 64 bit prefixed) instructions to co-exist in the same binary without conflict.
43
44 ## SVP64 encoding features
45
46 A number of features need to be compacted into a very small space of only 24 bits:
47
48 * Independent per-register Scalar/Vector tagging and range extension on every register
49 * Element width overrides on both source and destination
50 * Predication on both source and destination
51 * Two different *types* of predication: INT and CR
52 * SV Modes including saturation (for A/V DSP), mapreduce, fail-first and
53 predicate-result mode.
54
55 This document focusses specifically on how that fits into available space. The [[svp64/appendix]] explains more of the details, whilst the [[sv/overview]] gives the basics.
56
57 # Definition of Reserved in this spec.
58
59 For the new fields added in SVP64, instructions that have any of their
60 fields set to a reserved value must cause an illegal instruction trap,
61 to allow emulation of future instruction sets. Unless otherwise stated, reserved values are always all zeros.
62
63 This is unlike OpenPower ISA v3.1, which in many instances does not require a trap if reserved fields are nonzero.
64
65 # Identity Behaviour
66
67 SVP64 is designed so that when the prefix is all zeros, and
68 VL=1, no effect or
69 influence occurs (no augmentation) such that all standard OpenPOWER
70 v3.0/1B 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").
71
72 Note that this is completely different from when VL=0. VL=0 turns all operations under its influence into `nops` (regardless of the prefix)
73 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 operation").
74
75 The significance of identity behaviour is that instructions added under svp64 to the 32 bit suffix are not only accessible to svp64: as long as implementors conform to identity behaviour (set the prefix to all zeros) they may use the instructions without needing to actually implement SV itself.
76
77 # Register Naming and size
78
79 SV Registers are simply the INT, FP and CR register files extended
80 linearly to larger sizes; SV Vectorisation iterates sequentially through these registers.
81
82 Where the integer regfile in standard scalar
83 OpenPOWER v3.0B/v3.1B is r0 to r31, SV extends this as r0 to r127.
84 Likewise FP registers are extended to 128 (fp0 to fp127), and CRs are
85 extended to 128 entries, CR0 thru CR127.
86
87 The names of the registers therefore reflects a simple linear extension
88 of the OpenPOWER v3.0B / v3.1B register naming, and in hardware this
89 would be reflected by a linear increase in the size of the underlying
90 SRAM used for the regfiles.
91
92 Note: when an EXTRA field (defined below) is zero, SV is deliberately designed
93 so that the register fields are identical to as if SV was not in effect
94 i.e. under these circumstances (EXTRA=0) the register field names RA,
95 RB etc. are interpreted and treated as v3.0B / v3.1B scalar registers. This is part of
96 `scalar identity behaviour` described above.
97
98 ## Future expansion.
99
100 With the way that EXTRA fields are defined and applied to register fields,
101 future versions of SV may involve 256 or greater registers. To accommodate 256 registers, numbering of Vectors will simply shift up by one bit, without
102 requiring additional prefix bits. Backwards binary compatibility may be achieved with a PCR bit (Program Compatibility Register). Beyond this, further discussion is out of scope for this version of svp64.
103
104 # Remapped Encoding (`RM[0:23]`)
105
106 To allow relatively easy remapping of which portions of the Prefix Opcode
107 Map are used for SVP64 without needing to rewrite a large portion of the
108 SVP64 spec, a mapping is defined from the OpenPower v3.1 prefix bits to
109 a new 24-bit Remapped Encoding denoted `RM[0]` at the MSB to `RM[23]`
110 at the LSB.
111
112 The mapping from the OpenPower v3.1 prefix bits to the Remapped Encoding
113 is defined in the Prefix Fields section.
114
115 ## Prefix Opcode Map (64-bit instruction encoding)
116
117 In the original table in the v3.1B OpenPOWER ISA Spec on p1350, Table 12, prefix bits 6:11 are shown, with their allocations to different v3.1B pregix "modes".
118
119 The table below hows both PowerISA v3.1 instructions as well as new SVP instructions fit;
120 empty spaces are yet-to-be-allocated Illegal Instructions.
121
122 | 6:11 | ---000 | ---001 | ---010 | ---011 | ---100 | ---101 | ---110 | ---111 |
123 |------|--------|--------|--------|--------|--------|--------|--------|--------|
124 |000---| 8LS | 8LS | 8LS | 8LS | 8LS | 8LS | 8LS | 8LS |
125 |001---| | | | | | | | |
126 |010---| 8RR | | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
127 |011---| | | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
128 |100---| MLS | MLS | MLS | MLS | MLS | MLS | MLS | MLS |
129 |101---| | | | | | | | |
130 |110---| MRR | | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
131 |111---| | MMIRR | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
132
133 Note that by taking up a block of 16, where in every case bits 7 and 9 are set, this allows svp64 to utilise four bits of the v3.1B Prefix space and "allocate" them to svp64's Remapped Encoding field, instead.
134
135 ## Prefix Fields
136
137 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
138 (see Prefix Opcode Map, above), leaving 24 bits "free" for use by SV.
139 This is achieved by setting bits 7 and 9 to 1:
140
141 | Name | Bits | Value | Description |
142 |------------|---------|-------|--------------------------------|
143 | EXT01 | `0:5` | `1` | Indicates Prefixed 64-bit |
144 | `RM[0]` | `6` | | Bit 0 of Remapped Encoding |
145 | SVP64_7 | `7` | `1` | Indicates this is SVP64 |
146 | `RM[1]` | `8` | | Bit 1 of Remapped Encoding |
147 | SVP64_9 | `9` | `1` | Indicates this is SVP64 |
148 | `RM[2:23]` | `10:31` | | Bits 2-23 of Remapped Encoding |
149
150 Laid out bitwise, this is as follows, showing how the 32-bits of the prefix
151 are constructed:
152
153 | 0:5 | 6 | 7 | 8 | 9 | 10:31 |
154 |--------|-------|---|-------|---|----------|
155 | EXT01 | RM | 1 | RM | 1 | RM |
156 | 000001 | RM[0] | 1 | RM[1] | 1 | RM[2:23] |
157
158 Following the prefix will be the suffix: this is simply a 32-bit v3.0B / v3.1B
159 instruction. That instruction becomes "prefixed" with the SVP context: the
160 Remapped Encoding field (RM).
161
162 # Common RM fields
163
164 The following fields are common to all Remapped Encodings:
165
166 | Field Name | Field bits | Description |
167 |------------|------------|----------------------------------------|
168 | MASKMODE | `0` | Execution (predication) Mask Kind |
169 | MASK | `1:3` | Execution Mask |
170 | ELWIDTH | `4:5` | Element Width |
171 | ELWIDTH_SRC | `6:7` | Element Width for Source |
172 | SUBVL | `8:9` | Sub-vector length |
173 | MODE | `19:23` | changes Vector behaviour |
174
175 * MODE changes the behaviour of the SV operation (result saturation, mapreduce)
176 * SUBVL groups elements together into vec2, vec3, vec4 for use in 3D and Audio/Video DSP work
177 * ELWIDTH and ELWIDTH_SRC overrides the instruction's destination and source operand width
178 * MASK (and MASK_SRC) and MASKMODE provide predication (two types of sources: scalar INT and Vector CR).
179
180 Bits 10 to 18 are further decoded depending on RM category for the instruction.
181 Similar to OpenPOWER `X-Form` etc. these 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.
182
183 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance or increased latency in some implementations due to lane-crossing.
184
185 # Mode
186
187 Mode is an augmentation of SV behaviour. Some of these alterations are element-based (saturation), others involve post-analysis (predicate result) and others are Vector-based (mapreduce, fail-on-first).
188
189 These are the modes:
190
191 * **normal** mode is straight vectorisation. no augmentations: the vector comprises an array of independently created results.
192 * **ffirst** or data-dependent fail-on-first: see separate section. the vector may be truncated depending on certain criteria.
193 *VL is altered as a result*.
194 * **sat mode** or saturation: clamps each elemrnt result to a min/max rather than overflows / wraps. allows signed and unsigned clamping.
195 * **reduce mode**. a mapreduce is performed. the result is a scalar. a result vector however is required, as the upper elements may be used to store intermediary computations. the result of the mapreduce is in the first element with a nonzero predicate bit. see [[appendix]]
196 note that there are comprehensive caveats when using this mode.
197 * **pred-result** will test the result (CR testing selects a bit of CR and inverts it, just like branch testing) and if the test fails it is as if the predicate bit was zero. When Rc=1 the CR element however is still stored in the CR regfile, even if the test failed. This scheme does not apply to crops (crand, cror). See appendix for details.
198
199 Note that ffirst and reduce modes are not anticipated to be high-performance in some implementations. ffirst due to interactions with VL, and reduce due to it requiring additional operations to produce a result. normal, saturate and pred-result are however inter-element independent and may easily be parallelised to give high performance, regardless of the value of VL.
200
201 The Mode table for operations except LD/ST is laid out as follows:
202
203 | 0-1 | 2 | 3 4 | description |
204 | --- | --- |---------|-------------------------- |
205 | 00 | 0 | dz sz | normal mode |
206 | 00 | 1 | 0 RG | scalar reduce mode (mapreduce), SUBVL=1 |
207 | 00 | 1 | 1 CRM | parallel reduce mode (mapreduce), SUBVL=1 |
208 | 00 | 1 | SVM RG | subvector reduce mode, SUBVL>1 |
209 | 01 | inv | CR-bit | Rc=1: ffirst CR sel |
210 | 01 | inv | dz RC1 | Rc=0: ffirst z/nonz |
211 | 10 | N | dz sz | sat mode: N=0/1 u/s |
212 | 11 | inv | CR-bit | Rc=1: pred-result CR sel |
213 | 11 | inv | dz RC1 | Rc=0: pred-result z/nonz |
214
215 Fields:
216
217 * **sz / dz** if predication is enabled will put zeros into the dest (or as src in the case of twin pred) when the predicate bit is zero. otherwise the element is ignored or skipped, depending on context.
218 * **inv CR bit** just as in branches (BO) these bits allow testing of a CR bit and whether it is set (inv=0) or unset (inv=1)
219 * **RG** inverts the Vector Loop order (VL-1 downto 0) rather
220 than the normal 0..VL-1
221 * **CRM** affects the CR on reduce mode when Rc=1
222 * **SVM** sets "subvector" reduce mode
223 * **N** sets signed/unsigned saturation.
224 **RC1** as if Rc=1, stores CRs *but not the result*
225
226 ## LD/ST ffirst
227
228 ffirst LD/ST to multiple pages via a Vectorised base is considered a security risk due to the abuse of probing multiple pages in rapid succession and getting feedback on which pages would fail. Therefore in these special circumstances requesting ffirst with a vector base is instead interpreted as element-strided LD/ST. See <https://bugs.libre-soc.org/show_bug.cgi?id=561>
229 and [[sv/ldst]]
230
231 # ELWIDTH Encoding
232
233 Default behaviour is set to 0b00 so that zeros follow the convention of
234 `scalar identity behaviour`. In this case it means that elwidth overrides
235 are not applicable. Thus if a 32 bit instruction operates on 32 bit,
236 `elwidth=0b00` specifies that this behaviour is unmodified. Likewise
237 when a processor is switched from 64 bit to 32 bit mode, `elwidth=0b00`
238 states that, again, the behaviour is not to be modified.
239
240 Only when elwidth is nonzero is the element width overridden to the
241 explicitly required value.
242
243 ## Elwidth for Integers:
244
245 | Value | Mnemonic | Description |
246 |-------|----------------|------------------------------------|
247 | 00 | DEFAULT | default behaviour for operation |
248 | 01 | `ELWIDTH=w` | Word: 32-bit integer |
249 | 10 | `ELWIDTH=h` | Halfword: 16-bit integer |
250 | 11 | `ELWIDTH=b` | Byte: 8-bit integer |
251
252 This encoding is chosen such that the byte width may be computed as `(3-ew)<<8`
253
254 ## Elwidth for FP Registers:
255
256 | Value | Mnemonic | Description |
257 |-------|----------------|------------------------------------|
258 | 00 | DEFAULT | default behaviour for FP operation |
259 | 01 | `ELWIDTH=f32` | 32-bit IEEE 754 Single floating-point |
260 | 10 | `ELWIDTH=f16` | 16-bit IEEE 754 Half floating-point |
261 | 11 | `ELWIDTH=bf16` | Reserved for `bf16` |
262
263 Note:
264 [`bf16`](https://en.wikipedia.org/wiki/Bfloat16_floating-point_format)
265 is reserved for a future implementation of SV
266
267 ## Elwidth for CRs:
268
269 TODO, important, particularly for crops, mfcr and mtcr, what elwidth
270 even means. instead it may be possible to use the bits as extra indices
271 (add to EXTRA2/3) to access the full 128 CRs at the bit level. TBD, several ideas
272
273 The actual width of the CRs cannot be altered: they are 4 bit. Also,
274 for Rc=1 operations that produce a result (in RT or FRT) and corresponding CR, it is
275 the INT/FP result to which the elwidth override applies, *not* the CR.
276 This therefore inherently places Rc=1 operations firmly out of scope as far as a "meaning" for elwidth on CRs is concerned.
277
278 As mentioned TBD, this leaves crops etc. to have a meaning defined for
279 elwidth, because these ops are pure explicit CR based.
280
281 Examples: mfxm may take the extra bits and use them as extra mask bits.
282
283 Example: hypothetically, operations could be modified to be considered 2-bit or 1-bit per CR. This would need a very comprehensive review.
284
285 # SUBVL Encoding
286
287 the default for SUBVL is 1 and its encoding is 0b00 to indicate that
288 SUBVL is effectively disabled (a SUBVL for-loop of only one element). this
289 lines up in combination with all other "default is all zeros" behaviour.
290
291 | Value | Mnemonic | Subvec | Description |
292 |-------|-----------|---------|------------------------|
293 | 00 | `SUBVL=1` | single | Sub-vector length of 1 |
294 | 01 | `SUBVL=2` | vec2 | Sub-vector length of 2 |
295 | 10 | `SUBVL=3` | vec3 | Sub-vector length of 3 |
296 | 11 | `SUBVL=4` | vec4 | Sub-vector length of 4 |
297
298 The SUBVL encoding value may be thought of as an inclusive range of a
299 sub-vector. SUBVL=2 represents a vec2, its encoding is 0b01, therefore
300 this may be considered to be elements 0b00 to 0b01 inclusive.
301
302 # MASK/MASK_SRC & MASKMODE Encoding
303
304 TODO: rename MASK_KIND to MASKMODE
305
306 One bit (`MASKMODE`) indicates the mode: CR or Int predication. The two
307 types may not be mixed.
308
309 Special note: to disable predication this field must
310 be set to zero in combination with Integer Predication also being set
311 to 0b000. this has the effect of enabling "all 1s" in the predicate
312 mask, which is equivalent to "not having any predication at all"
313 and consequently, in combination with all other default zeros, fully
314 disables SV (`scalar identity behaviour`).
315
316 `MASKMODE` may be set to one of 2 values:
317
318 | Value | Description |
319 |-----------|------------------------------------------------------|
320 | 0 | MASK/MASK_SRC are encoded using Integer Predication |
321 | 1 | MASK/MASK_SRC are encoded using CR-based Predication |
322
323 Integer Twin predication has a second set of 3 bits that uses the same
324 encoding thus allowing either the same register (r3 or r10) to be used
325 for both src and dest, or different regs (one for src, one for dest).
326
327 Likewise CR based twin predication has a second set of 3 bits, allowing
328 a different test to be applied.
329
330 Note that it is assumed that Predicate Masks (whether INT or CR)
331 are read *before* the operations proceed. In practice (for CR Fields)
332 this creates an unnecessary block on parallelism. Therefore,
333 it is up to the programmer to ensure that the CR fields used as
334 Predicate Masks are not being written to by any parallel Vector Loop.
335 Doing so results in **UNDEFINED** behaviour, according to the definition
336 outlined in the OpenPOWER v3.0B Specification.
337
338 Hardware Implementations are therefore free and clear to delay reading
339 of individual CR fields until the actual predicated element operation
340 needs to take place, safe in the knowledge that no programmer will
341 have issued a Vector Instruction where previous elements could have
342 overwritten (destroyed) not-yet-executed CR-Predicated element operations.
343
344 ## Integer Predication (MASKMODE=0)
345
346 When the predicate mode bit is zero the 3 bits are interpreted as below.
347 Twin predication has an identical 3 bit field similarly encoded.
348
349 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the following meaning:
350
351 | Value | Mnemonic | Element `i` enabled if: |
352 |-------|----------|------------------------------|
353 | 000 | ALWAYS | predicate effectively all 1s |
354 | 001 | 1 << R3 | `i == R3` |
355 | 010 | R3 | `R3 & (1 << i)` is non-zero |
356 | 011 | ~R3 | `R3 & (1 << i)` is zero |
357 | 100 | R10 | `R10 & (1 << i)` is non-zero |
358 | 101 | ~R10 | `R10 & (1 << i)` is zero |
359 | 110 | R30 | `R30 & (1 << i)` is non-zero |
360 | 111 | ~R30 | `R30 & (1 << i)` is zero |
361
362 r10 and r30 are at the high end of temporary and unused registers, so as not to interfere with register allocation from ABIs.
363
364 ## CR-based Predication (MASKMODE=1)
365
366 When the predicate mode bit is one the 3 bits are interpreted as below.
367 Twin predication has an identical 3 bit field similarly encoded.
368
369 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the following meaning:
370
371 | Value | Mnemonic | Element `i` is enabled if |
372 |-------|----------|--------------------------|
373 | 000 | lt | `CR[offs+i].LT` is set |
374 | 001 | nl/ge | `CR[offs+i].LT` is clear |
375 | 010 | gt | `CR[offs+i].GT` is set |
376 | 011 | ng/le | `CR[offs+i].GT` is clear |
377 | 100 | eq | `CR[offs+i].EQ` is set |
378 | 101 | ne | `CR[offs+i].EQ` is clear |
379 | 110 | so/un | `CR[offs+i].FU` is set |
380 | 111 | ns/nu | `CR[offs+i].FU` is clear |
381
382 CR based predication. TODO: select alternate CR for twin predication? see
383 [[discussion]] Overlap of the two CR based predicates must be taken
384 into account, so the starting point for one of them must be suitably
385 high, or accept that for twin predication VL must not exceed the range
386 where overlap will occur, *or* that they use the same starting point
387 but select different *bits* of the same CRs
388
389 `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).
390
391 Notes from Jacob: CR6-7 allows Scalar ops to refer to these without having to do a transfer (v3.0B). Another idea: the DepMatrices treat scalar CRs as one "thing" and treat the Vectors as a completely separate "thing". also: do modulo arithmetic on allocation of CRs.
392
393 # Extra Remapped Encoding
394
395 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 OpenPOWER "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*).
396
397 There are two categories: Single and Twin Predication.
398 Due to space considerations further subdivision of Single Predication
399 is based on whether the number of src operands is 2 or 3.
400
401 * `RM-1P-3S1D` Single Predication dest/src1/2/3, applies to 4-operand instructions (fmadd, isel, madd).
402 * `RM-1P-2S1D` Single Predication dest/src1/2 applies to 3-operand instructions (src1 src2 dest)
403 * `RM-2P-1S1D` Twin Predication (src=1, dest=1)
404 * `RM-2P-2S1D` Twin Predication (src=2, dest=1) primarily for LDST (Indexed)
405 * `RM-2P-1S2D` Twin Predication (src=1, dest=2) primarily for LDST Update
406
407 ## RM-1P-3S1D
408
409 | Field Name | Field bits | Description |
410 |------------|------------|----------------------------------------|
411 | Rdest\_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
412 | Rsrc1\_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
413 | Rsrc2\_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
414 | Rsrc3\_EXTRA2 | `16:17` | extends Rsrc3 (R\*\_EXTRA2 Encoding) |
415 | reserved | `18` | reserved |
416
417 ## RM-1P-2S1D
418
419 | Field Name | Field bits | Description |
420 |------------|------------|-------------------------------------------|
421 | Rdest\_EXTRA3 | `10:12` | extends Rdest |
422 | Rsrc1\_EXTRA3 | `13:15` | extends Rsrc1 |
423 | Rsrc2\_EXTRA3 | `16:18` | extends Rsrc3 |
424
425 These are for 2 operand 1 dest instructions, such as `add RT, RA,
426 RB`. However also included are unusual instructions with an implicit dest
427 that is identical to its src reg, such as `rlwinmi`.
428
429 Normally, with instructions such as `rlwinmi`, the scalar v3.0B ISA would not have sufficient bit fields to allow
430 an alternative destination. With SV however this becomes possible.
431 Therefore, the fact that the dest is implicitly also a src should not
432 mislead: due to the *prefix* they are different SV regs.
433
434 * `rlwimi RA, RS, ...`
435 * Rsrc1_EXTRA3 applies to RS as the first src
436 * Rsrc2_EXTRA3 applies to RA as the secomd src
437 * Rdest_EXTRA3 applies to RA to create an **independent** dest.
438
439 With the addition of the EXTRA bits, the three registers
440 each may be *independently* made vector or scalar, and be independently
441 augmented to 7 bits in length.
442
443 ## RM-2P-1S1D/2S
444
445 | Field Name | Field bits | Description |
446 |------------|------------|----------------------------|
447 | Rdest_EXTRA3 | `10:12` | extends Rdest |
448 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
449 | MASK_SRC | `16:18` | Execution Mask for Source |
450
451 `RM-2P-2S` is for `stw` etc. and is Rsrc1 Rsrc2.
452
453 ## RM-2P-2S1D/1S2D/3S
454
455 The primary purpose for this encoding is for Twin Predication on LOAD
456 and STORE operations. see [[sv/ldst]] for detailed anslysis.
457
458 RM-2P-2S1D:
459
460 | Field Name | Field bits | Description |
461 |------------|------------|----------------------------|
462 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
463 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
464 | Rsrc2_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
465 | MASK_SRC | `16:18` | Execution Mask for Source |
466
467 Note that for 1S2P the EXTRA2 dest and src names are switched (Rsrc_EXTRA2
468 is in bits 10:11, Rdest1_EXTRA2 in 12:13)
469
470 Also that for 3S (to cover `stdx` etc.) the names are switched to 3 src: Rsrc1_EXTRA2, Rsrc2_EXTRA2, Rsrc3_EXTRA2.
471
472 Note also that LD with update indexed, which takes 2 src and 2 dest
473 (e.g. `lhaux RT,RA,RB`), does not have room for 4 registers and also
474 Twin Predication. therefore these are treated as RM-2P-2S1D and the
475 src spec for RA is also used for the same RA as a dest.
476
477 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance or increased latency in some implementations due to lane-crossing.
478
479 # R\*\_EXTRA2/3
480
481 EXTRA is the means by which two things are achieved:
482
483 1. Registers are marked as either Vector *or Scalar*
484 2. Register field numbers (limited typically to 5 bit)
485 are extended in range, both for Scalar and Vector.
486
487 The register files are therefore extended:
488
489 * INT is extended from r0-31 to 128
490 * FP is extended from fp0-32 to 128
491 * CR is extended from CR0-7 to CR0-127
492
493 In the following tables register numbers are constructed from the
494 standard v3.0B / v3.1B 32 bit register field (RA, FRA) and the EXTRA2
495 or EXTRA3 field from the SV Prefix. The prefixing is arranged so that
496 interoperability between prefixing and nonprefixing of scalar registers
497 is direct and convenient (when the EXTRA field is all zeros).
498
499 A pseudocode algorithm explains the relationship, for INT/FP (see [[svp64/appendix]] for CRs)
500
501 if extra3_mode:
502 spec = EXTRA3
503 else:
504 spec = EXTRA2 << 1 # same as EXTRA3, shifted
505 if spec[0]: # vector
506 return (RA << 2) | spec[1:2]
507 else: # scalar
508 return (spec[1:2] << 5) | RA
509
510 Future versions may extend to 256 by shifting Vector numbering up.
511 Scalar will not be altered.
512
513 ## INT/FP EXTRA3
514
515 alternative which is understandable and, if EXTRA3 is zero, maps to
516 "no effect" (scalar OpenPOWER ISA field naming). also, these are the
517 encodings used in the original SV Prefix scheme. the reason why they
518 were chosen is so that scalar registers in v3.0B and prefixed scalar
519 registers have access to the same 32 registers.
520
521 Fields are as follows:
522
523 * Value: R_EXTRA3
524 * Mode: register is tagged as scalar or vector
525 * Range/Inc: the range of registers accessible from this EXTRA
526 encoding, and the "increment" (accessibility). "/4" means
527 that this EXTRA encoding may only give access (starting point)
528 every 4th register.
529 * MSB..LSB: the bit field showing how the register opcode field
530 combines with EXTRA to give (extend) the register number (GPR)
531
532 | Value | Mode | Range/Inc | 6..0 |
533 |-----------|-------|---------------|---------------------|
534 | 000 | Scalar | `r0-r31`/1 | `0b00 RA` |
535 | 001 | Scalar | `r32-r63`/1 | `0b01 RA` |
536 | 010 | Scalar | `r64-r95`/1 | `0b10 RA` |
537 | 011 | Scalar | `r96-r127`/1 | `0b11 RA` |
538 | 100 | Vector | `r0-r124`/4 | `RA 0b00` |
539 | 101 | Vector | `r1-r125`/4 | `RA 0b01` |
540 | 110 | Vector | `r2-r126`/4 | `RA 0b10` |
541 | 111 | Vector | `r3-r127`/4 | `RA 0b11` |
542
543 ## INT/FP EXTRA2
544
545 alternative which is understandable and, if EXTRA2 is zero will map to
546 "no effect" i.e Scalar OpenPOWER register naming:
547
548 | Value | Mode | Range/inc | 6..0 |
549 |-----------|-------|---------------|-----------|
550 | 00 | Scalar | `r0-r31`/1 | `0b00 RA` |
551 | 01 | Scalar | `r32-r63`/1 | `0b01 RA` |
552 | 10 | Vector | `r0-r124`/4 | `RA 0b00` |
553 | 11 | Vector | `r2-r126`/4 | `RA 0b10` |
554
555 ## CR EXTRA3
556
557 CR encoding is essentially the same but made more complex due to CRs being bit-based. See [[svp64/appendix]] for explanation and pseudocode.
558
559 Encoding shown MSB down to LSB
560
561 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
562 |-------|------|---------------|-----------| --------|---------|
563 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[4:2] | BA[1:0] |
564 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[4:2] | BA[1:0] |
565 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BA[4:2] | BA[1:0] |
566 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BA[4:2] | BA[1:0] |
567 | 100 | Vector | `CR0-CR112`/16 | BA[4:2] 0 | 0b000 | BA[1:0] |
568 | 101 | Vector | `CR4-CR116`/16 | BA[4:2] 0 | 0b100 | BA[1:0] |
569 | 110 | Vector | `CR8-CR120`/16 | BA[4:2] 1 | 0b000 | BA[1:0] |
570 | 111 | Vector | `CR12-CR124`/16 | BA[4:2] 1 | 0b100 | BA[1:0] |
571
572 ## CR EXTRA2
573
574 CR encoding is essentially the same but made more complex due to CRs being bit-based. See separate section for explanation and pseudocode.
575
576 Encoding shown MSB down to LSB
577
578 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
579 |-------|--------|----------------|---------|---------|---------|
580 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[4:2] | BA[1:0] |
581 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[4:2] | BA[1:0] |
582 | 10 | Vector | `CR0-CR112`/16 | BA[4:2] 0 | 0b000 | BA[1:0] |
583 | 11 | Vector | `CR8-CR120`/16 | BA[4:2] 1 | 0b000 | BA[1:0] |
584
585 # Appendix
586
587 Now at its own page: [[svp64/appendix]]
588