add CSRs link
[libreriscv.git] / simple_v_extension.mdwn
1 # Variable-width Variable-packed SIMD / Simple-V / Parallelism Extension Proposal
2
3 [[!toc ]]
4
5 # Summary
6
7 Key insight: Simple-V is intended as an abstraction layer to provide
8 a consistent "API" to parallelisation of existing *and future* operations.
9 *Actual* internal hardware-level parallelism is *not* required, such
10 that Simple-V may be viewed as providing a "compact" or "consolidated"
11 means of issuing multiple near-identical arithmetic instructions to an
12 instruction queue (FILO), pending execution.
13
14 *Actual* parallelism, if added independently of Simple-V in the form
15 of Out-of-order restructuring (including parallel ALU lanes) or VLIW
16 implementations, or SIMD, or anything else, would then benefit *if*
17 Simple-V was added on top.
18
19 # Introduction
20
21 This proposal exists so as to be able to satisfy several disparate
22 requirements: power-conscious, area-conscious, and performance-conscious
23 designs all pull an ISA and its implementation in different conflicting
24 directions, as do the specific intended uses for any given implementation.
25
26 Additionally, the existing P (SIMD) proposal and the V (Vector) proposals,
27 whilst each extremely powerful in their own right and clearly desirable,
28 are also:
29
30 * Clearly independent in their origins (Cray and AndesStar v3 respectively)
31 so need work to adapt to the RISC-V ethos and paradigm
32 * Are sufficiently large so as to make adoption (and exploration for
33 analysis and review purposes) prohibitively expensive
34 * Both contain partial duplication of pre-existing RISC-V instructions
35 (an undesirable characteristic)
36 * Both have independent and disparate methods for introducing parallelism
37 at the instruction level.
38 * Both require that their respective parallelism paradigm be implemented
39 along-side and integral to their respective functionality *or not at all*.
40 * Both independently have methods for introducing parallelism that
41 could, if separated, benefit
42 *other areas of RISC-V not just DSP or Floating-point respectively*.
43
44 Therefore it makes a huge amount of sense to have a means and method
45 of introducing instruction parallelism in a flexible way that provides
46 implementors with the option to choose exactly where they wish to offer
47 performance improvements and where they wish to optimise for power
48 and/or area (and if that can be offered even on a per-operation basis that
49 would provide even more flexibility).
50
51 Additionally it makes sense to *split out* the parallelism inherent within
52 each of P and V, and to see if each of P and V then, in *combination* with
53 a "best-of-both" parallelism extension, could be added on *on top* of
54 this proposal, to topologically provide the exact same functionality of
55 each of P and V.
56
57 Furthermore, an additional goal of this proposal is to reduce the number
58 of opcodes utilised by each of P and V as they currently stand, leveraging
59 existing RISC-V opcodes where possible, and also potentially allowing
60 P and V to make use of Compressed Instructions as a result.
61
62 **TODO**: reword this to better suit this document:
63
64 Having looked at both P and V as they stand, they're _both_ very much
65 "separate engines" that, despite both their respective merits and
66 extremely powerful features, don't really cleanly fit into the RV design
67 ethos (or the flexible extensibility) and, as such, are both in danger
68 of not being widely adopted. I'm inclined towards recommending:
69
70 * splitting out the DSP aspects of P-SIMD to create a single-issue DSP
71 * splitting out the polymorphism, esoteric data types (GF, complex
72 numbers) and unusual operations of V to create a single-issue "Esoteric
73 Floating-Point" extension
74 * splitting out the loop-aspects, vector aspects and data-width aspects
75 of both P and V to a *new* "P-SIMD / Simple-V" and requiring that they
76 apply across *all* Extensions, whether those be DSP, M, Base, V, P -
77 everything.
78
79 **TODO**: propose overflow registers be actually one of the integer regs
80 (flowing to multiple regs).
81
82 **TODO**: propose "mask" (predication) registers likewise. combination with
83 standard RV instructions and overflow registers extremely powerful
84
85 # Analysis and discussion of Vector vs SIMD
86
87 There are five combined areas between the two proposals that help with
88 parallelism without over-burdening the ISA with a huge proliferation of
89 instructions:
90
91 * Fixed vs variable parallelism (fixed or variable "M" in SIMD)
92 * Implicit vs fixed instruction bit-width (integral to instruction or not)
93 * Implicit vs explicit type-conversion (compounded on bit-width)
94 * Implicit vs explicit inner loops.
95 * Masks / tagging (selecting/preventing certain indexed elements from execution)
96
97 The pros and cons of each are discussed and analysed below.
98
99 ## Fixed vs variable parallelism length
100
101 In David Patterson and Andrew Waterman's analysis of SIMD and Vector
102 ISAs, the analysis comes out clearly in favour of (effectively) variable
103 length SIMD. As SIMD is a fixed width, typically 4, 8 or in extreme cases
104 16 or 32 simultaneous operations, the setup, teardown and corner-cases of SIMD
105 are extremely burdensome except for applications whose requirements
106 *specifically* match the *precise and exact* depth of the SIMD engine.
107
108 Thus, SIMD, no matter what width is chosen, is never going to be acceptable
109 for general-purpose computation, and in the context of developing a
110 general-purpose ISA, is never going to satisfy 100 percent of implementors.
111
112 That basically leaves "variable-length vector" as the clear *general-purpose*
113 winner, at least in terms of greatly simplifying the instruction set,
114 reducing the number of instructions required for any given task, and thus
115 reducing power consumption for the same.
116
117 ## Implicit vs fixed instruction bit-width
118
119 SIMD again has a severe disadvantage here, over Vector: huge proliferation
120 of specialist instructions that target 8-bit, 16-bit, 32-bit, 64-bit, and
121 have to then have operations *for each and between each*. It gets very
122 messy, very quickly.
123
124 The V-Extension on the other hand proposes to set the bit-width of
125 future instructions on a per-register basis, such that subsequent instructions
126 involving that register are *implicitly* of that particular bit-width until
127 otherwise changed or reset.
128
129 This has some extremely useful properties, without being particularly
130 burdensome to implementations, given that instruction decode already has
131 to direct the operation to a correctly-sized width ALU engine, anyway.
132
133 Not least: in places where an ISA was previously constrained (due for
134 whatever reason, including limitations of the available operand spcace),
135 implicit bit-width allows the meaning of certain operations to be
136 type-overloaded *without* pollution or alteration of frozen and immutable
137 instructions, in a fully backwards-compatible fashion.
138
139 ## Implicit and explicit type-conversion
140
141 The Draft 2.3 V-extension proposal has (deprecated) polymorphism to help
142 deal with over-population of instructions, such that type-casting from
143 integer (and floating point) of various sizes is automatically inferred
144 due to "type tagging" that is set with a special instruction. A register
145 will be *specifically* marked as "16-bit Floating-Point" and, if added
146 to an operand that is specifically tagged as "32-bit Integer" an implicit
147 type-conversion will take placce *without* requiring that type-conversion
148 to be explicitly done with its own separate instruction.
149
150 However, implicit type-conversion is not only quite burdensome to
151 implement (explosion of inferred type-to-type conversion) but also is
152 never really going to be complete. It gets even worse when bit-widths
153 also have to be taken into consideration.
154
155 Overall, type-conversion is generally best to leave to explicit
156 type-conversion instructions, or in definite specific use-cases left to
157 be part of an actual instruction (DSP or FP)
158
159 ## Zero-overhead loops vs explicit loops
160
161 The initial Draft P-SIMD Proposal by Chuanhua Chang of Andes Technology
162 contains an extremely interesting feature: zero-overhead loops. This
163 proposal would basically allow an inner loop of instructions to be
164 repeated indefinitely, a fixed number of times.
165
166 Its specific advantage over explicit loops is that the pipeline in a DSP
167 can potentially be kept completely full *even in an in-order single-issue
168 implementation*. Normally, it requires a superscalar architecture and
169 out-of-order execution capabilities to "pre-process" instructions in
170 order to keep ALU pipelines 100% occupied.
171
172 By bringing that capability in, this proposal could offer a way to increase
173 pipeline activity even in simpler implementations in the one key area
174 which really matters: the inner loop.
175
176 However when looking at much more comprehensive schemes
177 "A portable specification of zero-overhead loop control hardware
178 applied to embedded processors" (ZOLC), optimising only the single
179 inner loop seems inadequate, tending to suggest that ZOLC may be
180 better off being proposed as an entirely separate Extension.
181
182 ## Mask and Tagging (Predication)
183
184 Tagging (aka Masks aka Predication) is a pseudo-method of implementing
185 simplistic branching in a parallel fashion, by allowing execution on
186 elements of a vector to be switched on or off depending on the results
187 of prior operations in the same array position.
188
189 The reason for considering this is simple: by *definition* it
190 is not possible to perform individual parallel branches in a SIMD
191 (Single-Instruction, **Multiple**-Data) context. Branches (modifying
192 of the Program Counter) will result in *all* parallel data having
193 a different instruction executed on it: that's just the definition of
194 SIMD, and it is simply unavoidable.
195
196 So these are the ways in which conditional execution may be implemented:
197
198 * explicit compare and branch: BNE x, y -> offs would jump offs
199 instructions if x was not equal to y
200 * explicit store of tag condition: CMP x, y -> tagbit
201 * implicit (condition-code) ADD results in a carry, carry bit implicitly
202 (or sometimes explicitly) goes into a "tag" (mask) register
203
204 The first of these is a "normal" branch method, which is flat-out impossible
205 to parallelise without look-ahead and effectively rewriting instructions.
206 This would defeat the purpose of RISC.
207
208 The latter two are where parallelism becomes easy to do without complexity:
209 every operation is modified to be "conditionally executed" (in an explicit
210 way directly in the instruction format *or* implicitly).
211
212 RVV (Vector-Extension) proposes to have *explicit* storing of the compare
213 in a tag/mask register, and to *explicitly* have every vector operation
214 *require* that its operation be "predicated" on the bits within an
215 explicitly-named tag/mask register.
216
217 SIMD (P-Extension) has not yet published precise documentation on what its
218 schema is to be: there is however verbal indication at the time of writing
219 that:
220
221 > The "compare" instructions in the DSP/SIMD ISA proposed by Andes will
222 > be executed using the same compare ALU logic for the base ISA with some
223 > minor modifications to handle smaller data types. The function will not
224 > be duplicated.
225
226 This is an *implicit* form of predication as the base RV ISA does not have
227 condition-codes or predication. By adding a CSR it becomes possible
228 to also tag certain registers as "predicated if referenced as a destination".
229 Example:
230
231 // in future operations if r0 is the destination use r5 as
232 // the PREDICATION register
233 IMPLICICSRPREDICATE r0, r5
234 // store the compares in r5 as the PREDICATION register
235 CMPEQ8 r5, r1, r2
236 // r0 is used here. ah ha! that means it's predicated using r5!
237 ADD8 r0, r1, r3
238
239 With enough registers (and there are enough registers) some fairly
240 complex predication can be set up and yet still execute without significant
241 stalling, even in a simple non-superscalar architecture.
242
243 ### Retro-fitting Predication into branch-explicit ISA
244
245 One of the goals of this parallelism proposal is to avoid instruction
246 duplication. However, with the base ISA having been designed explictly
247 to *avoid* condition-codes entirely, shoe-horning predication into it
248 bcomes quite challenging.
249
250 However what if all branch instructions, if referencing a vectorised
251 register, were instead given *completely new analogous meanings* that
252 resulted in a parallel bit-wise predication register being set? This
253 would have to be done for both C.BEQZ and C.BNEZ, as well as BEQ, BNE,
254 BLT and BGE.
255
256 We might imagine that FEQ, FLT and FLT would also need to be converted,
257 however these are effectively *already* in the precise form needed and
258 do not need to be converted *at all*! The difference is that FEQ, FLT
259 and FLE *specifically* write a 1 to an integer register if the condition
260 holds, and 0 if not. All that needs to be done here is to say, "if
261 the integer register is tagged with a bit that says it is a predication
262 register, the **bit** in the integer register is set based on the
263 current vector index" instead.
264
265 There is, in the standard Conditional Branch instruction, more than
266 adequate space to interpret it in a similar fashion:
267
268 [[!table data="""
269 31 |30 ..... 25 |24 ... 20 | 19 ... 15 | 14 ...... 12 | 11 ....... 8 | 7 | 6 ....... 0 |
270 imm[12] | imm[10:5] | rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
271 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
272 offset[12,10:5] || src2 | src1 | BEQ | offset[11,4:1] || BRANCH |
273 """]]
274
275 This would become:
276
277 [[!table data="""
278 31 |30 ..... 25 |24 ... 20 | 19 ... 15 | 14 ...... 12 | 11 ....... 8 | 7 | 6 ....... 0 |
279 imm[12] | imm[10:5] | rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
280 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
281 reserved || src2 | src1 | BEQ | predicate rs3 || BRANCH |
282 """]]
283
284 Similarly the C.BEQZ and C.BNEZ instruction format may be retro-fitted,
285 with the interesting side-effect that there is space within what is presently
286 the "immediate offset" field to reinterpret that to add in not only a bit
287 field to distinguish between floating-point compare and integer compare,
288 not only to add in a second source register, but also use some of the bits as
289 a predication target as well.
290
291 [[!table data="""
292 15 ...... 13 | 12 ........... 10 | 9..... 7 | 6 ................. 2 | 1 .. 0 |
293 funct3 | imm | rs10 | imm | op |
294 3 | 3 | 3 | 5 | 2 |
295 C.BEQZ | offset[8,4:3] | src | offset[7:6,2:1,5] | C1 |
296 """]]
297
298 Now uses the CS format:
299
300 [[!table data="""
301 15 ...... 13 | 12 ........... 10 | 9..... 7 | 6 .. 5 | 4......... 2 | 1 .. 0 |
302 funct3 | imm | rs10 | imm | | op |
303 3 | 3 | 3 | 2 | 3 | 2 |
304 C.BEQZ | predicate rs3 | src1 | I/F B | src2 | C1 |
305 """]]
306
307 Bit 6 would be decoded as "operation refers to Integer or Float" including
308 interpreting src1 and src2 accordingly as outlined in Table 12.2 of the
309 "C" Standard, version 2.0,
310 whilst Bit 5 would allow the operation to be extended, in combination with
311 funct3 = 110 or 111: a combination of four distinct comparison operators.
312
313 ## Conclusions
314
315 In the above sections the five different ways where parallel instruction
316 execution has closely and loosely inter-related implications for the ISA and
317 for implementors, were outlined. The pluses and minuses came out as
318 follows:
319
320 * Fixed vs variable parallelism: <b>variable</b>
321 * Implicit (indirect) vs fixed (integral) instruction bit-width: <b>indirect</b>
322 * Implicit vs explicit type-conversion: <b>explicit</b>
323 * Implicit vs explicit inner loops: <b>implicit but best done separately</b>
324 * Tag or no-tag: <b>Complex but highly beneficial</b>
325
326 In particular:
327
328 * variable-length vectors came out on top because of the high setup, teardown
329 and corner-cases associated with the fixed width of SIMD.
330 * Implicit bit-width helps to extend the ISA to escape from
331 former limitations and restrictions (in a backwards-compatible fashion),
332 whilst also leaving implementors free to simmplify implementations
333 by using actual explicit internal parallelism.
334 * Implicit (zero-overhead) loops provide a means to keep pipelines
335 potentially 100% occupied in a single-issue in-order implementation
336 i.e. *without* requiring a super-scalar or out-of-order architecture,
337 but doing a proper, full job (ZOLC) is an entirely different matter.
338
339 Constructing a SIMD/Simple-Vector proposal based around four of these five
340 requirements would therefore seem to be a logical thing to do.
341
342 # Instruction Format
343
344 **TODO** *basically borrow from both P and V, which should be quite simple
345 to do, with the exception of Tag/no-tag, which needs a bit more
346 thought. V's Section 17.19 of Draft V2.3 spec is reminiscent of B's BGS
347 gather-scatterer, and, if implemented, could actually be a really useful
348 way to span 8-bit up to 64-bit groups of data, where BGS as it stands
349 and described by Clifford does **bits** of up to 16 width. Lots to
350 look at and investigate!*
351
352 # Note on implementation of parallelism
353
354 One extremely important aspect of this proposal is to respect and support
355 implementors desire to focus on power, area or performance. In that regard,
356 it is proposed that implementors be free to choose whether to implement
357 the Vector (or variable-width SIMD) parallelism as sequential operations
358 with a single ALU, fully parallel (if practical) with multiple ALUs, or
359 a hybrid combination of both.
360
361 In Broadcom's Videocore-IV, they chose hybrid, and called it "Virtual
362 Parallelism". They achieve a 16-way SIMD at an **instruction** level
363 by providing a combination of a 4-way parallel ALU *and* an externally
364 transparent loop that feeds 4 sequential sets of data into each of the
365 4 ALUs.
366
367 Also in the same core, it is worth noting that particularly uncommon
368 but essential operations (Reciprocal-Square-Root for example) are
369 *not* part of the 4-way parallel ALU but instead have a *single* ALU.
370 Under the proposed Vector (varible-width SIMD) implementors would
371 be free to do precisely that: i.e. free to choose *on a per operation
372 basis* whether and how much "Virtual Parallelism" to deploy.
373
374 It is absolutely critical to note that it is proposed that such choices MUST
375 be **entirely transparent** to the end-user and the compiler. Whilst
376 a Vector (varible-width SIM) may not precisely match the width of the
377 parallelism within the implementation, the end-user **should not care**
378 and in this way the performance benefits are gained but the ISA remains
379 straightforward. All that happens at the end of an instruction run is: some
380 parallel units (if there are any) would remain offline, completely
381 transparently to the ISA, the program, and the compiler.
382
383 The "SIMD considered harmful" trap of having huge complexity and extra
384 instructions to deal with corner-cases is thus avoided, and implementors
385 get to choose precisely where to focus and target the benefits of their
386 implementation efforts, without "extra baggage".
387
388 # CSRs <a name="csrs"></a>
389
390 There are a number of CSRs needed, which are used at the instruction
391 decode phase to re-interpret standard RV opcodes (a practice that has precedent
392 in the setting of MISA to enable / disable extensions).
393
394 * Integer Register N is Vector of length M: r(N) -> r(N..N+M-1)
395 * Integer Register N is of implicit bitwidth M (M=default,8,16,32,64)
396 * Floating-point Register N is Vector of length M: r(N) -> r(N..N+M-1)
397 * Floating-point Register N is of implicit bitwidth M (M=default,8,16,32,64)
398 * Integer Register N is a Predication Register (key-value store)
399
400 Notes:
401
402 * for the purposes of LOAD / STORE, Integer Registers which are
403 marked as a Vector will result in a Vector LOAD / STORE.
404 * Vector Lengths are *not* the same as vsetl but are an integral part
405 of vsetl.
406 * Actual vector length is *multipled* by how many blocks of length
407 "bitwidth" may fit into an XLEN-sized register file.
408 * Predication is a key-value store due to the implicit referencing,
409 as opposed to having the predicate register explicitly in the instruction.
410
411 ## Predication CSR
412
413 The Predication CSR is a key-value store indicating whether, if a given
414 destination register (integer or floating-point) is referred to in an
415 instruction, it is to be predicated. The first entry is whether predication
416 is enabled. The second entry is whether the register index refers to a
417 floating-point or an integer register. The third entry is the index
418 of that register which is to be predicated (if referred to). The fourth entry
419 is the integer register that is treated as a bitfield, indexable by the
420 vector element index.
421
422 | RegNo | 6 | 5 | (4..0) | (4..0) |
423 | ----- | - | - | ------- | ------- |
424 | r0 | pren0 | i/f | regidx | predidx |
425 | r1 | pren1 | i/f | regidx | predidx |
426 | .. | pren.. | i/f | regidx | predidx |
427 | r15 | pren15 | i/f | regidx | predidx |
428
429 The Predication CSR Table is a key-value store, so implementation-wise
430 it will be faster to turn the table around (maintain topologically
431 equivalent state):
432
433 fp_pred_enabled[32];
434 int_pred_enabled[32];
435 for (i = 0; i < 16; i++)
436 if CSRpred[i].pren:
437 idx = CSRpred[i].regidx
438 predidx = CSRpred[i].predidx
439 if CSRpred[i].type == 0: # integer
440 int_pred_enabled[idx] = 1
441 int_pred_reg[idx] = predidx
442 else:
443 fp_pred_enabled[idx] = 1
444 fp_pred_reg[idx] = predidx
445
446 So when an operation is to be predicated, it is the internal state that
447 is used. In Section 6.4.2 of Hwacha's Manual (EECS-2015-262) the following
448 pseudo-code for operations is given, where p is the explicit (direct)
449 reference to the predication register to be used:
450
451 for (int i=0; i<vl; ++i)
452 if ([!]preg[p][i])
453 (d ? vreg[rd][i] : sreg[rd]) =
454 iop(s1 ? vreg[rs1][i] : sreg[rs1],
455 s2 ? vreg[rs2][i] : sreg[rs2]); // for insts with 2 inputs
456
457 This instead becomes an *indirect* reference using the *internal* state
458 table generated from the Predication CSR key-value store:
459
460 if type(iop) == INT:
461 pred_enabled = int_pred_enabled
462 preg = int_pred_reg[rd]
463 else:
464 pred_enabled = fp_pred_enabled
465 preg = fp_pred_reg[rd]
466
467 for (int i=0; i<vl; ++i)
468 if (preg_enabled[rd] && [!]preg[i])
469 (d ? vreg[rd][i] : sreg[rd]) =
470 iop(s1 ? vreg[rs1][i] : sreg[rs1],
471 s2 ? vreg[rs2][i] : sreg[rs2]); // for insts with 2 inputs
472
473
474
475 ## MAXVECTORDEPTH
476
477 MAXVECTORDEPTH is the same concept as MVL in RVV. However in Simple-V,
478 given that its primary (base, unextended) purpose is for 3D, Video and
479 other purposes (not requiring supercomputing capability), it makes sense
480 to limit MAXVECTORDEPTH to the regfile bitwidth (32 for RV32, 64 for RV64
481 and so on).
482
483 The reason for setting this limit is so that predication registers, when
484 marked as such, may fit into a single register as opposed to fanning out
485 over several registers. This keeps the implementation a little simpler.
486
487 ## Vector-length CSRs
488
489 Vector lengths are interpreted as meaning "any instruction referring to
490 r(N) generates implicit identical instructions referring to registers
491 r(N+M-1) where M is the Vector Length". Vector Lengths may be set to
492 use up to 16 registers in the register file.
493
494 One separate CSR table is needed for each of the integer and floating-point
495 register files:
496
497 | RegNo | (3..0) |
498 | ----- | ------ |
499 | r0 | vlen0 |
500 | r1 | vlen1 |
501 | .. | vlen.. |
502 | r31 | vlen31 |
503
504 An array of 32 4-bit CSRs is needed (4 bits per register) to indicate
505 whether a register was, if referred to in any standard instructions,
506 implicitly to be treated as a vector. A vector length of 1 indicates
507 that it is to be treated as a scalar. Vector lengths of 0 are reserved.
508
509 Internally, implementations may choose to use the non-zero vector length
510 to set a bit-field per register, to be used in the instruction decode phase.
511 In this way any standard (current or future) operation involving
512 register operands may detect if the operation is to be vector-vector,
513 vector-scalar or scalar-scalar (standard) simply through a single
514 bit test.
515
516 Note that when using the "vsetl rs1, rs2" instruction (caveat: when the
517 bitwidth is specifically not set) it becomes:
518
519 CSRvlength = MIN(MIN(CSRvectorlen[rs1], MAXVECTORDEPTH), rs2)
520
521 This is in contrast to RVV:
522
523 CSRvlength = MIN(MIN(rs1, MAXVECTORDEPTH), rs2)
524
525 ## Element (SIMD) bitwidth CSRs
526
527 Element bitwidths may be specified with a per-register CSR, and indicate
528 how a register (integer or floating-point) is to be subdivided.
529
530 | RegNo | (2..0) |
531 | ----- | ------ |
532 | r0 | vew0 |
533 | r1 | vew1 |
534 | .. | vew.. |
535 | r31 | vew31 |
536
537 vew may be one of the following (giving a table "bytestable", used below):
538
539 | vew | bitwidth |
540 | --- | -------- |
541 | 000 | default |
542 | 001 | 8 |
543 | 010 | 16 |
544 | 011 | 32 |
545 | 100 | 64 |
546 | 101 | 128 |
547 | 110 | rsvd |
548 | 111 | rsvd |
549
550 Extending this table (with extra bits) is covered in the section
551 "Implementing RVV on top of Simple-V".
552
553 Note that when using the "vsetl rs1, rs2" instruction, taking bitwidth
554 into account, it becomes:
555
556 vew = CSRbitwidth[rs1]
557 if (vew == 0)
558 bytesperreg = (XLEN/8) # or FLEN as appropriate
559 else:
560 bytesperreg = bytestable[vew] # 1 2 4 8 16
561 simdmult = (XLEN/8) / bytesperreg # or FLEN as appropriate
562 vlen = CSRvectorlen[rs1] * simdmult
563 CSRvlength = MIN(MIN(vlen, MAXVECTORDEPTH), rs2)
564
565 The reason for multiplying the vector length by the number of SIMD elements
566 (in each individual register) is so that each SIMD element may optionally be
567 predicated.
568
569 Example:
570
571 * RV32 assumed
572 * CSRintbitwidth[2] = 010 # integer r2 is 16-bit
573 * CSRintvlength[2] = 3 # integer r2 is a vector of length 3
574 * vsetl rs1, 5 # set the vector length to 5
575
576 This is interpreted as follows:
577
578 * Given that the context is RV32, ELEN=32.
579 * With ELEN=32 and bitwidth=16, the number of SIMD elements is 2
580 * Therefore the actual vector length is up to *six* elements
581
582 So when using an operation that uses r2 as a source (or destination)
583 the operation is carried out as follows:
584
585 * 16-bit operation on r2(15..0) - vector element index 0
586 * 16-bit operation on r2(31..16) - vector element index 1
587 * 16-bit operation on r3(15..0) - vector element index 2
588 * 16-bit operation on r3(31..16) - vector element index 3
589 * 16-bit operation on r4(15..0) - vector element index 4
590 * 16-bit operation on r4(31..16) **NOT** carried out due to length being 5
591
592 Predication has been left out of the above example for simplicity.
593
594 # Example of vector / vector, vector / scalar, scalar / scalar => vector add
595
596 register CSRvectorlen[XLEN][4]; # not quite decided yet about this one...
597 register CSRpredicate[XLEN][4]; # 2^4 is max vector length
598 register CSRreg_is_vectorised[XLEN]; # just for fun support scalars as well
599 register x[32][XLEN];
600
601 function op_add(rd, rs1, rs2, predr)
602 {
603    /* note that this is ADD, not PADD */
604    int i, id, irs1, irs2;
605    # checks CSRvectorlen[rd] == CSRvectorlen[rs] etc. ignored
606    # also destination makes no sense as a scalar but what the hell...
607    for (i = 0, id=0, irs1=0, irs2=0; i<CSRvectorlen[rd]; i++)
608       if (CSRpredicate[predr][i]) # i *think* this is right...
609          x[rd+id] <= x[rs1+irs1] + x[rs2+irs2];
610       # now increment the idxs
611       if (CSRreg_is_vectorised[rd]) # bitfield check rd, scalar/vector?
612          id += 1;
613       if (CSRreg_is_vectorised[rs1]) # bitfield check rs1, scalar/vector?
614          irs1 += 1;
615       if (CSRreg_is_vectorised[rs2]) # bitfield check rs2, scalar/vector?
616          irs2 += 1;
617 }
618
619 # V-Extension to Simple-V Comparative Analysis
620
621 This section covers the ways in which Simple-V is comparable
622 to, or more flexible than, V-Extension (V2.3-draft). Also covered is
623 one major weak-point (register files are fixed size, where V is
624 arbitrary length), and how best to deal with that, should V be adapted
625 to be on top of Simple-V.
626
627 The first stages of this section go over each of the sections of V2.3-draft V
628 where appropriate
629
630 ## 17.3 Shape Encoding
631
632 Simple-V's proposed means of expressing whether a register (from the
633 standard integer or the standard floating-point file) is a scalar or
634 a vector is to simply set the vector length to 1. The instruction
635 would however have to specify which register file (integer or FP) that
636 the vector-length was to be applied to.
637
638 Extended shapes (2-D etc) would not be part of Simple-V at all.
639
640 ## 17.4 Representation Encoding
641
642 Simple-V would not have representation-encoding. This is part of
643 polymorphism, which is considered too complex to implement (TODO: confirm?)
644
645 ## 17.5 Element Bitwidth
646
647 This is directly equivalent to Simple-V's "Packed", and implies that
648 integer (or floating-point) are divided down into vector-indexable
649 chunks of size Bitwidth.
650
651 In this way it becomes possible to have ADD effectively and implicitly
652 turn into ADDb (8-bit add), ADDw (16-bit add) and so on, and where
653 vector-length has been set to greater than 1, it becomes a "Packed"
654 (SIMD) instruction.
655
656 It remains to be decided what should be done when RV32 / RV64 ADD (sized)
657 opcodes are used. One useful idea would be, on an RV64 system where
658 a 32-bit-sized ADD was performed, to simply use the least significant
659 32-bits of the register (exactly as is currently done) but at the same
660 time to *respect the packed bitwidth as well*.
661
662 The extended encoding (Table 17.6) would not be part of Simple-V.
663
664 ## 17.6 Base Vector Extension Supported Types
665
666 TODO: analyse. probably exactly the same.
667
668 ## 17.7 Maximum Vector Element Width
669
670 No equivalent in Simple-V
671
672 ## 17.8 Vector Configuration Registers
673
674 TODO: analyse.
675
676 ## 17.9 Legal Vector Unit Configurations
677
678 TODO: analyse
679
680 ## 17.10 Vector Unit CSRs
681
682 TODO: analyse
683
684 > Ok so this is an aspect of Simple-V that I hadn't thought through,
685 > yet (proposal / idea only a few days old!).  in V2.3-Draft ISA Section
686 > 17.10 the CSRs are listed.  I note that there's some general-purpose
687 > CSRs (including a global/active vector-length) and 16 vcfgN CSRs.  i
688 > don't precisely know what those are for.
689
690 >  In the Simple-V proposal, *every* register in both the integer
691 > register-file *and* the floating-point register-file would have at
692 > least a 2-bit "data-width" CSR and probably something like an 8-bit
693 > "vector-length" CSR (less in RV32E, by exactly one bit).
694
695 >  What I *don't* know is whether that would be considered perfectly
696 > reasonable or completely insane.  If it turns out that the proposed
697 > Simple-V CSRs can indeed be stored in SRAM then I would imagine that
698 > adding somewhere in the region of 10 bits per register would be... okay? 
699 > I really don't honestly know.
700
701 >  Would these proposed 10-or-so-bit per-register Simple-V CSRs need to
702 > be multi-ported? No I don't believe they would.
703
704 ## 17.11 Maximum Vector Length (MVL)
705
706 Basically implicitly this is set to the maximum size of the register
707 file multiplied by the number of 8-bit packed ints that can fit into
708 a register (4 for RV32, 8 for RV64 and 16 for RV128).
709
710 ## !7.12 Vector Instruction Formats
711
712 No equivalent in Simple-V because *all* instructions of *all* Extensions
713 are implicitly parallelised (and packed).
714
715 ## 17.13 Polymorphic Vector Instructions
716
717 Polymorphism (implicit type-casting) is deliberately not supported
718 in Simple-V.
719
720 ## 17.14 Rapid Configuration Instructions
721
722 TODO: analyse if this is useful to have an equivalent in Simple-V
723
724 ## 17.15 Vector-Type-Change Instructions
725
726 TODO: analyse if this is useful to have an equivalent in Simple-V
727
728 ## 17.16 Vector Length
729
730 Has a direct corresponding equivalent.
731
732 ## 17.17 Predicated Execution
733
734 Predicated Execution is another name for "masking" or "tagging". Masked
735 (or tagged) implies that there is a bit field which is indexed, and each
736 bit associated with the corresponding indexed offset register within
737 the "Vector". If the tag / mask bit is 1, when a parallel operation is
738 issued, the indexed element of the vector has the operation carried out.
739 However if the tag / mask bit is *zero*, that particular indexed element
740 of the vector does *not* have the requested operation carried out.
741
742 In V2.3-draft V, there is a significant (not recommended) difference:
743 the zero-tagged elements are *set to zero*. This loses a *significant*
744 advantage of mask / tagging, particularly if the entire mask register
745 is itself a general-purpose register, as that general-purpose register
746 can be inverted, shifted, and'ed, or'ed and so on. In other words
747 it becomes possible, especially if Carry/Overflow from each vector
748 operation is also accessible, to do conditional (step-by-step) vector
749 operations including things like turn vectors into 1024-bit or greater
750 operands with very few instructions, by treating the "carry" from
751 one instruction as a way to do "Conditional add of 1 to the register
752 next door". If V2.3-draft V sets zero-tagged elements to zero, such
753 extremely powerful techniques are simply not possible.
754
755 It is noted that there is no mention of an equivalent to BEXT (element
756 skipping) which would be particularly fascinating and powerful to have.
757 In this mode, the "mask" would skip elements where its mask bit was zero
758 in either the source or the destination operand.
759
760 Lots to be discussed.
761
762 ## 17.18 Vector Load/Store Instructions
763
764 The Vector Load/Store instructions as proposed in V are extremely powerful
765 and can be used for reordering and regular restructuring.
766
767 Vector Load:
768
769 if (unit-strided) stride = elsize;
770 else stride = areg[as2]; // constant-strided
771 for (int i=0; i<vl; ++i)
772 if ([!]preg[p][i])
773 for (int j=0; j<seglen+1; j++)
774 vreg[vd+j][i] = mem[areg[as1] + (i*(seglen+1)+j)*stride];
775
776 Store:
777
778 if (unit-strided) stride = elsize;
779 else stride = areg[as2]; // constant-strided
780 for (int i=0; i<vl; ++i)
781 if ([!]preg[p][i])
782 for (int j=0; j<seglen+1; j++)
783 mem[areg[base] + (i*(seglen+1)+j)*stride] = vreg[vd+j][i];
784
785 Indexed Load:
786
787 for (int i=0; i<vl; ++i)
788 if ([!]preg[p][i])
789 for (int j=0; j<seglen+1; j++)
790 vreg[vd+j][i] = mem[sreg[base] + vreg[vs2][i] + j*elsize];
791
792 Indexed Store:
793
794 for (int i=0; i<vl; ++i)
795 if ([!]preg[p][i])
796 for (int j=0; j<seglen+1; j++)
797 mem[sreg[base] + vreg[vs2][i] + j*elsize] = vreg[vd+j][i];
798
799 Keeping these instructions as-is for Simple-V is highly recommended.
800 However: one of the goals of this Extension is to retro-fit (re-use)
801 existing RV Load/Store:
802
803 [[!table data="""
804 31 20 | 19 15 | 14 12 | 11 7 | 6 0 |
805 imm[11:0] | rs1 | funct3 | rd | opcode |
806 12 | 5 | 3 | 5 | 7 |
807 offset[11:0] | base | width | dest | LOAD |
808 """]]
809
810 [[!table data="""
811 31 25 | 24 20 | 19 15 | 14 12 | 11 7 | 6 0 |
812 imm[11:5] | rs2 | rs1 | funct3 | imm[4:0] | opcode |
813 7 | 5 | 5 | 3 | 5 | 7 |
814 offset[11:5] | src | base | width | offset[4:0] | STORE |
815 """]]
816
817 The RV32 instruction opcodes as follows:
818
819 [[!table data="""
820 31 28 27 | 26 25 | 24 20 |19 15 |14| 13 12 | 11 7 | 6 0 | op |
821 imm[4:0] | 00 | 00000 | rs1 | 1| m | vd | 0000111 | VLD |
822 imm[4:0] | 01 | rs2 | rs1 | 1| m | vd | 0000111 | VLDS|
823 imm[4:0] | 11 | vs2 | rs1 | 1| m | vd | 0000111 | VLDX|
824 vs3 | 00 | 00000 | rs1 |1 | m |imm[4:0]| 0100111 |VST |
825 vs3 | 01 | rs2 | rs1 |1 | m |imm[4:0]| 0100111 |VSTS |
826 vs3 | 11 | vs2 | rs1 |1 | m |imm[4:0]| 0100111 |VSTX |
827 """]]
828
829 Conversion on LOAD as follows:
830
831 * rd or rs1 are CSR-vectorised indicating "Vector Mode"
832 * rd equivalent to vd
833 * rs1 equivalent to rs1
834 * imm[4:0] from RV format (11..7]) is same
835 * imm[9:5] from RV format (29..25] is rs2 (rs2=00000 for VLD)
836 * imm[11:10] from RV format (31..30] is opcode (VLD, VLDS, VLDX)
837 * width from RV format (14..12) is same (width and zero/sign extend)
838
839 [[!table data="""
840 31 30 | 29 25 | 24 20 | 19 15 | 14 12 | 11 7 | 6 0 |
841 imm[11:0] ||| rs1 | funct3 | rd | opcode |
842 2 | 5 | 5 | 5 | 3 | 5 | 7 |
843 00 | 00000 | imm[4:0] | base | width | dest | LOAD |
844 01 | rs2 | imm[4:0] | base | width | dest | LOAD.S |
845 11 | rs2 | imm[4:0] | base | width | dest | LOAD.X |
846 """]]
847
848 Similar conversion on STORE as follows:
849
850 [[!table data="""
851 31 30 | 29 25 | 24 20 | 19 15 | 14 12 | 11 7 | 6 0 |
852 imm[11:0] ||| rs1 | funct3 | rd | opcode |
853 2 | 5 | 5 | 5 | 3 | 5 | 7 |
854 00 | 00000 | src | base | width | offs[4:0] | LOAD |
855 01 | rs3 | src | base | width | offs[4:0] | LOAD.S |
856 11 | rs3 | src | base | width | offs[4:0] | LOAD.X |
857 """]]
858
859 Notes:
860
861 * Predication CSR-marking register is not explicitly shown in instruction
862 * In both LOAD and STORE, it is possible now to rs2 (or rs3) as a vector.
863 * That in turn means that Indexed Load need not have an explicit opcode
864 * That in turn means that bit 30 may indicate "stride" and bit 31 is free
865
866 Revised LOAD:
867
868 [[!table data="""
869 31 | 30 | 29 25 | 24 20 | 19 15 | 14 12 | 11 7 | 6 0 |
870 imm[11:0] |||| rs1 | funct3 | rd | opcode |
871 1 | 1 | 5 | 5 | 5 | 3 | 5 | 7 |
872 ? | s | rs2 | imm[4:0] | base | width | dest | LOAD |
873 """]]
874
875 Where in turn the pseudo-code may now combine the two:
876
877 if (unit-strided) stride = elsize;
878 else stride = areg[as2]; // constant-strided
879 for (int i=0; i<vl; ++i)
880 if ([!]preg[p][i])
881 for (int j=0; j<seglen+1; j++)
882 {
883 if CSRvectorised[rs2])
884 offs = vreg[rs2][i]
885 else
886 offs = i*(seglen+1)*stride;
887 vreg[vd+j][i] = mem[sreg[base] + offs + j*stride];
888 }
889
890 Notes:
891
892 * j is multiplied by stride, not elsize, including in the rs2 vectorised case.
893 * There may be more sophisticated variants involving the 31st bit, however
894 it would be nice to reserve that bit for post-increment of address registers
895 *
896
897 ## 17.19 Vector Register Gather
898
899 TODO
900
901 ## TODO, sort
902
903 > However, there are also several features that go beyond simply attaching VL
904 > to a scalar operation and are crucial to being able to vectorize a lot of
905 > code. To name a few:
906 > - Conditional execution (i.e., predicated operations)
907 > - Inter-lane data movement (e.g. SLIDE, SELECT)
908 > - Reductions (e.g., VADD with a scalar destination)
909
910 Ok so the Conditional and also the Reductions is one of the reasons
911 why as part of SimpleV / variable-SIMD / parallelism (gah gotta think
912 of a decent name) i proposed that it be implemented as "if you say r0
913 is to be a vector / SIMD that means operations actually take place on
914 r0,r1,r2... r(N-1)".
915
916 Consequently any parallel operation could be paused (or... more
917 specifically: vectors disabled by resetting it back to a default /
918 scalar / vector-length=1) yet the results would actually be in the
919 *main register file* (integer or float) and so anything that wasn't
920 possible to easily do in "simple" parallel terms could be done *out*
921 of parallel "mode" instead.
922
923 I do appreciate that the above does imply that there is a limit to the
924 length that SimpleV (whatever) can be parallelised, namely that you
925 run out of registers! my thought there was, "leave space for the main
926 V-Ext proposal to extend it to the length that V currently supports".
927 Honestly i had not thought through precisely how that would work.
928
929 Inter-lane (SELECT) i saw 17.19 in V2.3-Draft p117, I liked that,
930 it reminds me of the discussion with Clifford on bit-manipulation
931 (gather-scatter except not Bit Gather Scatter, *data* gather scatter): if
932 applied "globally and outside of V and P" SLIDE and SELECT might become
933 an extremely powerful way to do fast memory copy and reordering [2[.
934
935 However I haven't quite got my head round how that would work: i am
936 used to the concept of register "tags" (the modern term is "masks")
937 and i *think* if "masks" were applied to a Simple-V-enhanced LOAD /
938 STORE you would get the exact same thing as SELECT.
939
940 SLIDE you could do simply by setting say r0 vector-length to say 16
941 (meaning that if referred to in any operation it would be an implicit
942 parallel operation on *all* registers r0 through r15), and temporarily
943 set say.... r7 vector-length to say... 5. Do a LOAD on r7 and it would
944 implicitly mean "load from memory into r7 through r11". Then you go
945 back and do an operation on r0 and ta-daa, you're actually doing an
946 operation on a SLID {SLIDED?) vector.
947
948 The advantage of Simple-V (whatever) over V would be that you could
949 actually do *operations* in the middle of vectors (not just SLIDEs)
950 simply by (as above) setting r0 vector-length to 16 and r7 vector-length
951 to 5. There would be nothing preventing you from doing an ADD on r0
952 (which meant do an ADD on r0 through r15) followed *immediately in the
953 next instruction with no setup cost* a MUL on r7 (which actually meant
954 "do a parallel MUL on r7 through r11").
955
956 btw it's worth mentioning that you'd get scalar-vector and vector-scalar
957 implicitly by having one of the source register be vector-length 1
958 (the default) and one being N > 1. but without having special opcodes
959 to do it. i *believe* (or more like "logically infer or deduce" as
960 i haven't got access to the spec) that that would result in a further
961 opcode reduction when comparing [draft] V-Ext to [proposed] Simple-V.
962
963 Also, Reduction *might* be possible by specifying that the destination be
964 a scalar (vector-length=1) whilst the source be a vector. However... it
965 would be an awful lot of work to go through *every single instruction*
966 in *every* Extension, working out which ones could be parallelised (ADD,
967 MUL, XOR) and those that definitely could not (DIV, SUB). Is that worth
968 the effort? maybe. Would it result in huge complexity? probably.
969 Could an implementor just go "I ain't doing *that* as parallel!
970 let's make it virtual-parallelism (sequential reduction) instead"?
971 absolutely. So, now that I think it through, Simple-V (whatever)
972 covers Reduction as well. huh, that's a surprise.
973
974
975 > - Vector-length speculation (making it possible to vectorize some loops with
976 > unknown trip count) - I don't think this part of the proposal is written
977 > down yet.
978
979 Now that _is_ an interesting concept. A little scary, i imagine, with
980 the possibility of putting a processor into a hard infinite execution
981 loop... :)
982
983
984 > Also, note the vector ISA consumes relatively little opcode space (all the
985 > arithmetic fits in 7/8ths of a major opcode). This is mainly because data
986 > type and size is a function of runtime configuration, rather than of opcode.
987
988 yes. i love that aspect of V, i am a huge fan of polymorphism [1]
989 which is why i am keen to advocate that the same runtime principle be
990 extended to the rest of the RISC-V ISA [3]
991
992 Yikes that's a lot. I'm going to need to pull this into the wiki to
993 make sure it's not lost.
994
995 [1] inherent data type conversion: 25 years ago i designed a hypothetical
996 hyper-hyper-hyper-escape-code-sequencing ISA based around 2-bit
997 (escape-extended) opcodes and 2-bit (escape-extended) operands that
998 only required a fixed 8-bit instruction length. that relied heavily
999 on polymorphism and runtime size configurations as well. At the time
1000 I thought it would have meant one HELL of a lot of CSRs... but then I
1001 met RISC-V and was cured instantly of that delusion^Wmisapprehension :)
1002
1003 [2] Interestingly if you then also add in the other aspect of Simple-V
1004 (the data-size, which is effectively functionally orthogonal / identical
1005 to "Packed" of Packed-SIMD), masked and packed *and* vectored LOAD / STORE
1006 operations become byte / half-word / word augmenters of B-Ext's proposed
1007 "BGS" i.e. where B-Ext's BGS dealt with bits, masked-packed-vectored
1008 LOAD / STORE would deal with 8 / 16 / 32 bits at a time. Where it
1009 would get really REALLY interesting would be masked-packed-vectored
1010 B-Ext BGS instructions. I can't even get my head fully round that,
1011 which is a good sign that the combination would be *really* powerful :)
1012
1013 [3] ok sadly maybe not the polymorphism, it's too complicated and I
1014 think would be much too hard for implementors to easily "slide in" to an
1015 existing non-Simple-V implementation.  i say that despite really *really*
1016 wanting IEEE 704 FP Half-precision to end up somewhere in RISC-V in some
1017 fashion, for optimising 3D Graphics.  *sigh*.
1018
1019 ## TODO: analyse, auto-increment on unit-stride and constant-stride
1020
1021 so i thought about that for a day or so, and wondered if it would be
1022 possible to propose a variant of zero-overhead loop that included
1023 auto-incrementing the two address registers a2 and a3, as well as
1024 providing a means to interact between the zero-overhead loop and the
1025 vsetvl instruction. a sort-of pseudo-assembly of that would look like:
1026
1027 # a2 to be auto-incremented by t0 times 4
1028 zero-overhead-set-auto-increment a2, t0, 4
1029 # a2 to be auto-incremented by t0 times 4
1030 zero-overhead-set-auto-increment a3, t0, 4
1031 zero-overhead-set-loop-terminator-condition a0 zero
1032 zero-overhead-set-start-end stripmine, stripmine+endoffset
1033 stripmine:
1034 vsetvl t0,a0
1035 vlw v0, a2
1036 vlw v1, a3
1037 vfma v1, a1, v0, v1
1038 vsw v1, a3
1039 sub a0, a0, t0
1040 stripmine+endoffset:
1041
1042 the question is: would something like this even be desirable? it's a
1043 variant of auto-increment [1]. last time i saw any hint of auto-increment
1044 register opcodes was in the 1980s... 68000 if i recall correctly... yep
1045 see [1]
1046
1047 [1] http://fourier.eng.hmc.edu/e85_old/lectures/instruction/node6.html
1048
1049 Reply:
1050
1051 Another option for auto-increment is for vector-memory-access instructions
1052 to support post-increment addressing for unit-stride and constant-stride
1053 modes. This can be implemented by the scalar unit passing the operation
1054 to the vector unit while itself executing an appropriate multiply-and-add
1055 to produce the incremented address. This does *not* require additional
1056 ports on the scalar register file, unlike scalar post-increment addressing
1057 modes.
1058
1059 ## TODO: instructions (based on Hwacha) V-Ext duplication analysis
1060
1061 This is partly speculative due to lack of access to an up-to-date
1062 V-Ext Spec (V2.3-draft RVV 0.4-Draft at the time of writing). However
1063 basin an analysis instead on Hwacha, a cursory examination shows over
1064 an **85%** duplication of V-Ext operand-related instructions when
1065 compared to Simple-V on a standard RG64G base. Even Vector Fetch
1066 is analogous to "zero-overhead loop".
1067
1068 Exceptions are:
1069
1070 * Vector Indexed Memory Instructions (non-contiguous)
1071 * Vector Atomic Memory Instructions.
1072 * Some of the Vector Misc ops: VEIDX, VFIRST, VCLASS, VPOPC
1073 and potentially more.
1074 * Consensual Jump
1075
1076 Table of RV32V Instructions
1077
1078 | RV32V | RV Equivalent (FP) | RV Equivalent (Int) | Notes |
1079 | ----- | --- | | |
1080 | VADD | FADD | ADD | |
1081 | VSUB | FSUB | SUB | |
1082 | VSL | | SLL | |
1083 | VSR | | SRL | |
1084 | VAND | | AND | |
1085 | VOR | | OR | |
1086 | VXOR | | XOR | |
1087 | VSEQ | FEQ | BEQ | {1} |
1088 | VSNE | !FEQ | BNE | {1} |
1089 | VSLT | FLT | BLT | {1} |
1090 | VSGE | !FLE | BGE | {1} |
1091 | VCLIP | | | |
1092 | VCVT | FCVT | | |
1093 | VMPOP | | | |
1094 | VMFIRST | | | |
1095 | VEXTRACT | | | |
1096 | VINSERT | | | |
1097 | VMERGE | | | |
1098 | VSELECT | | | |
1099 | VSLIDE | | | |
1100 | VDIV | FDIV | DIV | |
1101 | VREM | | REM | |
1102 | VMUL | FMUL | MUL | |
1103 | VMULH | | | |
1104 | VMIN | FMIN | | |
1105 | VMAX | FMUX | | |
1106 | VSGNJ | FSGNJ | | |
1107 | VSGNJN | FSGNJN | | |
1108 | VSGNJX | FSNGJX | | |
1109 | VSQRT | FSQRT | | |
1110 | VCLASS | | | |
1111 | VPOPC | | | |
1112 | VADDI | | ADDI | |
1113 | VSLI | | SLI | |
1114 | VSRI | | SRI | |
1115 | VANDI | | ANDI | |
1116 | VORI | | ORI | |
1117 | VXORI | | XORI | |
1118 | VCLIPI | | | |
1119 | VMADD | FMADD | | |
1120 | VMSUB | FMSUB | | |
1121 | VNMADD | FNMSUB | | |
1122 | VNMSUB | FNMADD | | |
1123 | VLD | FLD | LD | |
1124 | VLDS | | LW | |
1125 | VLDX | | LWU | |
1126 | VST | FST | ST | |
1127 | VSTS | | | |
1128 | VSTX | | | |
1129 | VAMOSWAP | | AMOSWAP | |
1130 | VAMOADD | | AMOADD | |
1131 | VAMOAND | | AMOAND | |
1132 | VAMOOR | | AMOOR | |
1133 | VAMOXOR | | AMOXOR | |
1134 | VAMOMIN | | AMOMIN | |
1135 | VAMOMAX | | AMOMAX | |
1136
1137 Notes:
1138
1139 * {1} retro-fit predication variants into branch instructions (base and C),
1140 decoding triggered by CSR bit marking register as "Vector type".
1141
1142 ## TODO: sort
1143
1144 > I suspect that the "hardware loop" in question is actually a zero-overhead
1145 > loop unit that diverts execution from address X to address Y if a certain
1146 > condition is met.
1147
1148  not quite.  The zero-overhead loop unit interestingly would be at
1149 an [independent] level above vector-length.  The distinctions are
1150 as follows:
1151
1152 * Vector-length issues *virtual* instructions where the register
1153 operands are *specifically* altered (to cover a range of registers),
1154 whereas zero-overhead loops *specifically* do *NOT* alter the operands
1155 in *ANY* way.
1156
1157 * Vector-length-driven "virtual" instructions are driven by *one*
1158 and *only* one instruction (whether it be a LOAD, STORE, or pure
1159 one/two/three-operand opcode) whereas zero-overhead loop units
1160 specifically apply to *multiple* instructions.
1161
1162 Where vector-length-driven "virtual" instructions might get conceptually
1163 blurred with zero-overhead loops is LOAD / STORE.  In the case of LOAD /
1164 STORE, to actually be useful, vector-length-driven LOAD / STORE should
1165 increment the LOAD / STORE memory address to correspondingly match the
1166 increment in the register bank.  example:
1167
1168 * set vector-length for r0 to 4
1169 * issue RV32 LOAD from addr 0x1230 to r0
1170
1171 translates effectively to:
1172
1173 * RV32 LOAD from addr 0x1230 to r0
1174 * ...
1175 * ...
1176 * RV32 LOAD from addr 0x123B to r3
1177
1178 # P-Ext ISA
1179
1180 ## 16-bit Arithmetic
1181
1182 | Mnemonic | 16-bit Instruction | Simple-V Equivalent |
1183 | ------------------ | ------------------------- | ------------------- |
1184 | ADD16 rt, ra, rb | add | RV ADD (bitwidth=16) |
1185 | RADD16 rt, ra, rb | Signed Halving add | |
1186 | URADD16 rt, ra, rb | Unsigned Halving add | |
1187 | KADD16 rt, ra, rb | Signed Saturating add | |
1188 | UKADD16 rt, ra, rb | Unsigned Saturating add | |
1189 | SUB16 rt, ra, rb | sub | RV SUB (bitwidth=16) |
1190 | RSUB16 rt, ra, rb | Signed Halving sub | |
1191 | URSUB16 rt, ra, rb | Unsigned Halving sub | |
1192 | KSUB16 rt, ra, rb | Signed Saturating sub | |
1193 | UKSUB16 rt, ra, rb | Unsigned Saturating sub | |
1194 | CRAS16 rt, ra, rb | Cross Add & Sub | |
1195 | RCRAS16 rt, ra, rb | Signed Halving Cross Add & Sub | |
1196 | URCRAS16 rt, ra, rb| Unsigned Halving Cross Add & Sub | |
1197 | KCRAS16 rt, ra, rb | Signed Saturating Cross Add & Sub | |
1198 | UKCRAS16 rt, ra, rb| Unsigned Saturating Cross Add & Sub | |
1199 | CRSA16 rt, ra, rb | Cross Sub & Add | |
1200 | RCRSA16 rt, ra, rb | Signed Halving Cross Sub & Add | |
1201 | URCRSA16 rt, ra, rb| Unsigned Halving Cross Sub & Add | |
1202 | KCRSA16 rt, ra, rb | Signed Saturating Cross Sub & Add | |
1203 | UKCRSA16 rt, ra, rb| Unsigned Saturating Cross Sub & Add | |
1204
1205 ## 8-bit Arithmetic
1206
1207 | Mnemonic | 16-bit Instruction | Simple-V Equivalent |
1208 | ------------------ | ------------------------- | ------------------- |
1209 | ADD8 rt, ra, rb | add | RV ADD (bitwidth=8)|
1210 | RADD8 rt, ra, rb | Signed Halving add | |
1211 | URADD8 rt, ra, rb | Unsigned Halving add | |
1212 | KADD8 rt, ra, rb | Signed Saturating add | |
1213 | UKADD8 rt, ra, rb | Unsigned Saturating add | |
1214 | SUB8 rt, ra, rb | sub | RV SUB (bitwidth=8)|
1215 | RSUB8 rt, ra, rb | Signed Halving sub | |
1216 | URSUB8 rt, ra, rb | Unsigned Halving sub | |
1217
1218 # Exceptions
1219
1220 > What does an ADD of two different-sized vectors do in simple-V?
1221
1222 * if the two source operands are not the same, throw an exception.
1223 * if the destination operand is also a vector, and the source is longer
1224 than the destination, throw an exception.
1225
1226 > And what about instructions like JALR? 
1227 > What does jumping to a vector do?
1228
1229 * Throw an exception. Whether that actually results in spawning threads
1230 as part of the trap-handling remains to be seen.
1231
1232 # Comparison of "Traditional" SIMD, Alt-RVP, Simple-V and RVV Proposals <a name="parallelism_comparisons"></a>
1233
1234 This section compares the various parallelism proposals as they stand,
1235 including traditional SIMD, in terms of features, ease of implementation,
1236 complexity, flexibility, and die area.
1237
1238 ## [[alt_rvp]]
1239
1240 Primary benefit of Alt-RVP is the simplicity with which parallelism
1241 may be introduced (effective multiplication of regfiles and associated ALUs).
1242
1243 * plus: the simplicity of the lanes (combined with the regularity of
1244 allocating identical opcodes multiple independent registers) meaning
1245 that SRAM or 2R1W can be used for entire regfile (potentially).
1246 * minus: a more complex instruction set where the parallelism is much
1247 more explicitly directly specified in the instruction and
1248 * minus: if you *don't* have an explicit instruction (opcode) and you
1249 need one, the only place it can be added is... in the vector unit and
1250 * minus: opcode functions (and associated ALUs) duplicated in Alt-RVP are
1251 not useable or accessible in other Extensions.
1252 * plus-and-minus: Lanes may be utilised for high-speed context-switching
1253 but with the down-side that they're an all-or-nothing part of the Extension.
1254 No Alt-RVP: no fast register-bank switching.
1255 * plus: Lane-switching would mean that complex operations not suited to
1256 parallelisation can be carried out, followed by further parallel Lane-based
1257 work, without moving register contents down to memory (and back)
1258 * minus: Access to registers across multiple lanes is challenging. "Solution"
1259 is to drop data into memory and immediately back in again (like MMX).
1260
1261 ## Simple-V
1262
1263 Primary benefit of Simple-V is the OO abstraction of parallel principles
1264 from actual (internal) parallel hardware. It's an API in effect that's
1265 designed to be slotted in to an existing implementation (just after
1266 instruction decode) with minimum disruption and effort.
1267
1268 * minus: the complexity of having to use register renames, OoO, VLIW,
1269 register file cacheing, all of which has been done before but is a
1270 pain
1271 * plus: transparent re-use of existing opcodes as-is just indirectly
1272 saying "this register's now a vector" which
1273 * plus: means that future instructions also get to be inherently
1274 parallelised because there's no "separate vector opcodes"
1275 * plus: Compressed instructions may also be (indirectly) parallelised
1276 * minus: the indirect nature of Simple-V means that setup (setting
1277 a CSR register to indicate vector length, a separate one to indicate
1278 that it is a predicate register and so on) means a little more setup
1279 time than Alt-RVP or RVV's "direct and within the (longer) instruction"
1280 approach.
1281 * plus: shared register file meaning that, like Alt-RVP, complex
1282 operations not suited to parallelisation may be carried out interleaved
1283 between parallelised instructions *without* requiring data to be dropped
1284 down to memory and back (into a separate vectorised register engine).
1285 * plus-and-maybe-minus: re-use of integer and floating-point 32-wide register
1286 files means that huge parallel workloads would use up considerable
1287 chunks of the register file. However in the case of RV64 and 32-bit
1288 operations, that effectively means 64 slots are available for parallel
1289 operations.
1290 * plus: inherent parallelism (actual parallel ALUs) doesn't actually need to
1291 be added, yet the instruction opcodes remain unchanged (and still appear
1292 to be parallel). consistent "API" regardless of actual internal parallelism:
1293 even an in-order single-issue implementation with a single ALU would still
1294 appear to have parallel vectoristion.
1295 * hard-to-judge: if actual inherent underlying ALU parallelism is added it's
1296 hard to say if there would be pluses or minuses (on die area). At worse it
1297 would be "no worse" than existing register renaming, OoO, VLIW and register
1298 file cacheing schemes.
1299
1300 ## RVV (as it stands, Draft 0.4 Section 17, RISC-V ISA V2.3-Draft)
1301
1302 RVV is extremely well-designed and has some amazing features, including
1303 2D reorganisation of memory through LOAD/STORE "strides".
1304
1305 * plus: regular predictable workload means that implementations may
1306 streamline effects on L1/L2 Cache.
1307 * plus: regular and clear parallel workload also means that lanes
1308 (similar to Alt-RVP) may be used as an implementation detail,
1309 using either SRAM or 2R1W registers.
1310 * plus: separate engine with no impact on the rest of an implementation
1311 * minus: separate *complex* engine with no RTL (ALUs, Pipeline stages) reuse
1312 really feasible.
1313 * minus: no ISA abstraction or re-use either: additions to other Extensions
1314 do not gain parallelism, resulting in prolific duplication of functionality
1315 inside RVV *and out*.
1316 * minus: when operations require a different approach (scalar operations
1317 using the standard integer or FP regfile) an entire vector must be
1318 transferred out to memory, into standard regfiles, then back to memory,
1319 then back to the vector unit, this to occur potentially multiple times.
1320 * minus: will never fit into Compressed instruction space (as-is. May
1321 be able to do so if "indirect" features of Simple-V are partially adopted).
1322 * plus-and-slight-minus: extended variants may address up to 256
1323 vectorised registers (requires 48/64-bit opcodes to do it).
1324 * minus-and-partial-plus: separate engine plus complexity increases
1325 implementation time and die area, meaning that adoption is likely only
1326 to be in high-performance specialist supercomputing (where it will
1327 be absolutely superb).
1328
1329 ## Traditional SIMD
1330
1331 The only really good things about SIMD are how easy it is to implement and
1332 get good performance. Unfortunately that makes it quite seductive...
1333
1334 * plus: really straightforward, ALU basically does several packed operations
1335 at once. Parallelism is inherent at the ALU, making the addition of
1336 SIMD-style parallelism an easy decision that has zero significant impact
1337 on the rest of any given architectural design and layout.
1338 * plus (continuation): SIMD in simple in-order single-issue designs can
1339 therefore result in superb throughput, easily achieved even with a very
1340 simple execution model.
1341 * minus: ridiculously complex setup and corner-cases that disproportionately
1342 increase instruction count on what would otherwise be a "simple loop",
1343 should the number of elements in an array not happen to exactly match
1344 the SIMD group width.
1345 * minus: getting data usefully out of registers (if separate regfiles
1346 are used) means outputting to memory and back.
1347 * minus: quite a lot of supplementary instructions for bit-level manipulation
1348 are needed in order to efficiently extract (or prepare) SIMD operands.
1349 * minus: MASSIVE proliferation of ISA both in terms of opcodes in one
1350 dimension and parallelism (width): an at least O(N^2) and quite probably
1351 O(N^3) ISA proliferation that often results in several thousand
1352 separate instructions. all requiring separate and distinct corner-case
1353 algorithms!
1354 * minus: EVEN BIGGER proliferation of SIMD ISA if the functionality of
1355 8, 16, 32 or 64-bit reordering is built-in to the SIMD instruction.
1356 For example: add (high|low) 16-bits of r1 to (low|high) of r2 requires
1357 four separate and distinct instructions: one for (r1:low r2:high),
1358 one for (r1:high r2:low), one for (r1:high r2:high) and one for
1359 (r1:low r2:low) *per function*.
1360 * minus: EVEN BIGGER proliferation of SIMD ISA if there is a mismatch
1361 between operand and result bit-widths. In combination with high/low
1362 proliferation the situation is made even worse.
1363 * minor-saving-grace: some implementations *may* have predication masks
1364 that allow control over individual elements within the SIMD block.
1365
1366 # Comparison *to* Traditional SIMD: Alt-RVP, Simple-V and RVV Proposals <a name="simd_comparison"></a>
1367
1368 This section compares the various parallelism proposals as they stand,
1369 *against* traditional SIMD as opposed to *alongside* SIMD. In other words,
1370 the question is asked "How can each of the proposals effectively implement
1371 (or replace) SIMD, and how effective would they be"?
1372
1373 ## [[alt_rvp]]
1374
1375 * Alt-RVP would not actually replace SIMD but would augment it: just as with
1376 a SIMD architecture where the ALU becomes responsible for the parallelism,
1377 Alt-RVP ALUs would likewise be so responsible... with *additional*
1378 (lane-based) parallelism on top.
1379 * Thus at least some of the downsides of SIMD ISA O(N^3) proliferation by
1380 at least one dimension are avoided (architectural upgrades introducing
1381 128-bit then 256-bit then 512-bit variants of the exact same 64-bit
1382 SIMD block)
1383 * Thus, unfortunately, Alt-RVP would suffer the same inherent proliferation
1384 of instructions as SIMD, albeit not quite as badly (due to Lanes).
1385 * In the same discussion for Alt-RVP, an additional proposal was made to
1386 be able to subdivide the bits of each register lane (columns) down into
1387 arbitrary bit-lengths (RGB 565 for example).
1388 * A recommendation was given instead to make the subdivisions down to 32-bit,
1389 16-bit or even 8-bit, effectively dividing the registerfile into
1390 Lane0(H), Lane0(L), Lane1(H) ... LaneN(L) or further. If inter-lane
1391 "swapping" instructions were then introduced, some of the disadvantages
1392 of SIMD could be mitigated.
1393
1394 ## RVV
1395
1396 * RVV is designed to replace SIMD with a better paradigm: arbitrary-length
1397 parallelism.
1398 * However whilst SIMD is usually designed for single-issue in-order simple
1399 DSPs with a focus on Multimedia (Audio, Video and Image processing),
1400 RVV's primary focus appears to be on Supercomputing: optimisation of
1401 mathematical operations that fit into the OpenCL space.
1402 * Adding functions (operations) that would normally fit (in parallel)
1403 into a SIMD instruction requires an equivalent to be added to the
1404 RVV Extension, if one does not exist. Given the specialist nature of
1405 some SIMD instructions (8-bit or 16-bit saturated or halving add),
1406 this possibility seems extremely unlikely to occur, even if the
1407 implementation overhead of RVV were acceptable (compared to
1408 normal SIMD/DSP-style single-issue in-order simplicity).
1409
1410 ## Simple-V
1411
1412 * Simple-V borrows hugely from RVV as it is intended to be easy to
1413 topologically transplant every single instruction from RVV (as
1414 designed) into Simple-V equivalents, with *zero loss of functionality
1415 or capability*.
1416 * With the "parallelism" abstracted out, a hypothetical SIMD-less "DSP"
1417 Extension which contained the basic primitives (non-parallelised
1418 8, 16 or 32-bit SIMD operations) inherently *become* parallel,
1419 automatically.
1420 * Additionally, standard operations (ADD, MUL) that would normally have
1421 to have special SIMD-parallel opcodes added need no longer have *any*
1422 of the length-dependent variants (2of 32-bit ADDs in a 64-bit register,
1423 4of 32-bit ADDs in a 128-bit register) because Simple-V takes the
1424 *standard* RV opcodes (present and future) and automatically parallelises
1425 them.
1426 * By inheriting the RVV feature of arbitrary vector-length, then just as
1427 with RVV the corner-cases and ISA proliferation of SIMD is avoided.
1428 * Whilst not entirely finalised, registers are expected to be
1429 capable of being subdivided down to an implementor-chosen bitwidth
1430 in the underlying hardware (r1 becomes r1[31..24] r1[23..16] r1[15..8]
1431 and r1[7..0], or just r1[31..16] r1[15..0]) where implementors can
1432 choose to have separate independent 8-bit ALUs or dual-SIMD 16-bit
1433 ALUs that perform twin 8-bit operations as they see fit, or anything
1434 else including no subdivisions at all.
1435 * Even though implementors have that choice even to have full 64-bit
1436 (with RV64) SIMD, they *must* provide predication that transparently
1437 switches off appropriate units on the last loop, thus neatly fitting
1438 underlying SIMD ALU implementations *into* the arbitrary vector-length
1439 RVV paradigm, keeping the uniform consistent API that is a key strategic
1440 feature of Simple-V.
1441 * With Simple-V fitting into the standard register files, certain classes
1442 of SIMD operations such as High/Low arithmetic (r1[31..16] + r2[15..0])
1443 can be done by applying *Parallelised* Bit-manipulation operations
1444 followed by parallelised *straight* versions of element-to-element
1445 arithmetic operations, even if the bit-manipulation operations require
1446 changing the bitwidth of the "vectors" to do so. Predication can
1447 be utilised to skip high words (or low words) in source or destination.
1448 * In essence, the key downside of SIMD - massive duplication of
1449 identical functions over time as an architecture evolves from 32-bit
1450 wide SIMD all the way up to 512-bit, is avoided with Simple-V, through
1451 vector-style parallelism being dropped on top of 8-bit or 16-bit
1452 operations, all the while keeping a consistent ISA-level "API" irrespective
1453 of implementor design choices (or indeed actual implementations).
1454
1455 # Impementing V on top of Simple-V
1456
1457 * Number of Offset CSRs extends from 2
1458 * Extra register file: vector-file
1459 * Setup of Vector length and bitwidth CSRs now can specify vector-file
1460 as well as integer or float file.
1461 * Extend CSR tables (bitwidth) with extra bits
1462 * TODO
1463
1464 # Implementing P (renamed to DSP) on top of Simple-V
1465
1466 * Implementors indicate chosen bitwidth support in Vector-bitwidth CSR
1467 (caveat: anything not specified drops through to software-emulation / traps)
1468 * TODO
1469
1470 # Register reordering <a name="register_reordering"></a>
1471
1472 ## Register File
1473
1474 | Reg Num | Bits |
1475 | ------- | ---- |
1476 | r0 | (32..0) |
1477 | r1 | (32..0) |
1478 | r2 | (32..0) |
1479 | r3 | (32..0) |
1480 | r4 | (32..0) |
1481 | r5 | (32..0) |
1482 | r6 | (32..0) |
1483 | r7 | (32..0) |
1484
1485 ## Vectorised CSR
1486
1487 May not be an actual CSR: may be generated from Vector Length CSR:
1488 single-bit is less burdensome on instruction decode phase.
1489
1490 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
1491 | - | - | - | - | - | - | - | - |
1492 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |
1493
1494 ## Vector Length CSR
1495
1496 | Reg Num | (3..0) |
1497 | ------- | ---- |
1498 | r0 | 2 |
1499 | r1 | 0 |
1500 | r2 | 1 |
1501 | r3 | 1 |
1502 | r4 | 3 |
1503 | r5 | 0 |
1504 | r6 | 0 |
1505 | r7 | 1 |
1506
1507 ## Virtual Register Reordering:
1508
1509 | Reg Num | Bits (0) | Bits (1) | Bits (2) |
1510 | ------- | -------- | -------- | -------- |
1511 | r0 | (32..0) | (32..0) |
1512 | r2 | (32..0) |
1513 | r3 | (32..0) |
1514 | r4 | (32..0) | (32..0) | (32..0) |
1515 | r7 | (32..0) |
1516
1517 ## Example Instruction translation: <a name="example_translation"></a>
1518
1519 Instructions "ADD r2 r4 r4" would result in three instructions being
1520 generated and placed into the FILO:
1521
1522 * ADD r2 r4 r4
1523 * ADD r2 r5 r5
1524 * ADD r2 r6 r6
1525
1526 ## Insights
1527
1528 SIMD register file splitting still to consider. For RV64, benefits of doubling
1529 (quadrupling in the case of Half-Precision IEEE754 FP) the apparent
1530 size of the floating point register file to 64 (128 in the case of HP)
1531 seem pretty clear and worth the complexity.
1532
1533 64 virtual 32-bit F.P. registers and given that 32-bit FP operations are
1534 done on 64-bit registers it's not so conceptually difficult.  May even
1535 be achieved by *actually* splitting the regfile into 64 virtual 32-bit
1536 registers such that a 64-bit FP scalar operation is dropped into (r0.H
1537 r0.L) tuples.  Implementation therefore hidden through register renaming.
1538
1539 Implementations intending to introduce VLIW, OoO and parallelism
1540 (even without Simple-V) would then find that the instructions are
1541 generated quicker (or in a more compact fashion that is less heavy
1542 on caches). Interestingly we observe then that Simple-V is about
1543 "consolidation of instruction generation", where actual parallelism
1544 of underlying hardware is an implementor-choice that could just as
1545 equally be applied *without* Simple-V even being implemented.
1546
1547 # Analysis of CSR decoding on latency <a name="csr_decoding_analysis"></a>
1548
1549 It could indeed have been logically deduced (or expected), that there
1550 would be additional decode latency in this proposal, because if
1551 overloading the opcodes to have different meanings, there is guaranteed
1552 to be some state, some-where, directly related to registers.
1553
1554 There are several cases:
1555
1556 * All operands vector-length=1 (scalars), all operands
1557 packed-bitwidth="default": instructions are passed through direct as if
1558 Simple-V did not exist.  Simple-V is, in effect, completely disabled.
1559 * At least one operand vector-length > 1, all operands
1560 packed-bitwidth="default": any parallel vector ALUs placed on "alert",
1561 virtual parallelism looping may be activated.
1562 * All operands vector-length=1 (scalars), at least one
1563 operand packed-bitwidth != default: degenerate case of SIMD,
1564 implementation-specific complexity here (packed decode before ALUs or
1565 *IN* ALUs)
1566 * At least one operand vector-length > 1, at least one operand
1567 packed-bitwidth != default: parallel vector ALUs (if any)
1568 placed on "alert", virtual parallelsim looping may be activated,
1569 implementation-specific SIMD complexity kicks in (packed decode before
1570 ALUs or *IN* ALUs).
1571
1572 Bear in mind that the proposal includes that the decision whether
1573 to parallelise in hardware or whether to virtual-parallelise (to
1574 dramatically simplify compilers and also not to run into the SIMD
1575 instruction proliferation nightmare) *or* a transprent combination
1576 of both, be done on a *per-operand basis*, so that implementors can
1577 specifically choose to create an application-optimised implementation
1578 that they believe (or know) will sell extremely well, without having
1579 "Extra Standards-Mandated Baggage" that would otherwise blow their area
1580 or power budget completely out the window.
1581
1582 Additionally, two possible CSR schemes have been proposed, in order to
1583 greatly reduce CSR space:
1584
1585 * per-register CSRs (vector-length and packed-bitwidth)
1586 * a smaller number of CSRs with the same information but with an *INDEX*
1587 specifying WHICH register in one of three regfiles (vector, fp, int)
1588 the length and bitwidth applies to.
1589
1590 (See "CSR vector-length and CSR SIMD packed-bitwidth" section for details)
1591
1592 In addition, LOAD/STORE has its own associated proposed CSRs that
1593 mirror the STRIDE (but not yet STRIDE-SEGMENT?) functionality of
1594 V (and Hwacha).
1595
1596 Also bear in mind that, for reasons of simplicity for implementors,
1597 I was coming round to the idea of permitting implementors to choose
1598 exactly which bitwidths they would like to support in hardware and which
1599 to allow to fall through to software-trap emulation.
1600
1601 So the question boils down to:
1602
1603 * whether either (or both) of those two CSR schemes have significant
1604 latency that could even potentially require an extra pipeline decode stage
1605 * whether there are implementations that can be thought of which do *not*
1606 introduce significant latency
1607 * whether it is possible to explicitly (through quite simply
1608 disabling Simple-V-Ext) or implicitly (detect the case all-vlens=1,
1609 all-simd-bitwidths=default) switch OFF any decoding, perhaps even to
1610 the extreme of skipping an entire pipeline stage (if one is needed)
1611 * whether packed bitwidth and associated regfile splitting is so complex
1612 that it should definitely, definitely be made mandatory that implementors
1613 move regfile splitting into the ALU, and what are the implications of that
1614 * whether even if that *is* made mandatory, is software-trapped
1615 "unsupported bitwidths" still desirable, on the basis that SIMD is such
1616 a complete nightmare that *even* having a software implementation is
1617 better, making Simple-V have more in common with a software API than
1618 anything else.
1619
1620 Whilst the above may seem to be severe minuses, there are some strong
1621 pluses:
1622
1623 * Significant reduction of V's opcode space: over 85%.
1624 * Smaller reduction of P's opcode space: around 10%.
1625 * The potential to use Compressed instructions in both Vector and SIMD
1626 due to the overloading of register meaning (implicit vectorisation,
1627 implicit packing)
1628 * Not only present but also future extensions automatically gain parallelism.
1629 * Already mentioned but worth emphasising: the simplification to compiler
1630 writers and assembly-level writers of having the same consistent ISA
1631 regardless of whether the internal level of parallelism (number of
1632 parallel ALUs) is only equal to one ("virtual" parallelism), or is
1633 greater than one, should not be underestimated.
1634
1635 # Appendix
1636
1637 # Reducing Register Bank porting
1638
1639 This looks quite reasonable.
1640 <https://www.princeton.edu/~rblee/ELE572Papers/MultiBankRegFile_ISCA2000.pdf>
1641
1642 The main details are outlined on page 4.  They propose a 2-level register
1643 cache hierarchy, note that registers are typically only read once, that
1644 you never write back from upper to lower cache level but always go in a
1645 cycle lower -> upper -> ALU -> lower, and at the top of page 5 propose
1646 a scheme where you look ahead by only 2 instructions to determine which
1647 registers to bring into the cache.
1648
1649 The nice thing about a vector architecture is that you *know* that
1650 *even more* registers are going to be pulled in: Hwacha uses this fact
1651 to optimise L1/L2 cache-line usage (avoid thrashing), strangely enough
1652 by *introducing* deliberate latency into the execution phase.
1653
1654
1655
1656 # References
1657
1658 * SIMD considered harmful <https://www.sigarch.org/simd-instructions-considered-harmful/>
1659 * Link to first proposal <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/GuukrSjgBH8>
1660 * Recommendation by Jacob Bachmeyer to make zero-overhead loop an
1661 "implicit program-counter" <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/vYVi95gF2Mo/SHz6a4_lAgAJ>
1662 * Re-continuing P-Extension proposal <https://groups.google.com/a/groups.riscv.org/forum/#!msg/isa-dev/IkLkQn3HvXQ/SEMyC9IlAgAJ>
1663 * First Draft P-SIMD (DSP) proposal <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/vYVi95gF2Mo>
1664 * B-Extension discussion <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/zi_7B15kj6s>
1665 * Broadcom VideoCore-IV <https://docs.broadcom.com/docs/12358545>
1666 Figure 2 P17 and Section 3 on P16.
1667 * Hwacha <https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-262.html>
1668 * Hwacha <https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-263.html>
1669 * Vector Workshop <http://riscv.org/wp-content/uploads/2015/06/riscv-vector-workshop-june2015.pdf>
1670 * Predication <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/XoP4BfYSLXA>
1671 * Branch Divergence <https://jbush001.github.io/2014/12/07/branch-divergence-in-parallel-kernels.html>
1672 * Life of Triangles (3D) <https://jbush001.github.io/2016/02/27/life-of-triangle.html>
1673 * Videocore-IV <https://github.com/hermanhermitage/videocoreiv/wiki/VideoCore-IV-3d-Graphics-Pipeline>
1674 * Discussion proposing CSRs that change ISA definition
1675 <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/InzQ1wr_3Ak>
1676 * Zero-overhead loops <https://pdfs.semanticscholar.org/dbaa/66985cc730d4b44d79f519e96ec9c43ab5b7.pdf>
1677 * Multi-ported VLIW Register File Implementation <https://ce-publications.et.tudelft.nl/publications/1517_multiple_contexts_in_a_multiported_vliw_register_file_impl.pdf>
1678 * Fast context save/restore proposal <https://groups.google.com/a/groups.riscv.org/d/msgid/isa-dev/57F823FA.6030701%40gmail.com>
1679 * Register File Bank Cacheing <https://www.princeton.edu/~rblee/ELE572Papers/MultiBankRegFile_ISCA2000.pdf>