move TODO overflow section
[libreriscv.git] / simple_v_extension.mdwn
1 # Variable-width Variable-packed SIMD / Simple-V / Parallelism Extension Proposal
2
3 Key insight: Simple-V is intended as an abstraction layer to provide
4 a consistent "API" to parallelisation of existing *and future* operations.
5 *Actual* internal hardware-level parallelism is *not* required, such
6 that Simple-V may be viewed as providing a "compact" or "consolidated"
7 means of issuing multiple near-identical arithmetic instructions to an
8 instruction queue (FILO), pending execution.
9
10 *Actual* parallelism, if added independently of Simple-V in the form
11 of Out-of-order restructuring (including parallel ALU lanes) or VLIW
12 implementations, or SIMD, or anything else, would then benefit *if*
13 Simple-V was added on top.
14
15 [[!toc ]]
16
17 # Introduction
18
19 This proposal exists so as to be able to satisfy several disparate
20 requirements: power-conscious, area-conscious, and performance-conscious
21 designs all pull an ISA and its implementation in different conflicting
22 directions, as do the specific intended uses for any given implementation.
23
24 Additionally, the existing P (SIMD) proposal and the V (Vector) proposals,
25 whilst each extremely powerful in their own right and clearly desirable,
26 are also:
27
28 * Clearly independent in their origins (Cray and AndesStar v3 respectively)
29 so need work to adapt to the RISC-V ethos and paradigm
30 * Are sufficiently large so as to make adoption (and exploration for
31 analysis and review purposes) prohibitively expensive
32 * Both contain partial duplication of pre-existing RISC-V instructions
33 (an undesirable characteristic)
34 * Both have independent and disparate methods for introducing parallelism
35 at the instruction level.
36 * Both require that their respective parallelism paradigm be implemented
37 along-side and integral to their respective functionality *or not at all*.
38 * Both independently have methods for introducing parallelism that
39 could, if separated, benefit
40 *other areas of RISC-V not just DSP or Floating-point respectively*.
41
42 There are also key differences between Vectorisation and SIMD (full
43 details outlined in the Appendix), the key points being:
44
45 * SIMD has an extremely seductively compelling ease of implementation argument:
46 each operation is passed to the ALU, which is where the parallelism
47 lies. There is *negligeable* (if any) impact on the rest of the core
48 (with life instead being made hell for compiler writers and applications
49 writers due to extreme ISA proliferation).
50 * By contrast, Vectorisation has quite some complexity (for considerable
51 flexibility, reduction in opcode proliferation and much more).
52 * Vectorisation typically includes much more comprehensive memory load
53 and store schemes (unit stride, constant-stride and indexed), which
54 in turn have ramifications: virtual memory misses (TLB cache misses)
55 and even multiple page-faults... all caused by a *single instruction*.
56 * By contrast, SIMD can use "standard" memory load/stores (32-bit aligned
57 to pages), and these load/stores have absolutely nothing to do with the
58 SIMD / ALU engine, no matter how wide the operand.
59
60 Overall it makes a huge amount of sense to have a means and method
61 of introducing instruction parallelism in a flexible way that provides
62 implementors with the option to choose exactly where they wish to offer
63 performance improvements and where they wish to optimise for power
64 and/or area (and if that can be offered even on a per-operation basis that
65 would provide even more flexibility).
66
67 Additionally it makes sense to *split out* the parallelism inherent within
68 each of P and V, and to see if each of P and V then, in *combination* with
69 a "best-of-both" parallelism extension, could be added on *on top* of
70 this proposal, to topologically provide the exact same functionality of
71 each of P and V. Each of P and V then can focus on providing the best
72 operations possible for their respective target areas, without being
73 hugely concerned about the actual parallelism.
74
75 Furthermore, an additional goal of this proposal is to reduce the number
76 of opcodes utilised by each of P and V as they currently stand, leveraging
77 existing RISC-V opcodes where possible, and also potentially allowing
78 P and V to make use of Compressed Instructions as a result.
79
80 # Analysis and discussion of Vector vs SIMD
81
82 There are five combined areas between the two proposals that help with
83 parallelism without over-burdening the ISA with a huge proliferation of
84 instructions:
85
86 * Fixed vs variable parallelism (fixed or variable "M" in SIMD)
87 * Implicit vs fixed instruction bit-width (integral to instruction or not)
88 * Implicit vs explicit type-conversion (compounded on bit-width)
89 * Implicit vs explicit inner loops.
90 * Masks / tagging (selecting/preventing certain indexed elements from execution)
91
92 The pros and cons of each are discussed and analysed below.
93
94 ## Fixed vs variable parallelism length
95
96 In David Patterson and Andrew Waterman's analysis of SIMD and Vector
97 ISAs, the analysis comes out clearly in favour of (effectively) variable
98 length SIMD. As SIMD is a fixed width, typically 4, 8 or in extreme cases
99 16 or 32 simultaneous operations, the setup, teardown and corner-cases of SIMD
100 are extremely burdensome except for applications whose requirements
101 *specifically* match the *precise and exact* depth of the SIMD engine.
102
103 Thus, SIMD, no matter what width is chosen, is never going to be acceptable
104 for general-purpose computation, and in the context of developing a
105 general-purpose ISA, is never going to satisfy 100 percent of implementors.
106
107 To explain this further: for increased workloads over time, as the
108 performance requirements increase for new target markets, implementors
109 choose to extend the SIMD width (so as to again avoid mixing parallelism
110 into the instruction issue phases: the primary "simplicity" benefit of
111 SIMD in the first place), with the result that the entire opcode space
112 effectively doubles with each new SIMD width that's added to the ISA.
113
114 That basically leaves "variable-length vector" as the clear *general-purpose*
115 winner, at least in terms of greatly simplifying the instruction set,
116 reducing the number of instructions required for any given task, and thus
117 reducing power consumption for the same.
118
119 ## Implicit vs fixed instruction bit-width
120
121 SIMD again has a severe disadvantage here, over Vector: huge proliferation
122 of specialist instructions that target 8-bit, 16-bit, 32-bit, 64-bit, and
123 have to then have operations *for each and between each*. It gets very
124 messy, very quickly.
125
126 The V-Extension on the other hand proposes to set the bit-width of
127 future instructions on a per-register basis, such that subsequent instructions
128 involving that register are *implicitly* of that particular bit-width until
129 otherwise changed or reset.
130
131 This has some extremely useful properties, without being particularly
132 burdensome to implementations, given that instruction decode already has
133 to direct the operation to a correctly-sized width ALU engine, anyway.
134
135 Not least: in places where an ISA was previously constrained (due for
136 whatever reason, including limitations of the available operand spcace),
137 implicit bit-width allows the meaning of certain operations to be
138 type-overloaded *without* pollution or alteration of frozen and immutable
139 instructions, in a fully backwards-compatible fashion.
140
141 ## Implicit and explicit type-conversion
142
143 The Draft 2.3 V-extension proposal has (deprecated) polymorphism to help
144 deal with over-population of instructions, such that type-casting from
145 integer (and floating point) of various sizes is automatically inferred
146 due to "type tagging" that is set with a special instruction. A register
147 will be *specifically* marked as "16-bit Floating-Point" and, if added
148 to an operand that is specifically tagged as "32-bit Integer" an implicit
149 type-conversion will take place *without* requiring that type-conversion
150 to be explicitly done with its own separate instruction.
151
152 However, implicit type-conversion is not only quite burdensome to
153 implement (explosion of inferred type-to-type conversion) but also is
154 never really going to be complete. It gets even worse when bit-widths
155 also have to be taken into consideration. Each new type results in
156 an increased O(N^2) conversion space that, as anyone who has examined
157 python's source code (which has built-in polymorphic type-conversion),
158 knows that the task is more complex than it first seems.
159
160 Overall, type-conversion is generally best to leave to explicit
161 type-conversion instructions, or in definite specific use-cases left to
162 be part of an actual instruction (DSP or FP)
163
164 ## Zero-overhead loops vs explicit loops
165
166 The initial Draft P-SIMD Proposal by Chuanhua Chang of Andes Technology
167 contains an extremely interesting feature: zero-overhead loops. This
168 proposal would basically allow an inner loop of instructions to be
169 repeated indefinitely, a fixed number of times.
170
171 Its specific advantage over explicit loops is that the pipeline in a DSP
172 can potentially be kept completely full *even in an in-order single-issue
173 implementation*. Normally, it requires a superscalar architecture and
174 out-of-order execution capabilities to "pre-process" instructions in
175 order to keep ALU pipelines 100% occupied.
176
177 By bringing that capability in, this proposal could offer a way to increase
178 pipeline activity even in simpler implementations in the one key area
179 which really matters: the inner loop.
180
181 However when looking at much more comprehensive schemes
182 "A portable specification of zero-overhead loop control hardware
183 applied to embedded processors" (ZOLC), optimising only the single
184 inner loop seems inadequate, tending to suggest that ZOLC may be
185 better off being proposed as an entirely separate Extension.
186
187 ## Mask and Tagging (Predication)
188
189 Tagging (aka Masks aka Predication) is a pseudo-method of implementing
190 simplistic branching in a parallel fashion, by allowing execution on
191 elements of a vector to be switched on or off depending on the results
192 of prior operations in the same array position.
193
194 The reason for considering this is simple: by *definition* it
195 is not possible to perform individual parallel branches in a SIMD
196 (Single-Instruction, **Multiple**-Data) context. Branches (modifying
197 of the Program Counter) will result in *all* parallel data having
198 a different instruction executed on it: that's just the definition of
199 SIMD, and it is simply unavoidable.
200
201 So these are the ways in which conditional execution may be implemented:
202
203 * explicit compare and branch: BNE x, y -> offs would jump offs
204 instructions if x was not equal to y
205 * explicit store of tag condition: CMP x, y -> tagbit
206 * implicit (condition-code) ADD results in a carry, carry bit implicitly
207 (or sometimes explicitly) goes into a "tag" (mask) register
208
209 The first of these is a "normal" branch method, which is flat-out impossible
210 to parallelise without look-ahead and effectively rewriting instructions.
211 This would defeat the purpose of RISC.
212
213 The latter two are where parallelism becomes easy to do without complexity:
214 every operation is modified to be "conditionally executed" (in an explicit
215 way directly in the instruction format *or* implicitly).
216
217 RVV (Vector-Extension) proposes to have *explicit* storing of the compare
218 in a tag/mask register, and to *explicitly* have every vector operation
219 *require* that its operation be "predicated" on the bits within an
220 explicitly-named tag/mask register.
221
222 SIMD (P-Extension) has not yet published precise documentation on what its
223 schema is to be: there is however verbal indication at the time of writing
224 that:
225
226 > The "compare" instructions in the DSP/SIMD ISA proposed by Andes will
227 > be executed using the same compare ALU logic for the base ISA with some
228 > minor modifications to handle smaller data types. The function will not
229 > be duplicated.
230
231 This is an *implicit* form of predication as the base RV ISA does not have
232 condition-codes or predication. By adding a CSR it becomes possible
233 to also tag certain registers as "predicated if referenced as a destination".
234 Example:
235
236 // in future operations from now on, if r0 is the destination use r5 as
237 // the PREDICATION register
238 SET_IMPLICIT_CSRPREDICATE r0, r5
239 // store the compares in r5 as the PREDICATION register
240 CMPEQ8 r5, r1, r2
241 // r0 is used here. ah ha! that means it's predicated using r5!
242 ADD8 r0, r1, r3
243
244 With enough registers (and in RISC-V there are enough registers) some fairly
245 complex predication can be set up and yet still execute without significant
246 stalling, even in a simple non-superscalar architecture.
247
248 (For details on how Branch Instructions would be retro-fitted to indirectly
249 predicated equivalents, see Appendix)
250
251 ## Conclusions
252
253 In the above sections the five different ways where parallel instruction
254 execution has closely and loosely inter-related implications for the ISA and
255 for implementors, were outlined. The pluses and minuses came out as
256 follows:
257
258 * Fixed vs variable parallelism: <b>variable</b>
259 * Implicit (indirect) vs fixed (integral) instruction bit-width: <b>indirect</b>
260 * Implicit vs explicit type-conversion: <b>explicit</b>
261 * Implicit vs explicit inner loops: <b>implicit but best done separately</b>
262 * Tag or no-tag: <b>Complex but highly beneficial</b>
263
264 In particular:
265
266 * variable-length vectors came out on top because of the high setup, teardown
267 and corner-cases associated with the fixed width of SIMD.
268 * Implicit bit-width helps to extend the ISA to escape from
269 former limitations and restrictions (in a backwards-compatible fashion),
270 whilst also leaving implementors free to simmplify implementations
271 by using actual explicit internal parallelism.
272 * Implicit (zero-overhead) loops provide a means to keep pipelines
273 potentially 100% occupied in a single-issue in-order implementation
274 i.e. *without* requiring a super-scalar or out-of-order architecture,
275 but doing a proper, full job (ZOLC) is an entirely different matter.
276
277 Constructing a SIMD/Simple-Vector proposal based around four of these five
278 requirements would therefore seem to be a logical thing to do.
279
280 # Instruction Format
281
282 The instruction format for Simple-V does not actually have *any* compare
283 operations, *any* arithmetic, floating point or memory instructions.
284 Instead it *overloads* pre-existing branch operations into predicated
285 variants, and implicitly overloads arithmetic operations and LOAD/STORE
286 depending on implicit CSR configurations for both vector length and
287 bitwidth. This includes Compressed instructions.
288
289 * For analysis of RVV see [[v_comparative_analysis]] which begins to
290 outline topologically-equivalent mappings of instructions
291 * Also see Appendix "Retro-fitting Predication into branch-explicit ISA"
292 for format of Branch opcodes.
293
294 **TODO**: *analyse and decide whether the implicit nature of predication
295 as proposed is or is not a lot of hassle, and if explicit prefixes are
296 a better idea instead. Parallelism therefore effectively may end up
297 as always being 64-bit opcodes (32 for the prefix, 32 for the instruction)
298 with some opportunities for to use Compressed bringing it down to 48.
299 Also to consider is whether one or both of the last two remaining Compressed
300 instruction codes in Quadrant 1 could be used as a parallelism prefix,
301 bringing parallelised opcodes down to 32-bit and having the benefit of
302 being explicit.*
303
304 ## Branch Instruction:
305
306 [[!table data="""
307 31 | 30 .. 25 |24 ... 20 | 19 15 | 14 12 | 11 .. 8 | 7 | 6 ... 0 |
308 imm[12] | imm[10:5]| rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
309 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
310 I/F | reserved | src2 | src1 | BPR | predicate rs3 || BRANCH |
311 0 | reserved | src2 | src1 | 000 | predicate rs3 || BEQ |
312 0 | reserved | src2 | src1 | 001 | predicate rs3 || BNE |
313 0 | reserved | src2 | src1 | 010 | predicate rs3 || rsvd |
314 0 | reserved | src2 | src1 | 011 | predicate rs3 || rsvd |
315 0 | reserved | src2 | src1 | 100 | predicate rs3 || BLE |
316 0 | reserved | src2 | src1 | 101 | predicate rs3 || BGE |
317 0 | reserved | src2 | src1 | 110 | predicate rs3 || BLTU |
318 0 | reserved | src2 | src1 | 111 | predicate rs3 || BGEU |
319 1 | reserved | src2 | src1 | 000 | predicate rs3 || FEQ |
320 1 | reserved | src2 | src1 | 001 | predicate rs3 || FNE |
321 1 | reserved | src2 | src1 | 010 | predicate rs3 || rsvd |
322 1 | reserved | src2 | src1 | 011 | predicate rs3 || rsvd |
323 1 | reserved | src2 | src1 | 100 | predicate rs3 || FLT |
324 1 | reserved | src2 | src1 | 101 | predicate rs3 || FLE |
325 1 | reserved | src2 | src1 | 110 | predicate rs3 || rsvd |
326 1 | reserved | src2 | src1 | 111 | predicate rs3 || rsvd |
327 """]]
328
329 In Hwacha EECS-2015-262 Section 6.7.2 the following pseudocode is given
330 for predicated compare operations of function "cmp":
331
332 for (int i=0; i<vl; ++i)
333 if ([!]preg[p][i])
334 preg[pd][i] = cmp(s1 ? vreg[rs1][i] : sreg[rs1],
335 s2 ? vreg[rs2][i] : sreg[rs2]);
336
337 With associated predication, vector-length adjustments and so on,
338 and temporarily ignoring bitwidth (which makes the comparisons more
339 complex), this becomes:
340
341 if I/F == INT: # integer type cmp
342 pred_enabled = int_pred_enabled # TODO: exception if not set!
343 preg = int_pred_reg[rd]
344 else:
345 pred_enabled = fp_pred_enabled # TODO: exception if not set!
346 preg = fp_pred_reg[rd]
347
348 s1 = CSRvectorlen[src1] > 1;
349 s2 = CSRvectorlen[src2] > 1;
350 for (int i=0; i<vl; ++i)
351 preg[rs3][i] = cmp(s1 ? reg[src1+i] : reg[src1],
352 s2 ? reg[src2+i] : reg[src2]);
353
354 Notes:
355
356 * Predicated SIMD comparisons would break src1 and src2 further down
357 into bitwidth-sized chunks (see Appendix "Bitwidth Virtual Register
358 Reordering") setting Vector-Length * (number of SIMD elements) bits
359 in Predicate Register rs3 as opposed to just Vector-Length bits.
360 * Predicated Branches do not actually have an adjustment to the Program
361 Counter, so all of bits 25 through 30 in every case are not needed.
362 * There are plenty of reserved opcodes for which bits 25 through 30 could
363 be put to good use if there is a suitable use-case.
364 * FEQ and FNE (and BEQ and BNE) are included in order to save one
365 instruction having to invert the resultant predicate bitfield.
366 FLT and FLE may be inverted to FGT and FGE if needed by swapping
367 src1 and src2 (likewise the integer counterparts).
368
369 ## Compressed Branch Instruction:
370
371 [[!table data="""
372 15..13 | 12...10 | 9..7 | 6..5 | 4..2 | 1..0 | name |
373 funct3 | imm | rs10 | imm | | op | |
374 3 | 3 | 3 | 2 | 3 | 2 | |
375 C.BPR | pred rs3 | src1 | I/F B | src2 | C1 | |
376 110 | pred rs3 | src1 | I/F 0 | src2 | C1 | P.EQ |
377 111 | pred rs3 | src1 | I/F 0 | src2 | C1 | P.NE |
378 110 | pred rs3 | src1 | I/F 1 | src2 | C1 | P.LT |
379 111 | pred rs3 | src1 | I/F 1 | src2 | C1 | P.LE |
380 """]]
381
382 Notes:
383
384 * Bits 5 13 14 and 15 make up the comparator type
385 * In both floating-point and integer cases there are four predication
386 comparators: EQ/NEQ/LT/LE (with GT and GE being synthesised by inverting
387 src1 and src2).
388
389 ## LOAD / STORE Instructions
390
391 For full analysis of topological adaptation of RVV LOAD/STORE
392 see [[v_comparative_analysis]]. All three types (LD, LD.S and LD.X)
393 may be implicitly overloaded into the one base RV LOAD instruction.
394
395 Revised LOAD:
396
397 [[!table data="""
398 31 | 30 | 29 25 | 24 20 | 19 15 | 14 12 | 11 7 | 6 0 |
399 imm[11:0] |||| rs1 | funct3 | rd | opcode |
400 1 | 1 | 5 | 5 | 5 | 3 | 5 | 7 |
401 ? | s | rs2 | imm[4:0] | base | width | dest | LOAD |
402 """]]
403
404 The exact same corresponding adaptation is also carried out on the single,
405 double and quad precision floating-point LOAD-FP and STORE-FP operations,
406 which fit the exact same instruction format. Thus all three types
407 (unit, stride and indexed) may be fitted into FLW, FLD and FLQ,
408 as well as FSW, FSD and FSQ.
409
410 Notes:
411
412 * LOAD remains functionally (topologically) identical to RVV LOAD
413 (for both integer and floating-point variants).
414 * Predication CSR-marking register is not explicitly shown in instruction, it's
415 implicit based on the CSR predicate state for the rd (destination) register
416 * rs2, the source, may *also be marked as a vector*, which implicitly
417 is taken to indicate "Indexed Load" (LD.X)
418 * Bit 30 indicates "element stride" or "constant-stride" (LD or LD.S)
419 * Bit 31 is reserved (ideas under consideration: auto-increment)
420 * **TODO**: include CSR SIMD bitwidth in the pseudo-code below.
421 * **TODO**: clarify where width maps to elsize
422
423 Pseudo-code (excludes CSR SIMD bitwidth):
424
425 if (unit-strided) stride = elsize;
426 else stride = areg[as2]; // constant-strided
427
428 pred_enabled = int_pred_enabled
429 preg = int_pred_reg[rd]
430
431 for (int i=0; i<vl; ++i)
432 if (preg_enabled[rd] && [!]preg[i])
433 for (int j=0; j<seglen+1; j++)
434 {
435 if CSRvectorised[rs2])
436 offs = vreg[rs2][i]
437 else
438 offs = i*(seglen+1)*stride;
439 vreg[rd+j][i] = mem[sreg[base] + offs + j*stride];
440 }
441
442 Taking CSR (SIMD) bitwidth into account involves using the vector
443 length and register encoding according to the "Bitwidth Virtual Register
444 Reordering" scheme shown in the Appendix (see function "regoffs").
445
446 A similar instruction exists for STORE, with identical topological
447 translation of all features. **TODO**
448
449 ## Compressed LOAD / STORE Instructions
450
451 Compressed LOAD and STORE are of the same format, where bits 2-4 are
452 a src register instead of dest:
453
454 [[!table data="""
455 15 13 | 12 10 | 9 7 | 6 5 | 4 2 | 1 0 |
456 funct3 | imm | rs10 | imm | rd0 | op |
457 3 | 3 | 3 | 2 | 3 | 2 |
458 C.LW | offset[5:3] | base | offset[2|6] | dest | C0 |
459 """]]
460
461 Unfortunately it is not possible to fit the full functionality
462 of vectorised LOAD / STORE into C.LD / C.ST: the "X" variants (Indexed)
463 require another operand (rs2) in addition to the operand width
464 (which is also missing), offset, base, and src/dest.
465
466 However a close approximation may be achieved by taking the top bit
467 of the offset in each of the five types of LD (and ST), reducing the
468 offset to 4 bits and utilising the 5th bit to indicate whether "stride"
469 is to be enabled. In this way it is at least possible to introduce
470 that functionality.
471
472 (**TODO**: *assess whether the loss of one bit from offset is worth having
473 "stride" capability.*)
474
475 We also assume (including for the "stride" variant) that the "width"
476 parameter, which is missing, is derived and implicit, just as it is
477 with the standard Compressed LOAD/STORE instructions. For C.LW, C.LD
478 and C.LQ, the width is implicitly 4, 8 and 16 respectively, whilst for
479 C.FLW and C.FLD the width is implicitly 4 and 8 respectively.
480
481 Interestingly we note that the Vectorised Simple-V variant of
482 LOAD/STORE (Compressed and otherwise), due to it effectively using the
483 standard register file(s), is the direct functional equivalent of
484 standard load-multiple and store-multiple instructions found in other
485 processors.
486
487 In Section 12.3 riscv-isa manual V2.3-draft it is noted the comments on
488 page 76, "For virtual memory systems some data accesses could be resident
489 in physical memory and some not". The interesting question then arises:
490 how does RVV deal with the exact same scenario?
491 Expired U.S. Patent 5895501 (Filing Date Sep 3 1996) describes a method
492 of detecting early page / segmentation faults.
493
494 # Note on implementation of parallelism
495
496 One extremely important aspect of this proposal is to respect and support
497 implementors desire to focus on power, area or performance. In that regard,
498 it is proposed that implementors be free to choose whether to implement
499 the Vector (or variable-width SIMD) parallelism as sequential operations
500 with a single ALU, fully parallel (if practical) with multiple ALUs, or
501 a hybrid combination of both.
502
503 In Broadcom's Videocore-IV, they chose hybrid, and called it "Virtual
504 Parallelism". They achieve a 16-way SIMD at an **instruction** level
505 by providing a combination of a 4-way parallel ALU *and* an externally
506 transparent loop that feeds 4 sequential sets of data into each of the
507 4 ALUs.
508
509 Also in the same core, it is worth noting that particularly uncommon
510 but essential operations (Reciprocal-Square-Root for example) are
511 *not* part of the 4-way parallel ALU but instead have a *single* ALU.
512 Under the proposed Vector (varible-width SIMD) implementors would
513 be free to do precisely that: i.e. free to choose *on a per operation
514 basis* whether and how much "Virtual Parallelism" to deploy.
515
516 It is absolutely critical to note that it is proposed that such choices MUST
517 be **entirely transparent** to the end-user and the compiler. Whilst
518 a Vector (varible-width SIM) may not precisely match the width of the
519 parallelism within the implementation, the end-user **should not care**
520 and in this way the performance benefits are gained but the ISA remains
521 straightforward. All that happens at the end of an instruction run is: some
522 parallel units (if there are any) would remain offline, completely
523 transparently to the ISA, the program, and the compiler.
524
525 The "SIMD considered harmful" trap of having huge complexity and extra
526 instructions to deal with corner-cases is thus avoided, and implementors
527 get to choose precisely where to focus and target the benefits of their
528 implementation efforts, without "extra baggage".
529
530 # CSRs <a name="csrs"></a>
531
532 There are a number of CSRs needed, which are used at the instruction
533 decode phase to re-interpret standard RV opcodes (a practice that has
534 precedent in the setting of MISA to enable / disable extensions).
535
536 * Integer Register N is Vector of length M: r(N) -> r(N..N+M-1)
537 * Integer Register N is of implicit bitwidth M (M=default,8,16,32,64)
538 * Floating-point Register N is Vector of length M: r(N) -> r(N..N+M-1)
539 * Floating-point Register N is of implicit bitwidth M (M=default,8,16,32,64)
540 * Integer Register N is a Predication Register (note: a key-value store)
541 * Vector Length CSR (VSETVL, VGETVL)
542
543 Notes:
544
545 * for the purposes of LOAD / STORE, Integer Registers which are
546 marked as a Vector will result in a Vector LOAD / STORE.
547 * Vector Lengths are *not* the same as vsetl but are an integral part
548 of vsetl.
549 * Actual vector length is *multipled* by how many blocks of length
550 "bitwidth" may fit into an XLEN-sized register file.
551 * Predication is a key-value store due to the implicit referencing,
552 as opposed to having the predicate register explicitly in the instruction.
553
554 ## Predication CSR
555
556 The Predication CSR is a key-value store indicating whether, if a given
557 destination register (integer or floating-point) is referred to in an
558 instruction, it is to be predicated. The first entry is whether predication
559 is enabled. The second entry is whether the register index refers to a
560 floating-point or an integer register. The third entry is the index
561 of that register which is to be predicated (if referred to). The fourth entry
562 is the integer register that is treated as a bitfield, indexable by the
563 vector element index.
564
565 | RegNo | 6 | 5 | (4..0) | (4..0) |
566 | ----- | - | - | ------- | ------- |
567 | r0 | pren0 | i/f | regidx | predidx |
568 | r1 | pren1 | i/f | regidx | predidx |
569 | .. | pren.. | i/f | regidx | predidx |
570 | r15 | pren15 | i/f | regidx | predidx |
571
572 The Predication CSR Table is a key-value store, so implementation-wise
573 it will be faster to turn the table around (maintain topologically
574 equivalent state):
575
576 fp_pred_enabled[32];
577 int_pred_enabled[32];
578 for (i = 0; i < 16; i++)
579 if CSRpred[i].pren:
580 idx = CSRpred[i].regidx
581 predidx = CSRpred[i].predidx
582 if CSRpred[i].type == 0: # integer
583 int_pred_enabled[idx] = 1
584 int_pred_reg[idx] = predidx
585 else:
586 fp_pred_enabled[idx] = 1
587 fp_pred_reg[idx] = predidx
588
589 So when an operation is to be predicated, it is the internal state that
590 is used. In Section 6.4.2 of Hwacha's Manual (EECS-2015-262) the following
591 pseudo-code for operations is given, where p is the explicit (direct)
592 reference to the predication register to be used:
593
594 for (int i=0; i<vl; ++i)
595 if ([!]preg[p][i])
596 (d ? vreg[rd][i] : sreg[rd]) =
597 iop(s1 ? vreg[rs1][i] : sreg[rs1],
598 s2 ? vreg[rs2][i] : sreg[rs2]); // for insts with 2 inputs
599
600 This instead becomes an *indirect* reference using the *internal* state
601 table generated from the Predication CSR key-value store:
602
603 if type(iop) == INT:
604 pred_enabled = int_pred_enabled
605 preg = int_pred_reg[rd]
606 else:
607 pred_enabled = fp_pred_enabled
608 preg = fp_pred_reg[rd]
609
610 for (int i=0; i<vl; ++i)
611 if (preg_enabled[rd] && [!]preg[i])
612 (d ? vreg[rd][i] : sreg[rd]) =
613 iop(s1 ? vreg[rs1][i] : sreg[rs1],
614 s2 ? vreg[rs2][i] : sreg[rs2]); // for insts with 2 inputs
615
616 ## MAXVECTORDEPTH
617
618 MAXVECTORDEPTH is the same concept as MVL in RVV. However in Simple-V,
619 given that its primary (base, unextended) purpose is for 3D, Video and
620 other purposes (not requiring supercomputing capability), it makes sense
621 to limit MAXVECTORDEPTH to the regfile bitwidth (32 for RV32, 64 for RV64
622 and so on).
623
624 The reason for setting this limit is so that predication registers, when
625 marked as such, may fit into a single register as opposed to fanning out
626 over several registers. This keeps the implementation a little simpler.
627 Note that RVV on top of Simple-V may choose to over-ride this decision.
628
629 ## Vector-length CSRs
630
631 Vector lengths are interpreted as meaning "any instruction referring to
632 r(N) generates implicit identical instructions referring to registers
633 r(N+M-1) where M is the Vector Length". Vector Lengths may be set to
634 use up to 16 registers in the register file.
635
636 One separate CSR table is needed for each of the integer and floating-point
637 register files:
638
639 | RegNo | (3..0) |
640 | ----- | ------ |
641 | r0 | vlen0 |
642 | r1 | vlen1 |
643 | .. | vlen.. |
644 | r31 | vlen31 |
645
646 An array of 32 4-bit CSRs is needed (4 bits per register) to indicate
647 whether a register was, if referred to in any standard instructions,
648 implicitly to be treated as a vector. A vector length of 1 indicates
649 that it is to be treated as a scalar. Vector lengths of 0 are reserved.
650
651 Internally, implementations may choose to use the non-zero vector length
652 to set a bit-field per register, to be used in the instruction decode phase.
653 In this way any standard (current or future) operation involving
654 register operands may detect if the operation is to be vector-vector,
655 vector-scalar or scalar-scalar (standard) simply through a single
656 bit test.
657
658 Note that when using the "vsetl rs1, rs2" instruction (caveat: when the
659 bitwidth is specifically not set) it becomes:
660
661 CSRvlength = MIN(MIN(CSRvectorlen[rs1], MAXVECTORDEPTH), rs2)
662
663 This is in contrast to RVV:
664
665 CSRvlength = MIN(MIN(rs1, MAXVECTORDEPTH), rs2)
666
667 ## Element (SIMD) bitwidth CSRs
668
669 Element bitwidths may be specified with a per-register CSR, and indicate
670 how a register (integer or floating-point) is to be subdivided.
671
672 | RegNo | (2..0) |
673 | ----- | ------ |
674 | r0 | vew0 |
675 | r1 | vew1 |
676 | .. | vew.. |
677 | r31 | vew31 |
678
679 vew may be one of the following (giving a table "bytestable", used below):
680
681 | vew | bitwidth |
682 | --- | -------- |
683 | 000 | default |
684 | 001 | 8 |
685 | 010 | 16 |
686 | 011 | 32 |
687 | 100 | 64 |
688 | 101 | 128 |
689 | 110 | rsvd |
690 | 111 | rsvd |
691
692 Extending this table (with extra bits) is covered in the section
693 "Implementing RVV on top of Simple-V".
694
695 Note that when using the "vsetl rs1, rs2" instruction, taking bitwidth
696 into account, it becomes:
697
698 vew = CSRbitwidth[rs1]
699 if (vew == 0)
700 bytesperreg = (XLEN/8) # or FLEN as appropriate
701 else:
702 bytesperreg = bytestable[vew] # 1 2 4 8 16
703 simdmult = (XLEN/8) / bytesperreg # or FLEN as appropriate
704 vlen = CSRvectorlen[rs1] * simdmult
705 CSRvlength = MIN(MIN(vlen, MAXVECTORDEPTH), rs2)
706
707 The reason for multiplying the vector length by the number of SIMD elements
708 (in each individual register) is so that each SIMD element may optionally be
709 predicated.
710
711 An example of how to subdivide the register file when bitwidth != default
712 is given in the section "Bitwidth Virtual Register Reordering".
713
714 # Exceptions
715
716 > What does an ADD of two different-sized vectors do in simple-V?
717
718 * if the two source operands are not the same, throw an exception.
719 * if the destination operand is also a vector, and the source is longer
720 than the destination, throw an exception.
721
722 > And what about instructions like JALR? 
723 > What does jumping to a vector do?
724
725 * Throw an exception. Whether that actually results in spawning threads
726 as part of the trap-handling remains to be seen.
727
728 # Impementing V on top of Simple-V
729
730 * Number of Offset CSRs extends from 2
731 * Extra register file: vector-file
732 * Setup of Vector length and bitwidth CSRs now can specify vector-file
733 as well as integer or float file.
734 * Extend CSR tables (bitwidth) with extra bits
735 * TODO
736
737 # Implementing P (renamed to DSP) on top of Simple-V
738
739 * Implementors indicate chosen bitwidth support in Vector-bitwidth CSR
740 (caveat: anything not specified drops through to software-emulation / traps)
741 * TODO
742
743 # Appendix
744
745 ## V-Extension to Simple-V Comparative Analysis
746
747 This section has been moved to its own page [[v_comparative_analysis]]
748
749 ## P-Ext ISA
750
751 This section has been moved to its own page [[p_comparative_analysis]]
752
753 ## Comparison of "Traditional" SIMD, Alt-RVP, Simple-V and RVV Proposals <a name="parallelism_comparisons"></a>
754
755 This section compares the various parallelism proposals as they stand,
756 including traditional SIMD, in terms of features, ease of implementation,
757 complexity, flexibility, and die area.
758
759 ### [[alt_rvp]]
760
761 Primary benefit of Alt-RVP is the simplicity with which parallelism
762 may be introduced (effective multiplication of regfiles and associated ALUs).
763
764 * plus: the simplicity of the lanes (combined with the regularity of
765 allocating identical opcodes multiple independent registers) meaning
766 that SRAM or 2R1W can be used for entire regfile (potentially).
767 * minus: a more complex instruction set where the parallelism is much
768 more explicitly directly specified in the instruction and
769 * minus: if you *don't* have an explicit instruction (opcode) and you
770 need one, the only place it can be added is... in the vector unit and
771 * minus: opcode functions (and associated ALUs) duplicated in Alt-RVP are
772 not useable or accessible in other Extensions.
773 * plus-and-minus: Lanes may be utilised for high-speed context-switching
774 but with the down-side that they're an all-or-nothing part of the Extension.
775 No Alt-RVP: no fast register-bank switching.
776 * plus: Lane-switching would mean that complex operations not suited to
777 parallelisation can be carried out, followed by further parallel Lane-based
778 work, without moving register contents down to memory (and back)
779 * minus: Access to registers across multiple lanes is challenging. "Solution"
780 is to drop data into memory and immediately back in again (like MMX).
781
782 ### Simple-V
783
784 Primary benefit of Simple-V is the OO abstraction of parallel principles
785 from actual (internal) parallel hardware. It's an API in effect that's
786 designed to be slotted in to an existing implementation (just after
787 instruction decode) with minimum disruption and effort.
788
789 * minus: the complexity of having to use register renames, OoO, VLIW,
790 register file cacheing, all of which has been done before but is a
791 pain
792 * plus: transparent re-use of existing opcodes as-is just indirectly
793 saying "this register's now a vector" which
794 * plus: means that future instructions also get to be inherently
795 parallelised because there's no "separate vector opcodes"
796 * plus: Compressed instructions may also be (indirectly) parallelised
797 * minus: the indirect nature of Simple-V means that setup (setting
798 a CSR register to indicate vector length, a separate one to indicate
799 that it is a predicate register and so on) means a little more setup
800 time than Alt-RVP or RVV's "direct and within the (longer) instruction"
801 approach.
802 * plus: shared register file meaning that, like Alt-RVP, complex
803 operations not suited to parallelisation may be carried out interleaved
804 between parallelised instructions *without* requiring data to be dropped
805 down to memory and back (into a separate vectorised register engine).
806 * plus-and-maybe-minus: re-use of integer and floating-point 32-wide register
807 files means that huge parallel workloads would use up considerable
808 chunks of the register file. However in the case of RV64 and 32-bit
809 operations, that effectively means 64 slots are available for parallel
810 operations.
811 * plus: inherent parallelism (actual parallel ALUs) doesn't actually need to
812 be added, yet the instruction opcodes remain unchanged (and still appear
813 to be parallel). consistent "API" regardless of actual internal parallelism:
814 even an in-order single-issue implementation with a single ALU would still
815 appear to have parallel vectoristion.
816 * hard-to-judge: if actual inherent underlying ALU parallelism is added it's
817 hard to say if there would be pluses or minuses (on die area). At worse it
818 would be "no worse" than existing register renaming, OoO, VLIW and register
819 file cacheing schemes.
820
821 ### RVV (as it stands, Draft 0.4 Section 17, RISC-V ISA V2.3-Draft)
822
823 RVV is extremely well-designed and has some amazing features, including
824 2D reorganisation of memory through LOAD/STORE "strides".
825
826 * plus: regular predictable workload means that implementations may
827 streamline effects on L1/L2 Cache.
828 * plus: regular and clear parallel workload also means that lanes
829 (similar to Alt-RVP) may be used as an implementation detail,
830 using either SRAM or 2R1W registers.
831 * plus: separate engine with no impact on the rest of an implementation
832 * minus: separate *complex* engine with no RTL (ALUs, Pipeline stages) reuse
833 really feasible.
834 * minus: no ISA abstraction or re-use either: additions to other Extensions
835 do not gain parallelism, resulting in prolific duplication of functionality
836 inside RVV *and out*.
837 * minus: when operations require a different approach (scalar operations
838 using the standard integer or FP regfile) an entire vector must be
839 transferred out to memory, into standard regfiles, then back to memory,
840 then back to the vector unit, this to occur potentially multiple times.
841 * minus: will never fit into Compressed instruction space (as-is. May
842 be able to do so if "indirect" features of Simple-V are partially adopted).
843 * plus-and-slight-minus: extended variants may address up to 256
844 vectorised registers (requires 48/64-bit opcodes to do it).
845 * minus-and-partial-plus: separate engine plus complexity increases
846 implementation time and die area, meaning that adoption is likely only
847 to be in high-performance specialist supercomputing (where it will
848 be absolutely superb).
849
850 ### Traditional SIMD
851
852 The only really good things about SIMD are how easy it is to implement and
853 get good performance. Unfortunately that makes it quite seductive...
854
855 * plus: really straightforward, ALU basically does several packed operations
856 at once. Parallelism is inherent at the ALU, making the addition of
857 SIMD-style parallelism an easy decision that has zero significant impact
858 on the rest of any given architectural design and layout.
859 * plus (continuation): SIMD in simple in-order single-issue designs can
860 therefore result in superb throughput, easily achieved even with a very
861 simple execution model.
862 * minus: ridiculously complex setup and corner-cases that disproportionately
863 increase instruction count on what would otherwise be a "simple loop",
864 should the number of elements in an array not happen to exactly match
865 the SIMD group width.
866 * minus: getting data usefully out of registers (if separate regfiles
867 are used) means outputting to memory and back.
868 * minus: quite a lot of supplementary instructions for bit-level manipulation
869 are needed in order to efficiently extract (or prepare) SIMD operands.
870 * minus: MASSIVE proliferation of ISA both in terms of opcodes in one
871 dimension and parallelism (width): an at least O(N^2) and quite probably
872 O(N^3) ISA proliferation that often results in several thousand
873 separate instructions. all requiring separate and distinct corner-case
874 algorithms!
875 * minus: EVEN BIGGER proliferation of SIMD ISA if the functionality of
876 8, 16, 32 or 64-bit reordering is built-in to the SIMD instruction.
877 For example: add (high|low) 16-bits of r1 to (low|high) of r2 requires
878 four separate and distinct instructions: one for (r1:low r2:high),
879 one for (r1:high r2:low), one for (r1:high r2:high) and one for
880 (r1:low r2:low) *per function*.
881 * minus: EVEN BIGGER proliferation of SIMD ISA if there is a mismatch
882 between operand and result bit-widths. In combination with high/low
883 proliferation the situation is made even worse.
884 * minor-saving-grace: some implementations *may* have predication masks
885 that allow control over individual elements within the SIMD block.
886
887 ## Comparison *to* Traditional SIMD: Alt-RVP, Simple-V and RVV Proposals <a name="simd_comparison"></a>
888
889 This section compares the various parallelism proposals as they stand,
890 *against* traditional SIMD as opposed to *alongside* SIMD. In other words,
891 the question is asked "How can each of the proposals effectively implement
892 (or replace) SIMD, and how effective would they be"?
893
894 ### [[alt_rvp]]
895
896 * Alt-RVP would not actually replace SIMD but would augment it: just as with
897 a SIMD architecture where the ALU becomes responsible for the parallelism,
898 Alt-RVP ALUs would likewise be so responsible... with *additional*
899 (lane-based) parallelism on top.
900 * Thus at least some of the downsides of SIMD ISA O(N^3) proliferation by
901 at least one dimension are avoided (architectural upgrades introducing
902 128-bit then 256-bit then 512-bit variants of the exact same 64-bit
903 SIMD block)
904 * Thus, unfortunately, Alt-RVP would suffer the same inherent proliferation
905 of instructions as SIMD, albeit not quite as badly (due to Lanes).
906 * In the same discussion for Alt-RVP, an additional proposal was made to
907 be able to subdivide the bits of each register lane (columns) down into
908 arbitrary bit-lengths (RGB 565 for example).
909 * A recommendation was given instead to make the subdivisions down to 32-bit,
910 16-bit or even 8-bit, effectively dividing the registerfile into
911 Lane0(H), Lane0(L), Lane1(H) ... LaneN(L) or further. If inter-lane
912 "swapping" instructions were then introduced, some of the disadvantages
913 of SIMD could be mitigated.
914
915 ### RVV
916
917 * RVV is designed to replace SIMD with a better paradigm: arbitrary-length
918 parallelism.
919 * However whilst SIMD is usually designed for single-issue in-order simple
920 DSPs with a focus on Multimedia (Audio, Video and Image processing),
921 RVV's primary focus appears to be on Supercomputing: optimisation of
922 mathematical operations that fit into the OpenCL space.
923 * Adding functions (operations) that would normally fit (in parallel)
924 into a SIMD instruction requires an equivalent to be added to the
925 RVV Extension, if one does not exist. Given the specialist nature of
926 some SIMD instructions (8-bit or 16-bit saturated or halving add),
927 this possibility seems extremely unlikely to occur, even if the
928 implementation overhead of RVV were acceptable (compared to
929 normal SIMD/DSP-style single-issue in-order simplicity).
930
931 ### Simple-V
932
933 * Simple-V borrows hugely from RVV as it is intended to be easy to
934 topologically transplant every single instruction from RVV (as
935 designed) into Simple-V equivalents, with *zero loss of functionality
936 or capability*.
937 * With the "parallelism" abstracted out, a hypothetical SIMD-less "DSP"
938 Extension which contained the basic primitives (non-parallelised
939 8, 16 or 32-bit SIMD operations) inherently *become* parallel,
940 automatically.
941 * Additionally, standard operations (ADD, MUL) that would normally have
942 to have special SIMD-parallel opcodes added need no longer have *any*
943 of the length-dependent variants (2of 32-bit ADDs in a 64-bit register,
944 4of 32-bit ADDs in a 128-bit register) because Simple-V takes the
945 *standard* RV opcodes (present and future) and automatically parallelises
946 them.
947 * By inheriting the RVV feature of arbitrary vector-length, then just as
948 with RVV the corner-cases and ISA proliferation of SIMD is avoided.
949 * Whilst not entirely finalised, registers are expected to be
950 capable of being subdivided down to an implementor-chosen bitwidth
951 in the underlying hardware (r1 becomes r1[31..24] r1[23..16] r1[15..8]
952 and r1[7..0], or just r1[31..16] r1[15..0]) where implementors can
953 choose to have separate independent 8-bit ALUs or dual-SIMD 16-bit
954 ALUs that perform twin 8-bit operations as they see fit, or anything
955 else including no subdivisions at all.
956 * Even though implementors have that choice even to have full 64-bit
957 (with RV64) SIMD, they *must* provide predication that transparently
958 switches off appropriate units on the last loop, thus neatly fitting
959 underlying SIMD ALU implementations *into* the arbitrary vector-length
960 RVV paradigm, keeping the uniform consistent API that is a key strategic
961 feature of Simple-V.
962 * With Simple-V fitting into the standard register files, certain classes
963 of SIMD operations such as High/Low arithmetic (r1[31..16] + r2[15..0])
964 can be done by applying *Parallelised* Bit-manipulation operations
965 followed by parallelised *straight* versions of element-to-element
966 arithmetic operations, even if the bit-manipulation operations require
967 changing the bitwidth of the "vectors" to do so. Predication can
968 be utilised to skip high words (or low words) in source or destination.
969 * In essence, the key downside of SIMD - massive duplication of
970 identical functions over time as an architecture evolves from 32-bit
971 wide SIMD all the way up to 512-bit, is avoided with Simple-V, through
972 vector-style parallelism being dropped on top of 8-bit or 16-bit
973 operations, all the while keeping a consistent ISA-level "API" irrespective
974 of implementor design choices (or indeed actual implementations).
975
976 ## Example of vector / vector, vector / scalar, scalar / scalar => vector add
977
978 register CSRvectorlen[XLEN][4]; # not quite decided yet about this one...
979 register CSRpredicate[XLEN][4]; # 2^4 is max vector length
980 register CSRreg_is_vectorised[XLEN]; # just for fun support scalars as well
981 register x[32][XLEN];
982
983 function op_add(rd, rs1, rs2, predr)
984 {
985    /* note that this is ADD, not PADD */
986    int i, id, irs1, irs2;
987    # checks CSRvectorlen[rd] == CSRvectorlen[rs] etc. ignored
988    # also destination makes no sense as a scalar but what the hell...
989    for (i = 0, id=0, irs1=0, irs2=0; i<CSRvectorlen[rd]; i++)
990       if (CSRpredicate[predr][i]) # i *think* this is right...
991          x[rd+id] <= x[rs1+irs1] + x[rs2+irs2];
992       # now increment the idxs
993       if (CSRreg_is_vectorised[rd]) # bitfield check rd, scalar/vector?
994          id += 1;
995       if (CSRreg_is_vectorised[rs1]) # bitfield check rs1, scalar/vector?
996          irs1 += 1;
997       if (CSRreg_is_vectorised[rs2]) # bitfield check rs2, scalar/vector?
998          irs2 += 1;
999 }
1000
1001 ## Retro-fitting Predication into branch-explicit ISA <a name="predication_retrofit"></a>
1002
1003 One of the goals of this parallelism proposal is to avoid instruction
1004 duplication. However, with the base ISA having been designed explictly
1005 to *avoid* condition-codes entirely, shoe-horning predication into it
1006 bcomes quite challenging.
1007
1008 However what if all branch instructions, if referencing a vectorised
1009 register, were instead given *completely new analogous meanings* that
1010 resulted in a parallel bit-wise predication register being set? This
1011 would have to be done for both C.BEQZ and C.BNEZ, as well as BEQ, BNE,
1012 BLT and BGE.
1013
1014 We might imagine that FEQ, FLT and FLT would also need to be converted,
1015 however these are effectively *already* in the precise form needed and
1016 do not need to be converted *at all*! The difference is that FEQ, FLT
1017 and FLE *specifically* write a 1 to an integer register if the condition
1018 holds, and 0 if not. All that needs to be done here is to say, "if
1019 the integer register is tagged with a bit that says it is a predication
1020 register, the **bit** in the integer register is set based on the
1021 current vector index" instead.
1022
1023 There is, in the standard Conditional Branch instruction, more than
1024 adequate space to interpret it in a similar fashion:
1025
1026 [[!table data="""
1027 31 |30 ..... 25 |24 ... 20 | 19 ... 15 | 14 ...... 12 | 11 ....... 8 | 7 | 6 ....... 0 |
1028 imm[12] | imm[10:5] | rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
1029 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
1030 offset[12,10:5] || src2 | src1 | BEQ | offset[11,4:1] || BRANCH |
1031 """]]
1032
1033 This would become:
1034
1035 [[!table data="""
1036 31 | 30 .. 25 |24 ... 20 | 19 15 | 14 12 | 11 .. 8 | 7 | 6 ... 0 |
1037 imm[12] | imm[10:5]| rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
1038 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
1039 reserved || src2 | src1 | BEQ | predicate rs3 || BRANCH |
1040 """]]
1041
1042 Similarly the C.BEQZ and C.BNEZ instruction format may be retro-fitted,
1043 with the interesting side-effect that there is space within what is presently
1044 the "immediate offset" field to reinterpret that to add in not only a bit
1045 field to distinguish between floating-point compare and integer compare,
1046 not only to add in a second source register, but also use some of the bits as
1047 a predication target as well.
1048
1049 [[!table data="""
1050 15 ...... 13 | 12 ........... 10 | 9..... 7 | 6 ................. 2 | 1 .. 0 |
1051 funct3 | imm | rs10 | imm | op |
1052 3 | 3 | 3 | 5 | 2 |
1053 C.BEQZ | offset[8,4:3] | src | offset[7:6,2:1,5] | C1 |
1054 """]]
1055
1056 Now uses the CS format:
1057
1058 [[!table data="""
1059 15 ...... 13 | 12 ........... 10 | 9..... 7 | 6 .. 5 | 4......... 2 | 1 .. 0 |
1060 funct3 | imm | rs10 | imm | | op |
1061 3 | 3 | 3 | 2 | 3 | 2 |
1062 C.BEQZ | predicate rs3 | src1 | I/F B | src2 | C1 |
1063 """]]
1064
1065 Bit 6 would be decoded as "operation refers to Integer or Float" including
1066 interpreting src1 and src2 accordingly as outlined in Table 12.2 of the
1067 "C" Standard, version 2.0,
1068 whilst Bit 5 would allow the operation to be extended, in combination with
1069 funct3 = 110 or 111: a combination of four distinct (predicated) comparison
1070 operators. In both floating-point and integer cases those could be
1071 EQ/NEQ/LT/LE (with GT and GE being synthesised by inverting src1 and src2).
1072
1073 ## Register reordering <a name="register_reordering"></a>
1074
1075 ### Register File
1076
1077 | Reg Num | Bits |
1078 | ------- | ---- |
1079 | r0 | (32..0) |
1080 | r1 | (32..0) |
1081 | r2 | (32..0) |
1082 | r3 | (32..0) |
1083 | r4 | (32..0) |
1084 | r5 | (32..0) |
1085 | r6 | (32..0) |
1086 | r7 | (32..0) |
1087 | .. | (32..0) |
1088 | r31| (32..0) |
1089
1090 ### Vectorised CSR
1091
1092 May not be an actual CSR: may be generated from Vector Length CSR:
1093 single-bit is less burdensome on instruction decode phase.
1094
1095 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
1096 | - | - | - | - | - | - | - | - |
1097 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |
1098
1099 ### Vector Length CSR
1100
1101 | Reg Num | (3..0) |
1102 | ------- | ---- |
1103 | r0 | 2 |
1104 | r1 | 0 |
1105 | r2 | 1 |
1106 | r3 | 1 |
1107 | r4 | 3 |
1108 | r5 | 0 |
1109 | r6 | 0 |
1110 | r7 | 1 |
1111
1112 ### Virtual Register Reordering
1113
1114 This example assumes the above Vector Length CSR table
1115
1116 | Reg Num | Bits (0) | Bits (1) | Bits (2) |
1117 | ------- | -------- | -------- | -------- |
1118 | r0 | (32..0) | (32..0) |
1119 | r2 | (32..0) |
1120 | r3 | (32..0) |
1121 | r4 | (32..0) | (32..0) | (32..0) |
1122 | r7 | (32..0) |
1123
1124 ### Bitwidth Virtual Register Reordering
1125
1126 This example goes a little further and illustrates the effect that a
1127 bitwidth CSR has been set on a register. Preconditions:
1128
1129 * RV32 assumed
1130 * CSRintbitwidth[2] = 010 # integer r2 is 16-bit
1131 * CSRintvlength[2] = 3 # integer r2 is a vector of length 3
1132 * vsetl rs1, 5 # set the vector length to 5
1133
1134 This is interpreted as follows:
1135
1136 * Given that the context is RV32, ELEN=32.
1137 * With ELEN=32 and bitwidth=16, the number of SIMD elements is 2
1138 * Therefore the actual vector length is up to *six* elements
1139 * However vsetl sets a length 5 therefore the last "element" is skipped
1140
1141 So when using an operation that uses r2 as a source (or destination)
1142 the operation is carried out as follows:
1143
1144 * 16-bit operation on r2(15..0) - vector element index 0
1145 * 16-bit operation on r2(31..16) - vector element index 1
1146 * 16-bit operation on r3(15..0) - vector element index 2
1147 * 16-bit operation on r3(31..16) - vector element index 3
1148 * 16-bit operation on r4(15..0) - vector element index 4
1149 * 16-bit operation on r4(31..16) **NOT** carried out due to length being 5
1150
1151 Predication has been left out of the above example for simplicity, however
1152 predication is ANDed with the latter stages (vsetl not equal to maximum
1153 capacity).
1154
1155 Note also that it is entirely an implementor's choice as to whether to have
1156 actual separate ALUs down to the minimum bitwidth, or whether to have something
1157 more akin to traditional SIMD (at any level of subdivision: 8-bit SIMD
1158 operations carried out 32-bits at a time is perfectly acceptable, as is
1159 8-bit SIMD operations carried out 16-bits at a time requiring two ALUs).
1160 Regardless of the internal parallelism choice, *predication must
1161 still be respected*, making Simple-V in effect the "consistent public API".
1162
1163 vew may be one of the following (giving a table "bytestable", used below):
1164
1165 | vew | bitwidth |
1166 | --- | -------- |
1167 | 000 | default |
1168 | 001 | 8 |
1169 | 010 | 16 |
1170 | 011 | 32 |
1171 | 100 | 64 |
1172 | 101 | 128 |
1173 | 110 | rsvd |
1174 | 111 | rsvd |
1175
1176 Pseudocode for vector length taking CSR SIMD-bitwidth into account:
1177
1178 vew = CSRbitwidth[rs1]
1179 if (vew == 0)
1180 bytesperreg = (XLEN/8) # or FLEN as appropriate
1181 else:
1182 bytesperreg = bytestable[vew] # 1 2 4 8 16
1183 simdmult = (XLEN/8) / bytesperreg # or FLEN as appropriate
1184 vlen = CSRvectorlen[rs1] * simdmult
1185
1186 To index an element in a register rnum where the vector element index is i:
1187
1188 function regoffs(rnum, i):
1189 regidx = floor(i / simdmult) # integer-div rounded down
1190 byteidx = i % simdmult # integer-remainder
1191 return rnum + regidx, # actual real register
1192 byteidx * 8, # low
1193 byteidx * 8 + (vew-1), # high
1194
1195 ### Example Instruction translation: <a name="example_translation"></a>
1196
1197 Instructions "ADD r2 r4 r4" would result in three instructions being
1198 generated and placed into the FILO:
1199
1200 * ADD r2 r4 r4
1201 * ADD r2 r5 r5
1202 * ADD r2 r6 r6
1203
1204 ### Insights
1205
1206 SIMD register file splitting still to consider. For RV64, benefits of doubling
1207 (quadrupling in the case of Half-Precision IEEE754 FP) the apparent
1208 size of the floating point register file to 64 (128 in the case of HP)
1209 seem pretty clear and worth the complexity.
1210
1211 64 virtual 32-bit F.P. registers and given that 32-bit FP operations are
1212 done on 64-bit registers it's not so conceptually difficult.  May even
1213 be achieved by *actually* splitting the regfile into 64 virtual 32-bit
1214 registers such that a 64-bit FP scalar operation is dropped into (r0.H
1215 r0.L) tuples.  Implementation therefore hidden through register renaming.
1216
1217 Implementations intending to introduce VLIW, OoO and parallelism
1218 (even without Simple-V) would then find that the instructions are
1219 generated quicker (or in a more compact fashion that is less heavy
1220 on caches). Interestingly we observe then that Simple-V is about
1221 "consolidation of instruction generation", where actual parallelism
1222 of underlying hardware is an implementor-choice that could just as
1223 equally be applied *without* Simple-V even being implemented.
1224
1225 ## Analysis of CSR decoding on latency <a name="csr_decoding_analysis"></a>
1226
1227 It could indeed have been logically deduced (or expected), that there
1228 would be additional decode latency in this proposal, because if
1229 overloading the opcodes to have different meanings, there is guaranteed
1230 to be some state, some-where, directly related to registers.
1231
1232 There are several cases:
1233
1234 * All operands vector-length=1 (scalars), all operands
1235 packed-bitwidth="default": instructions are passed through direct as if
1236 Simple-V did not exist.  Simple-V is, in effect, completely disabled.
1237 * At least one operand vector-length > 1, all operands
1238 packed-bitwidth="default": any parallel vector ALUs placed on "alert",
1239 virtual parallelism looping may be activated.
1240 * All operands vector-length=1 (scalars), at least one
1241 operand packed-bitwidth != default: degenerate case of SIMD,
1242 implementation-specific complexity here (packed decode before ALUs or
1243 *IN* ALUs)
1244 * At least one operand vector-length > 1, at least one operand
1245 packed-bitwidth != default: parallel vector ALUs (if any)
1246 placed on "alert", virtual parallelsim looping may be activated,
1247 implementation-specific SIMD complexity kicks in (packed decode before
1248 ALUs or *IN* ALUs).
1249
1250 Bear in mind that the proposal includes that the decision whether
1251 to parallelise in hardware or whether to virtual-parallelise (to
1252 dramatically simplify compilers and also not to run into the SIMD
1253 instruction proliferation nightmare) *or* a transprent combination
1254 of both, be done on a *per-operand basis*, so that implementors can
1255 specifically choose to create an application-optimised implementation
1256 that they believe (or know) will sell extremely well, without having
1257 "Extra Standards-Mandated Baggage" that would otherwise blow their area
1258 or power budget completely out the window.
1259
1260 Additionally, two possible CSR schemes have been proposed, in order to
1261 greatly reduce CSR space:
1262
1263 * per-register CSRs (vector-length and packed-bitwidth)
1264 * a smaller number of CSRs with the same information but with an *INDEX*
1265 specifying WHICH register in one of three regfiles (vector, fp, int)
1266 the length and bitwidth applies to.
1267
1268 (See "CSR vector-length and CSR SIMD packed-bitwidth" section for details)
1269
1270 In addition, LOAD/STORE has its own associated proposed CSRs that
1271 mirror the STRIDE (but not yet STRIDE-SEGMENT?) functionality of
1272 V (and Hwacha).
1273
1274 Also bear in mind that, for reasons of simplicity for implementors,
1275 I was coming round to the idea of permitting implementors to choose
1276 exactly which bitwidths they would like to support in hardware and which
1277 to allow to fall through to software-trap emulation.
1278
1279 So the question boils down to:
1280
1281 * whether either (or both) of those two CSR schemes have significant
1282 latency that could even potentially require an extra pipeline decode stage
1283 * whether there are implementations that can be thought of which do *not*
1284 introduce significant latency
1285 * whether it is possible to explicitly (through quite simply
1286 disabling Simple-V-Ext) or implicitly (detect the case all-vlens=1,
1287 all-simd-bitwidths=default) switch OFF any decoding, perhaps even to
1288 the extreme of skipping an entire pipeline stage (if one is needed)
1289 * whether packed bitwidth and associated regfile splitting is so complex
1290 that it should definitely, definitely be made mandatory that implementors
1291 move regfile splitting into the ALU, and what are the implications of that
1292 * whether even if that *is* made mandatory, is software-trapped
1293 "unsupported bitwidths" still desirable, on the basis that SIMD is such
1294 a complete nightmare that *even* having a software implementation is
1295 better, making Simple-V have more in common with a software API than
1296 anything else.
1297
1298 Whilst the above may seem to be severe minuses, there are some strong
1299 pluses:
1300
1301 * Significant reduction of V's opcode space: over 85%.
1302 * Smaller reduction of P's opcode space: around 10%.
1303 * The potential to use Compressed instructions in both Vector and SIMD
1304 due to the overloading of register meaning (implicit vectorisation,
1305 implicit packing)
1306 * Not only present but also future extensions automatically gain parallelism.
1307 * Already mentioned but worth emphasising: the simplification to compiler
1308 writers and assembly-level writers of having the same consistent ISA
1309 regardless of whether the internal level of parallelism (number of
1310 parallel ALUs) is only equal to one ("virtual" parallelism), or is
1311 greater than one, should not be underestimated.
1312
1313 ## Reducing Register Bank porting
1314
1315 This looks quite reasonable.
1316 <https://www.princeton.edu/~rblee/ELE572Papers/MultiBankRegFile_ISCA2000.pdf>
1317
1318 The main details are outlined on page 4.  They propose a 2-level register
1319 cache hierarchy, note that registers are typically only read once, that
1320 you never write back from upper to lower cache level but always go in a
1321 cycle lower -> upper -> ALU -> lower, and at the top of page 5 propose
1322 a scheme where you look ahead by only 2 instructions to determine which
1323 registers to bring into the cache.
1324
1325 The nice thing about a vector architecture is that you *know* that
1326 *even more* registers are going to be pulled in: Hwacha uses this fact
1327 to optimise L1/L2 cache-line usage (avoid thrashing), strangely enough
1328 by *introducing* deliberate latency into the execution phase.
1329
1330 ## Overflow registers in combination with predication
1331
1332 **TODO**: propose overflow registers be actually one of the integer regs
1333 (flowing to multiple regs).
1334
1335 **TODO**: propose "mask" (predication) registers likewise. combination with
1336 standard RV instructions and overflow registers extremely powerful, see
1337 Aspex ASP.
1338
1339 When integer overflow is stored in an easily-accessible bit (or another
1340 register), parallelisation turns this into a group of bits which can
1341 potentially be interacted with in predication, in interesting and powerful
1342 ways. For example, by taking the integer-overflow result as a predication
1343 field and shifting it by one, a predicated vectorised "add one" can emulate
1344 "carry" on arbitrary (unlimited) length addition.
1345
1346 However despite RVV having made room for floating-point exceptions, neither
1347 RVV nor base RV have taken integer-overflow (carry) into account, which
1348 makes proposing it quite challenging given that the relevant (Base) RV
1349 sections are frozen. Consequently it makes sense to forgo this feature.
1350
1351 ## Virtual Memory page-faults
1352
1353 > I was going through the C.LOAD / C.STORE section 12.3 of V2.3-Draft
1354 > riscv-isa-manual in order to work out how to re-map RVV onto the standard
1355 > ISA, and came across an interesting comments at the bottom of pages 75
1356 > and 76:
1357
1358 > " A common mechanism used in other ISAs to further reduce save/restore
1359 > code size is load- multiple and store-multiple instructions. "
1360
1361 > Fascinatingly, due to Simple-V proposing to use the *standard* register
1362 > file, both C.LOAD / C.STORE *and* LOAD / STORE would in effect be exactly
1363 > that: load-multiple and store-multiple instructions. Which brings us
1364 > on to this comment:
1365
1366 > "For virtual memory systems, some data accesses could be resident in
1367 > physical memory and
1368 > some could not, which requires a new restart mechanism for partially
1369 > executed instructions."
1370
1371 > Which then of course brings us to the interesting question: how does RVV
1372 > cope with the scenario when, particularly with LD.X (Indexed / indirect
1373 > loads), part-way through the loading a page fault occurs?
1374
1375 > Has this been noted or discussed before?
1376
1377 For applications-class platforms, the RVV exception model is
1378 element-precise (that is, if an exception occurs on element j of a
1379 vector instruction, elements 0..j-1 have completed execution and elements
1380 j+1..vl-1 have not executed).
1381
1382 Certain classes of embedded platforms where exceptions are always fatal
1383 might choose to offer resumable/swappable interrupts but not precise
1384 exceptions.
1385
1386
1387 > Is RVV designed in any way to be re-entrant?
1388
1389 Yes.
1390
1391
1392 > What would the implications be for instructions that were in a FIFO at
1393 > the time, in out-of-order and VLIW implementations, where partial decode
1394 > had taken place?
1395
1396 The usual bag of tricks for maintaining precise exceptions applies to
1397 vector machines as well. Register renaming makes the job easier, and
1398 it's relatively cheaper for vectors, since the control cost is amortized
1399 over longer registers.
1400
1401
1402 > Would it be reasonable at least to say *bypass* (and freeze) the
1403 > instruction FIFO (drop down to a single-issue execution model temporarily)
1404 > for the purposes of executing the instructions in the interrupt (whilst
1405 > setting up the VM page), then re-continue the instruction with all
1406 > state intact?
1407
1408 This approach has been done successfully, but it's desirable to be
1409 able to swap out the vector unit state to support context switches on
1410 exceptions that result in long-latency I/O.
1411
1412
1413 > Or would it be better to switch to an entirely separate secondary
1414 > hyperthread context?
1415
1416 > Does anyone have any ideas or know if there is any academic literature
1417 > on solutions to this problem?
1418
1419 The Vector VAX offered imprecise but restartable and swappable exceptions:
1420 http://mprc.pku.edu.cn/~liuxianhua/chn/corpus/Notes/articles/isca/1990/VAX%20vector%20architecture.pdf
1421
1422 Sec. 4.6 of Krste's dissertation assesses some of
1423 the tradeoffs and references a bunch of related work:
1424 http://people.eecs.berkeley.edu/~krste/thesis.pdf
1425
1426
1427 ----
1428
1429 Started reading section 4.6 of Krste's thesis, noted the "IEE85 F.P
1430 exceptions" and thought, "hmmm that could go into a CSR, must re-read
1431 the section on FP state CSRs in RVV 0.4-Draft again" then i suddenly
1432 thought, "ah ha! what if the memory exceptions were, instead of having
1433 an immediate exception thrown, were simply stored in a type of predication
1434 bit-field with a flag "error this element failed"?
1435
1436 Then, *after* the vector load (or store, or even operation) was
1437 performed, you could *then* raise an exception, at which point it
1438 would be possible (yes in software... I know....) to go "hmmm, these
1439 indexed operations didn't work, let's get them into memory by triggering
1440 page-loads", then *re-run the entire instruction* but this time with a
1441 "memory-predication CSR" that stops the already-performed operations
1442 (whether they be loads, stores or an arithmetic / FP operation) from
1443 being carried out a second time.
1444
1445 This theoretically could end up being done multiple times in an SMP
1446 environment, and also for LD.X there would be the remote outside annoying
1447 possibility that the indexed memory address could end up being modified.
1448
1449 The advantage would be that the order of execution need not be
1450 sequential, which potentially could have some big advantages.
1451 Am still thinking through the implications as any dependent operations
1452 (particularly ones already decoded and moved into the execution FIFO)
1453 would still be there (and stalled). hmmm.
1454
1455 # References
1456
1457 * SIMD considered harmful <https://www.sigarch.org/simd-instructions-considered-harmful/>
1458 * Link to first proposal <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/GuukrSjgBH8>
1459 * Recommendation by Jacob Bachmeyer to make zero-overhead loop an
1460 "implicit program-counter" <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/vYVi95gF2Mo/SHz6a4_lAgAJ>
1461 * Re-continuing P-Extension proposal <https://groups.google.com/a/groups.riscv.org/forum/#!msg/isa-dev/IkLkQn3HvXQ/SEMyC9IlAgAJ>
1462 * First Draft P-SIMD (DSP) proposal <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/vYVi95gF2Mo>
1463 * B-Extension discussion <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/zi_7B15kj6s>
1464 * Broadcom VideoCore-IV <https://docs.broadcom.com/docs/12358545>
1465 Figure 2 P17 and Section 3 on P16.
1466 * Hwacha <https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-262.html>
1467 * Hwacha <https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-263.html>
1468 * Vector Workshop <http://riscv.org/wp-content/uploads/2015/06/riscv-vector-workshop-june2015.pdf>
1469 * Predication <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/XoP4BfYSLXA>
1470 * Branch Divergence <https://jbush001.github.io/2014/12/07/branch-divergence-in-parallel-kernels.html>
1471 * Life of Triangles (3D) <https://jbush001.github.io/2016/02/27/life-of-triangle.html>
1472 * Videocore-IV <https://github.com/hermanhermitage/videocoreiv/wiki/VideoCore-IV-3d-Graphics-Pipeline>
1473 * Discussion proposing CSRs that change ISA definition
1474 <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/InzQ1wr_3Ak>
1475 * Zero-overhead loops <https://pdfs.semanticscholar.org/dbaa/66985cc730d4b44d79f519e96ec9c43ab5b7.pdf>
1476 * Multi-ported VLIW Register File Implementation <https://ce-publications.et.tudelft.nl/publications/1517_multiple_contexts_in_a_multiported_vliw_register_file_impl.pdf>
1477 * Fast context save/restore proposal <https://groups.google.com/a/groups.riscv.org/d/msgid/isa-dev/57F823FA.6030701%40gmail.com>
1478 * Register File Bank Cacheing <https://www.princeton.edu/~rblee/ELE572Papers/MultiBankRegFile_ISCA2000.pdf>
1479 * Expired Patent on Vector Virtual Memory solutions
1480 <https://patentimages.storage.googleapis.com/fc/f6/e2/2cbee92fcd8743/US5895501.pdf>
1481 * Discussion on RVV "re-entrant" capabilities allowing operations to be
1482 restarted if an exception occurs (VM page-table miss)
1483 <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/IuNFitTw9fM/CCKBUlzsAAAJ>