(no commit message)
[libreriscv.git] / openpower / sv / svp64.mdwn
1 [[!tag standards]]
2
3 # DRAFT SVP64 for OpenPOWER ISA v3.0B
4
5 * **DRAFT STATUS v0.1 18sep2021** Release notes <https://bugs.libre-soc.org/show_bug.cgi?id=699>
6
7 This document describes [[SV|sv]] augmentation of the [[OpenPOWER|openpower]] v3.0B [[ISA|openpower/isa/]]. Permission to create commercial v3.1 implementations has not yet been granted through the issuance of a v3.1 EULA by the [[!wikipedia OpenPOWER_Foundation]] (only v3.0B)
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
33 Table of contents
34
35 [[!toc]]
36
37 # Introduction
38
39 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]].
40
41 The plan is to create an encoding for SVP64, then to create an encoding
42 for SVP48, then to reorganize them both to improve field overlap,
43 reducing the amount of decoder hardware necessary.
44
45 All bit numbers are in MSB0 form (the bits are numbered from 0 at the MSB
46 and counting up as you move to the LSB end). All bit ranges are inclusive
47 (so `4:6` means bits 4, 5, and 6).
48
49 64-bit instructions are split into two 32-bit words, the prefix and the
50 suffix. The prefix always comes before the suffix in PC order.
51
52 | 0:5 | 6:31 | 0:31 |
53 |--------|--------------|--------------|
54 | EXT01 | v3.1 Prefix | v3.1 Suffix |
55
56 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.
57
58 ## SVP64 encoding features
59
60 A number of features need to be compacted into a very small space of only 24 bits:
61
62 * Independent per-register Scalar/Vector tagging and range extension on every register
63 * Element width overrides on both source and destination
64 * Predication on both source and destination
65 * Two different sources of predication: INT and CR Fields
66 * SV Modes including saturation (for Audio, Video and DSP), mapreduce, fail-first and
67 predicate-result mode.
68
69 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.
70
71 # Definition of Reserved in this spec.
72
73 For the new fields added in SVP64, instructions that have any of their
74 fields set to a reserved value must cause an illegal instruction trap,
75 to allow emulation of future instruction sets. Unless otherwise stated, reserved values are always all zeros.
76
77 This is unlike OpenPower ISA v3.1, which in many instances does not require a trap if reserved fields are nonzero. Where the standard OpenPOWER definition
78 is intended the red keyword `RESERVED` is used.
79
80 # Identity Behaviour
81
82 SVP64 is designed so that when the prefix is all zeros, and
83 VL=1, no effect or
84 influence occurs (no augmentation) such that all standard OpenPOWER
85 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").
86
87 Note that this is completely different from when VL=0. VL=0 turns all operations under its influence into `nops` (regardless of the prefix)
88 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").
89
90 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.
91
92 # Register Naming and size
93
94 SV Registers are simply the INT, FP and CR register files extended
95 linearly to larger sizes; SV Vectorisation iterates sequentially through these registers.
96
97 Where the integer regfile in standard scalar
98 OpenPOWER v3.0B/v3.1B is r0 to r31, SV extends this as r0 to r127.
99 Likewise FP registers are extended to 128 (fp0 to fp127), and CRs are
100 extended to 128 entries, CR0 thru CR127.
101
102 The names of the registers therefore reflects a simple linear extension
103 of the OpenPOWER v3.0B / v3.1B register naming, and in hardware this
104 would be reflected by a linear increase in the size of the underlying
105 SRAM used for the regfiles.
106
107 Note: when an EXTRA field (defined below) is zero, SV is deliberately designed
108 so that the register fields are identical to as if SV was not in effect
109 i.e. under these circumstances (EXTRA=0) the register field names RA,
110 RB etc. are interpreted and treated as v3.0B / v3.1B scalar registers. This is part of
111 `scalar identity behaviour` described above.
112
113 ## Future expansion.
114
115 With the way that EXTRA fields are defined and applied to register fields,
116 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
117 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.
118
119 # Remapped Encoding (`RM[0:23]`)
120
121 To allow relatively easy remapping of which portions of the Prefix Opcode
122 Map are used for SVP64 without needing to rewrite a large portion of the
123 SVP64 spec, a mapping is defined from the OpenPower v3.1 prefix bits to
124 a new 24-bit Remapped Encoding denoted `RM[0]` at the MSB to `RM[23]`
125 at the LSB.
126
127 The mapping from the OpenPower v3.1 prefix bits to the Remapped Encoding
128 is defined in the Prefix Fields section.
129
130 ## Prefix Opcode Map (64-bit instruction encoding)
131
132 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".
133
134 The table below hows both PowerISA v3.1 instructions as well as new SVP instructions fit;
135 empty spaces are yet-to-be-allocated Illegal Instructions.
136
137 | 6:11 | ---000 | ---001 | ---010 | ---011 | ---100 | ---101 | ---110 | ---111 |
138 |------|--------|--------|--------|--------|--------|--------|--------|--------|
139 |000---| 8LS | 8LS | 8LS | 8LS | 8LS | 8LS | 8LS | 8LS |
140 |001---| | | | | | | | |
141 |010---| 8RR | | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
142 |011---| | | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
143 |100---| MLS | MLS | MLS | MLS | MLS | MLS | MLS | MLS |
144 |101---| | | | | | | | |
145 |110---| MRR | | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
146 |111---| | MMIRR | | | `SVP64`| `SVP64`| `SVP64`| `SVP64`|
147
148 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.
149
150 ## Prefix Fields
151
152 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
153 (see Prefix Opcode Map, above), leaving 24 bits "free" for use by SV.
154 This is achieved by setting bits 7 and 9 to 1:
155
156 | Name | Bits | Value | Description |
157 |------------|---------|-------|--------------------------------|
158 | EXT01 | `0:5` | `1` | Indicates Prefixed 64-bit |
159 | `RM[0]` | `6` | | Bit 0 of Remapped Encoding |
160 | SVP64_7 | `7` | `1` | Indicates this is SVP64 |
161 | `RM[1]` | `8` | | Bit 1 of Remapped Encoding |
162 | SVP64_9 | `9` | `1` | Indicates this is SVP64 |
163 | `RM[2:23]` | `10:31` | | Bits 2-23 of Remapped Encoding |
164
165 Laid out bitwise, this is as follows, showing how the 32-bits of the prefix
166 are constructed:
167
168 | 0:5 | 6 | 7 | 8 | 9 | 10:31 |
169 |--------|-------|---|-------|---|----------|
170 | EXT01 | RM | 1 | RM | 1 | RM |
171 | 000001 | RM[0] | 1 | RM[1] | 1 | RM[2:23] |
172
173 Following the prefix will be the suffix: this is simply a 32-bit v3.0B / v3.1
174 instruction. That instruction becomes "prefixed" with the SVP context: the
175 Remapped Encoding field (RM).
176
177 It is important to note that unlike v3.1 64-bit prefixed instructions
178 there is insufficient space in `RM` to provide identification of
179 any SVP64 Fields without first partially decoding the
180 32-bit suffix. Extreme caution and care must therefore be taken
181 when extending SVP64 in future, to not create unnecessary relationships
182 between prefix and suffix that could complicate decoding, adding latency.
183
184 # Common RM fields
185
186 The following fields are common to all Remapped Encodings:
187
188 | Field Name | Field bits | Description |
189 |------------|------------|----------------------------------------|
190 | MASKMODE | `0` | Execution (predication) Mask Kind |
191 | MASK | `1:3` | Execution Mask |
192 | SUBVL | `8:9` | Sub-vector length |
193
194 The following fields are optional or encoded differently depending
195 on context after decoding of the Scalar suffix:
196
197 | Field Name | Field bits | Description |
198 |------------|------------|----------------------------------------|
199 | ELWIDTH | `4:5` | Element Width |
200 | ELWIDTH_SRC | `6:7` | Element Width for Source |
201 | EXTRA | `10:18` | Register Extra encoding |
202 | MODE | `19:23` | changes Vector behaviour |
203
204
205 * MODE changes the behaviour of the SV operation (result saturation, mapreduce)
206 * SUBVL groups elements together into vec2, vec3, vec4 for use in 3D and Audio/Video DSP work
207 * ELWIDTH and ELWIDTH_SRC overrides the instruction's destination and source operand width
208 * MASK (and MASK_SRC) and MASKMODE provide predication (two types of sources: scalar INT and Vector CR).
209 * 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.
210
211 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.
212
213 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance or increased latency in some implementations due to lane-crossing.
214
215 # Mode
216
217 Mode is an augmentation of SV behaviour. Different types of
218 instructions have different needs, similar to Power ISA
219 v3.1 64 bit prefix 8LS and MTRR formats apply to different
220 instruction types. Modes include Reduction, Iteration, arithmetic
221 saturation, and Fail-First. More specific details in each
222 section and in the [[svp64/appendix]]
223
224 * For condition register operations see [[sv/cr_ops]]
225 * For LD/ST Modes, see [[sv/ldst]].
226 * For Branch modes, see [[sv/branches]]
227 * For arithmetic and logical, see [[sv/normal]]
228
229 # ELWIDTH Encoding
230
231 Default behaviour is set to 0b00 so that zeros follow the convention of
232 `scalar identity behaviour`. In this case it means that elwidth overrides
233 are not applicable. Thus if a 32 bit instruction operates on 32 bit,
234 `elwidth=0b00` specifies that this behaviour is unmodified. Likewise
235 when a processor is switched from 64 bit to 32 bit mode, `elwidth=0b00`
236 states that, again, the behaviour is not to be modified.
237
238 Only when elwidth is nonzero is the element width overridden to the
239 explicitly required value.
240
241 ## Elwidth for Integers:
242
243 | Value | Mnemonic | Description |
244 |-------|----------------|------------------------------------|
245 | 00 | DEFAULT | default behaviour for operation |
246 | 01 | `ELWIDTH=w` | Word: 32-bit integer |
247 | 10 | `ELWIDTH=h` | Halfword: 16-bit integer |
248 | 11 | `ELWIDTH=b` | Byte: 8-bit integer |
249
250 This encoding is chosen such that the byte width may be computed as `(3-ew)<<8`
251
252 ## Elwidth for FP Registers:
253
254 | Value | Mnemonic | Description |
255 |-------|----------------|------------------------------------|
256 | 00 | DEFAULT | default behaviour for FP operation |
257 | 01 | `ELWIDTH=f32` | 32-bit IEEE 754 Single floating-point |
258 | 10 | `ELWIDTH=f16` | 16-bit IEEE 754 Half floating-point |
259 | 11 | `ELWIDTH=bf16` | Reserved for `bf16` |
260
261 Note:
262 [`bf16`](https://en.wikipedia.org/wiki/Bfloat16_floating-point_format)
263 is reserved for a future implementation of SV
264
265 Note that any IEEE754 FP operation in Power ISA ending in "s" (`fadds`) shall
266 perform its operation at **half** the ELWIDTH then padded back out
267 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
268 clearly the behaviour of `sv.fadds` is performed at 32-bit accuracy
269 then padded back out to fit in IEEE754 FP64, exactly as for Scalar
270 v3.0B "single" FP.
271
272 ## Elwidth for CRs:
273
274 Element-width overrides for CR Fields has no meaning. The bits
275 are therefore used for other purposes, or when Rc=1, the Elwidth
276 applies to the result being tested, but not to the Vector of CR Fields.
277
278
279 # SUBVL Encoding
280
281 the default for SUBVL is 1 and its encoding is 0b00 to indicate that
282 SUBVL is effectively disabled (a SUBVL for-loop of only one element). this
283 lines up in combination with all other "default is all zeros" behaviour.
284
285 | Value | Mnemonic | Subvec | Description |
286 |-------|-----------|---------|------------------------|
287 | 00 | `SUBVL=1` | single | Sub-vector length of 1 |
288 | 01 | `SUBVL=2` | vec2 | Sub-vector length of 2 |
289 | 10 | `SUBVL=3` | vec3 | Sub-vector length of 3 |
290 | 11 | `SUBVL=4` | vec4 | Sub-vector length of 4 |
291
292 The SUBVL encoding value may be thought of as an inclusive range of a
293 sub-vector. SUBVL=2 represents a vec2, its encoding is 0b01, therefore
294 this may be considered to be elements 0b00 to 0b01 inclusive.
295
296 # MASK/MASK_SRC & MASKMODE Encoding
297
298 TODO: rename MASK_KIND to MASKMODE
299
300 One bit (`MASKMODE`) indicates the mode: CR or Int predication. The two
301 types may not be mixed.
302
303 Special note: to disable predication this field must
304 be set to zero in combination with Integer Predication also being set
305 to 0b000. this has the effect of enabling "all 1s" in the predicate
306 mask, which is equivalent to "not having any predication at all"
307 and consequently, in combination with all other default zeros, fully
308 disables SV (`scalar identity behaviour`).
309
310 `MASKMODE` may be set to one of 2 values:
311
312 | Value | Description |
313 |-----------|------------------------------------------------------|
314 | 0 | MASK/MASK_SRC are encoded using Integer Predication |
315 | 1 | MASK/MASK_SRC are encoded using CR-based Predication |
316
317 Integer Twin predication has a second set of 3 bits that uses the same
318 encoding thus allowing either the same register (r3 or r10) to be used
319 for both src and dest, or different regs (one for src, one for dest).
320
321 Likewise CR based twin predication has a second set of 3 bits, allowing
322 a different test to be applied.
323
324 Note that it is assumed that Predicate Masks (whether INT or CR)
325 are read *before* the operations proceed. In practice (for CR Fields)
326 this creates an unnecessary block on parallelism. Therefore,
327 it is up to the programmer to ensure that the CR fields used as
328 Predicate Masks are not being written to by any parallel Vector Loop.
329 Doing so results in **UNDEFINED** behaviour, according to the definition
330 outlined in the OpenPOWER v3.0B Specification.
331
332 Hardware Implementations are therefore free and clear to delay reading
333 of individual CR fields until the actual predicated element operation
334 needs to take place, safe in the knowledge that no programmer will
335 have issued a Vector Instruction where previous elements could have
336 overwritten (destroyed) not-yet-executed CR-Predicated element operations.
337
338 ## Integer Predication (MASKMODE=0)
339
340 When the predicate mode bit is zero the 3 bits are interpreted as below.
341 Twin predication has an identical 3 bit field similarly encoded.
342
343 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the following meaning:
344
345 | Value | Mnemonic | Element `i` enabled if: |
346 |-------|----------|------------------------------|
347 | 000 | ALWAYS | predicate effectively all 1s |
348 | 001 | 1 << R3 | `i == R3` |
349 | 010 | R3 | `R3 & (1 << i)` is non-zero |
350 | 011 | ~R3 | `R3 & (1 << i)` is zero |
351 | 100 | R10 | `R10 & (1 << i)` is non-zero |
352 | 101 | ~R10 | `R10 & (1 << i)` is zero |
353 | 110 | R30 | `R30 & (1 << i)` is non-zero |
354 | 111 | ~R30 | `R30 & (1 << i)` is zero |
355
356 r10 and r30 are at the high end of temporary and unused registers, so as not to interfere with register allocation from ABIs.
357
358 ## CR-based Predication (MASKMODE=1)
359
360 When the predicate mode bit is one the 3 bits are interpreted as below.
361 Twin predication has an identical 3 bit field similarly encoded.
362
363 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the following meaning:
364
365 | Value | Mnemonic | Element `i` is enabled if |
366 |-------|----------|--------------------------|
367 | 000 | lt | `CR[offs+i].LT` is set |
368 | 001 | nl/ge | `CR[offs+i].LT` is clear |
369 | 010 | gt | `CR[offs+i].GT` is set |
370 | 011 | ng/le | `CR[offs+i].GT` is clear |
371 | 100 | eq | `CR[offs+i].EQ` is set |
372 | 101 | ne | `CR[offs+i].EQ` is clear |
373 | 110 | so/un | `CR[offs+i].FU` is set |
374 | 111 | ns/nu | `CR[offs+i].FU` is clear |
375
376 CR based predication. TODO: select alternate CR for twin predication? see
377 [[discussion]] Overlap of the two CR based predicates must be taken
378 into account, so the starting point for one of them must be suitably
379 high, or accept that for twin predication VL must not exceed the range
380 where overlap will occur, *or* that they use the same starting point
381 but select different *bits* of the same CRs
382
383 `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).
384
385 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.
386
387 # Extra Remapped Encoding
388
389 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*).
390
391 These mappings are part of the SVP64 Specification in exactly the same
392 way as X-Form, D-Form. New Scalar instructions added to the Power ISA
393 will need a corresponding SVP64 Mapping, which can be derived by-rote
394 from examining the Register "Profile" of the instruction.
395
396 There are two categories: Single and Twin Predication.
397 Due to space considerations further subdivision of Single Predication
398 is based on whether the number of src operands is 2 or 3. With only
399 9 bits available some compromises have to be made.
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-1P-2S1D
454
455 single-predicate, three registers (2 read, 1 write)
456
457 | Field Name | Field bits | Description |
458 |------------|------------|----------------------------|
459 | Rdest_EXTRA3 | `10:12` | extends Rdest |
460 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
461 | Rsrc2_EXTRA3 | `16:18` | extends Rsrc2 |
462
463 ## RM-2P-2S1D/1S2D/3S
464
465 The primary purpose for this encoding is for Twin Predication on LOAD
466 and STORE operations. see [[sv/ldst]] for detailed anslysis.
467
468 RM-2P-2S1D:
469
470 | Field Name | Field bits | Description |
471 |------------|------------|----------------------------|
472 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
473 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
474 | Rsrc2_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
475 | MASK_SRC | `16:18` | Execution Mask for Source |
476
477 Note that for 1S2P the EXTRA2 dest and src names are switched (Rsrc_EXTRA2
478 is in bits 10:11, Rdest1_EXTRA2 in 12:13)
479
480 Also that for 3S (to cover `stdx` etc.) the names are switched to 3 src: Rsrc1_EXTRA2, Rsrc2_EXTRA2, Rsrc3_EXTRA2.
481
482 Note also that LD with update indexed, which takes 2 src and 2 dest
483 (e.g. `lhaux RT,RA,RB`), does not have room for 4 registers and also
484 Twin Predication. therefore these are treated as RM-2P-2S1D and the
485 src spec for RA is also used for the same RA as a dest.
486
487 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance or increased latency in some implementations due to lane-crossing.
488
489 # R\*\_EXTRA2/3
490
491 EXTRA is the means by which two things are achieved:
492
493 1. Registers are marked as either Vector *or Scalar*
494 2. Register field numbers (limited typically to 5 bit)
495 are extended in range, both for Scalar and Vector.
496
497 The register files are therefore extended:
498
499 * INT is extended from r0-31 to 128
500 * FP is extended from fp0-32 to 128
501 * CR is extended from CR0-7 to CR0-127
502
503 In the following tables register numbers are constructed from the
504 standard v3.0B / v3.1B 32 bit register field (RA, FRA) and the EXTRA2
505 or EXTRA3 field from the SV Prefix. The prefixing is arranged so that
506 interoperability between prefixing and nonprefixing of scalar registers
507 is direct and convenient (when the EXTRA field is all zeros).
508
509 A pseudocode algorithm explains the relationship, for INT/FP (see [[svp64/appendix]] for CRs)
510
511 if extra3_mode:
512 spec = EXTRA3
513 else:
514 spec = EXTRA2 << 1 # same as EXTRA3, shifted
515 if spec[0]: # vector
516 return (RA << 2) | spec[1:2]
517 else: # scalar
518 return (spec[1:2] << 5) | RA
519
520 Future versions may extend to 256 by shifting Vector numbering up.
521 Scalar will not be altered.
522
523 ## INT/FP EXTRA3
524
525 alternative which is understandable and, if EXTRA3 is zero, maps to
526 "no effect" (scalar OpenPOWER ISA field naming). also, these are the
527 encodings used in the original SV Prefix scheme. the reason why they
528 were chosen is so that scalar registers in v3.0B and prefixed scalar
529 registers have access to the same 32 registers.
530
531 Fields are as follows:
532
533 * Value: R_EXTRA3
534 * Mode: register is tagged as scalar or vector
535 * Range/Inc: the range of registers accessible from this EXTRA
536 encoding, and the "increment" (accessibility). "/4" means
537 that this EXTRA encoding may only give access (starting point)
538 every 4th register.
539 * MSB..LSB: the bit field showing how the register opcode field
540 combines with EXTRA to give (extend) the register number (GPR)
541
542 | Value | Mode | Range/Inc | 6..0 |
543 |-----------|-------|---------------|---------------------|
544 | 000 | Scalar | `r0-r31`/1 | `0b00 RA` |
545 | 001 | Scalar | `r32-r63`/1 | `0b01 RA` |
546 | 010 | Scalar | `r64-r95`/1 | `0b10 RA` |
547 | 011 | Scalar | `r96-r127`/1 | `0b11 RA` |
548 | 100 | Vector | `r0-r124`/4 | `RA 0b00` |
549 | 101 | Vector | `r1-r125`/4 | `RA 0b01` |
550 | 110 | Vector | `r2-r126`/4 | `RA 0b10` |
551 | 111 | Vector | `r3-r127`/4 | `RA 0b11` |
552
553 ## INT/FP EXTRA2
554
555 alternative which is understandable and, if EXTRA2 is zero will map to
556 "no effect" i.e Scalar OpenPOWER register naming:
557
558 | Value | Mode | Range/inc | 6..0 |
559 |-----------|-------|---------------|-----------|
560 | 00 | Scalar | `r0-r31`/1 | `0b00 RA` |
561 | 01 | Scalar | `r32-r63`/1 | `0b01 RA` |
562 | 10 | Vector | `r0-r124`/4 | `RA 0b00` |
563 | 11 | Vector | `r2-r126`/4 | `RA 0b10` |
564
565 ## CR EXTRA3
566
567 CR encoding is essentially the same but made more complex due to CRs being bit-based. See [[svp64/appendix]] for explanation and pseudocode.
568
569 Encoding shown MSB down to LSB
570
571 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
572 |-------|------|---------------|-----------| --------|---------|
573 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[4:2] | BA[1:0] |
574 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[4:2] | BA[1:0] |
575 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BA[4:2] | BA[1:0] |
576 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BA[4:2] | BA[1:0] |
577 | 100 | Vector | `CR0-CR112`/16 | BA[4:2] 0 | 0b000 | BA[1:0] |
578 | 101 | Vector | `CR4-CR116`/16 | BA[4:2] 0 | 0b100 | BA[1:0] |
579 | 110 | Vector | `CR8-CR120`/16 | BA[4:2] 1 | 0b000 | BA[1:0] |
580 | 111 | Vector | `CR12-CR124`/16 | BA[4:2] 1 | 0b100 | BA[1:0] |
581
582 ## CR EXTRA2
583
584 CR encoding is essentially the same but made more complex due to CRs being bit-based. See separate section for explanation and pseudocode.
585
586 Encoding shown MSB down to LSB
587
588 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
589 |-------|--------|----------------|---------|---------|---------|
590 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[4:2] | BA[1:0] |
591 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[4:2] | BA[1:0] |
592 | 10 | Vector | `CR0-CR112`/16 | BA[4:2] 0 | 0b000 | BA[1:0] |
593 | 11 | Vector | `CR8-CR120`/16 | BA[4:2] 1 | 0b000 | BA[1:0] |
594
595 # Appendix
596
597 Now at its own page: [[svp64/appendix]]
598