reorg
[libreriscv.git] / simple_v_extension.mdwn
1 # Variable-width Variable-packed SIMD / Simple-V / Parallelism Extension Proposal
2
3 * TODO 23may2018: CSR-CAM-ify regfile tables
4 * TODO 23may2018: zero-mark predication CSR
5 * TODO 28may2018: sort out VSETVL: CSR length to be removed?
6 * TODO 09jun2018: Chennai Presentation more up-to-date
7 * TODO 09jun2019: elwidth only 4 values (dflt, dflt/2, 8, 16)
8 * TODO 09jun2019: extra register banks (future option)
9 * TODO 09jun2019: new Reg CSR table (incl. packed=Y/N)
10
11
12 Key insight: Simple-V is intended as an abstraction layer to provide
13 a consistent "API" to parallelisation of existing *and future* operations.
14 *Actual* internal hardware-level parallelism is *not* required, such
15 that Simple-V may be viewed as providing a "compact" or "consolidated"
16 means of issuing multiple near-identical arithmetic instructions to an
17 instruction queue (FIFO), pending execution.
18
19 *Actual* parallelism, if added independently of Simple-V in the form
20 of Out-of-order restructuring (including parallel ALU lanes) or VLIW
21 implementations, or SIMD, or anything else, would then benefit *if*
22 Simple-V was added on top.
23
24 [[!toc ]]
25
26 # Introduction
27
28 This proposal exists so as to be able to satisfy several disparate
29 requirements: power-conscious, area-conscious, and performance-conscious
30 designs all pull an ISA and its implementation in different conflicting
31 directions, as do the specific intended uses for any given implementation.
32
33 The existing P (SIMD) proposal and the V (Vector) proposals,
34 whilst each extremely powerful in their own right and clearly desirable,
35 are also:
36
37 * Clearly independent in their origins (Cray and AndesStar v3 respectively)
38 so need work to adapt to the RISC-V ethos and paradigm
39 * Are sufficiently large so as to make adoption (and exploration for
40 analysis and review purposes) prohibitively expensive
41 * Both contain partial duplication of pre-existing RISC-V instructions
42 (an undesirable characteristic)
43 * Both have independent, incompatible and disparate methods for introducing
44 parallelism at the instruction level
45 * Both require that their respective parallelism paradigm be implemented
46 along-side and integral to their respective functionality *or not at all*.
47 * Both independently have methods for introducing parallelism that
48 could, if separated, benefit
49 *other areas of RISC-V not just DSP or Floating-point respectively*.
50
51 There are also key differences between Vectorisation and SIMD (full
52 details outlined in the Appendix), the key points being:
53
54 * SIMD has an extremely seductively compelling ease of implementation argument:
55 each operation is passed to the ALU, which is where the parallelism
56 lies. There is *negligeable* (if any) impact on the rest of the core
57 (with life instead being made hell for compiler writers and applications
58 writers due to extreme ISA proliferation).
59 * By contrast, Vectorisation has quite some complexity (for considerable
60 flexibility, reduction in opcode proliferation and much more).
61 * Vectorisation typically includes much more comprehensive memory load
62 and store schemes (unit stride, constant-stride and indexed), which
63 in turn have ramifications: virtual memory misses (TLB cache misses)
64 and even multiple page-faults... all caused by a *single instruction*,
65 yet with a clear benefit that the regularisation of LOAD/STOREs can
66 be optimised for minimal impact on caches and maximised throughput.
67 * By contrast, SIMD can use "standard" memory load/stores (32-bit aligned
68 to pages), and these load/stores have absolutely nothing to do with the
69 SIMD / ALU engine, no matter how wide the operand. Simplicity but with
70 more impact on instruction and data caches.
71
72 Overall it makes a huge amount of sense to have a means and method
73 of introducing instruction parallelism in a flexible way that provides
74 implementors with the option to choose exactly where they wish to offer
75 performance improvements and where they wish to optimise for power
76 and/or area (and if that can be offered even on a per-operation basis that
77 would provide even more flexibility).
78
79 Additionally it makes sense to *split out* the parallelism inherent within
80 each of P and V, and to see if each of P and V then, in *combination* with
81 a "best-of-both" parallelism extension, could be added on *on top* of
82 this proposal, to topologically provide the exact same functionality of
83 each of P and V. Each of P and V then can focus on providing the best
84 operations possible for their respective target areas, without being
85 hugely concerned about the actual parallelism.
86
87 Furthermore, an additional goal of this proposal is to reduce the number
88 of opcodes utilised by each of P and V as they currently stand, leveraging
89 existing RISC-V opcodes where possible, and also potentially allowing
90 P and V to make use of Compressed Instructions as a result.
91
92 # Analysis and discussion of Vector vs SIMD
93
94 There are six combined areas between the two proposals that help with
95 parallelism (increased performance, reduced power / area) without
96 over-burdening the ISA with a huge proliferation of
97 instructions:
98
99 * Fixed vs variable parallelism (fixed or variable "M" in SIMD)
100 * Implicit vs fixed instruction bit-width (integral to instruction or not)
101 * Implicit vs explicit type-conversion (compounded on bit-width)
102 * Implicit vs explicit inner loops.
103 * Single-instruction LOAD/STORE.
104 * Masks / tagging (selecting/preventing certain indexed elements from execution)
105
106 The pros and cons of each are discussed and analysed below.
107
108 ## Fixed vs variable parallelism length
109
110 In David Patterson and Andrew Waterman's analysis of SIMD and Vector
111 ISAs, the analysis comes out clearly in favour of (effectively) variable
112 length SIMD. As SIMD is a fixed width, typically 4, 8 or in extreme cases
113 16 or 32 simultaneous operations, the setup, teardown and corner-cases of SIMD
114 are extremely burdensome except for applications whose requirements
115 *specifically* match the *precise and exact* depth of the SIMD engine.
116
117 Thus, SIMD, no matter what width is chosen, is never going to be acceptable
118 for general-purpose computation, and in the context of developing a
119 general-purpose ISA, is never going to satisfy 100 percent of implementors.
120
121 To explain this further: for increased workloads over time, as the
122 performance requirements increase for new target markets, implementors
123 choose to extend the SIMD width (so as to again avoid mixing parallelism
124 into the instruction issue phases: the primary "simplicity" benefit of
125 SIMD in the first place), with the result that the entire opcode space
126 effectively doubles with each new SIMD width that's added to the ISA.
127
128 That basically leaves "variable-length vector" as the clear *general-purpose*
129 winner, at least in terms of greatly simplifying the instruction set,
130 reducing the number of instructions required for any given task, and thus
131 reducing power consumption for the same.
132
133 ## Implicit vs fixed instruction bit-width
134
135 SIMD again has a severe disadvantage here, over Vector: huge proliferation
136 of specialist instructions that target 8-bit, 16-bit, 32-bit, 64-bit, and
137 have to then have operations *for each and between each*. It gets very
138 messy, very quickly.
139
140 The V-Extension on the other hand proposes to set the bit-width of
141 future instructions on a per-register basis, such that subsequent instructions
142 involving that register are *implicitly* of that particular bit-width until
143 otherwise changed or reset.
144
145 This has some extremely useful properties, without being particularly
146 burdensome to implementations, given that instruction decode already has
147 to direct the operation to a correctly-sized width ALU engine, anyway.
148
149 Not least: in places where an ISA was previously constrained (due for
150 whatever reason, including limitations of the available operand space),
151 implicit bit-width allows the meaning of certain operations to be
152 type-overloaded *without* pollution or alteration of frozen and immutable
153 instructions, in a fully backwards-compatible fashion.
154
155 ## Implicit and explicit type-conversion
156
157 The Draft 2.3 V-extension proposal has (deprecated) polymorphism to help
158 deal with over-population of instructions, such that type-casting from
159 integer (and floating point) of various sizes is automatically inferred
160 due to "type tagging" that is set with a special instruction. A register
161 will be *specifically* marked as "16-bit Floating-Point" and, if added
162 to an operand that is specifically tagged as "32-bit Integer" an implicit
163 type-conversion will take place *without* requiring that type-conversion
164 to be explicitly done with its own separate instruction.
165
166 However, implicit type-conversion is not only quite burdensome to
167 implement (explosion of inferred type-to-type conversion) but also is
168 never really going to be complete. It gets even worse when bit-widths
169 also have to be taken into consideration. Each new type results in
170 an increased O(N^2) conversion space that, as anyone who has examined
171 python's source code (which has built-in polymorphic type-conversion),
172 knows that the task is more complex than it first seems.
173
174 Overall, type-conversion is generally best to leave to explicit
175 type-conversion instructions, or in definite specific use-cases left to
176 be part of an actual instruction (DSP or FP)
177
178 ## Zero-overhead loops vs explicit loops
179
180 The initial Draft P-SIMD Proposal by Chuanhua Chang of Andes Technology
181 contains an extremely interesting feature: zero-overhead loops. This
182 proposal would basically allow an inner loop of instructions to be
183 repeated indefinitely, a fixed number of times.
184
185 Its specific advantage over explicit loops is that the pipeline in a DSP
186 can potentially be kept completely full *even in an in-order single-issue
187 implementation*. Normally, it requires a superscalar architecture and
188 out-of-order execution capabilities to "pre-process" instructions in
189 order to keep ALU pipelines 100% occupied.
190
191 By bringing that capability in, this proposal could offer a way to increase
192 pipeline activity even in simpler implementations in the one key area
193 which really matters: the inner loop.
194
195 However when looking at much more comprehensive schemes
196 "A portable specification of zero-overhead loop control hardware
197 applied to embedded processors" (ZOLC), optimising only the single
198 inner loop seems inadequate, tending to suggest that ZOLC may be
199 better off being proposed as an entirely separate Extension.
200
201 ## Single-instruction LOAD/STORE
202
203 In traditional Vector Architectures there are instructions which
204 result in multiple register-memory transfer operations resulting
205 from a single instruction. They're complicated to implement in hardware,
206 yet the benefits are a huge consistent regularisation of memory accesses
207 that can be highly optimised with respect to both actual memory and any
208 L1, L2 or other caches. In Hwacha EECS-2015-263 it is explicitly made
209 clear the consequences of getting this architecturally wrong:
210 L2 cache-thrashing at the very least.
211
212 Complications arise when Virtual Memory is involved: TLB cache misses
213 need to be dealt with, as do page faults. Some of the tradeoffs are
214 discussed in <http://people.eecs.berkeley.edu/~krste/thesis.pdf>, Section
215 4.6, and an article by Jeff Bush when faced with some of these issues
216 is particularly enlightening
217 <https://jbush001.github.io/2015/11/03/lost-in-translation.html>
218
219 Interestingly, none of this complexity is faced in SIMD architectures...
220 but then they do not get the opportunity to optimise for highly-streamlined
221 memory accesses either.
222
223 With the "bang-per-buck" ratio being so high and the indirect improvement
224 in L1 Instruction Cache usage (reduced instruction count), as well as
225 the opportunity to optimise L1 and L2 cache usage, the case for including
226 Vector LOAD/STORE is compelling.
227
228 ## Mask and Tagging (Predication)
229
230 Tagging (aka Masks aka Predication) is a pseudo-method of implementing
231 simplistic branching in a parallel fashion, by allowing execution on
232 elements of a vector to be switched on or off depending on the results
233 of prior operations in the same array position.
234
235 The reason for considering this is simple: by *definition* it
236 is not possible to perform individual parallel branches in a SIMD
237 (Single-Instruction, **Multiple**-Data) context. Branches (modifying
238 of the Program Counter) will result in *all* parallel data having
239 a different instruction executed on it: that's just the definition of
240 SIMD, and it is simply unavoidable.
241
242 So these are the ways in which conditional execution may be implemented:
243
244 * explicit compare and branch: BNE x, y -> offs would jump offs
245 instructions if x was not equal to y
246 * explicit store of tag condition: CMP x, y -> tagbit
247 * implicit (condition-code) such as ADD results in a carry, carry bit
248 implicitly (or sometimes explicitly) goes into a "tag" (mask) register
249
250 The first of these is a "normal" branch method, which is flat-out impossible
251 to parallelise without look-ahead and effectively rewriting instructions.
252 This would defeat the purpose of RISC.
253
254 The latter two are where parallelism becomes easy to do without complexity:
255 every operation is modified to be "conditionally executed" (in an explicit
256 way directly in the instruction format *or* implicitly).
257
258 RVV (Vector-Extension) proposes to have *explicit* storing of the compare
259 in a tag/mask register, and to *explicitly* have every vector operation
260 *require* that its operation be "predicated" on the bits within an
261 explicitly-named tag/mask register.
262
263 SIMD (P-Extension) has not yet published precise documentation on what its
264 schema is to be: there is however verbal indication at the time of writing
265 that:
266
267 > The "compare" instructions in the DSP/SIMD ISA proposed by Andes will
268 > be executed using the same compare ALU logic for the base ISA with some
269 > minor modifications to handle smaller data types. The function will not
270 > be duplicated.
271
272 This is an *implicit* form of predication as the base RV ISA does not have
273 condition-codes or predication. By adding a CSR it becomes possible
274 to also tag certain registers as "predicated if referenced as a destination".
275 Example:
276
277 // in future operations from now on, if r0 is the destination use r5 as
278 // the PREDICATION register
279 SET_IMPLICIT_CSRPREDICATE r0, r5
280 // store the compares in r5 as the PREDICATION register
281 CMPEQ8 r5, r1, r2
282 // r0 is used here. ah ha! that means it's predicated using r5!
283 ADD8 r0, r1, r3
284
285 With enough registers (and in RISC-V there are enough registers) some fairly
286 complex predication can be set up and yet still execute without significant
287 stalling, even in a simple non-superscalar architecture.
288
289 (For details on how Branch Instructions would be retro-fitted to indirectly
290 predicated equivalents, see Appendix)
291
292 ## Conclusions
293
294 In the above sections the five different ways where parallel instruction
295 execution has closely and loosely inter-related implications for the ISA and
296 for implementors, were outlined. The pluses and minuses came out as
297 follows:
298
299 * Fixed vs variable parallelism: <b>variable</b>
300 * Implicit (indirect) vs fixed (integral) instruction bit-width: <b>indirect</b>
301 * Implicit vs explicit type-conversion: <b>explicit</b>
302 * Implicit vs explicit inner loops: <b>implicit but best done separately</b>
303 * Single-instruction Vector LOAD/STORE: <b>Complex but highly beneficial</b>
304 * Tag or no-tag: <b>Complex but highly beneficial</b>
305
306 In particular:
307
308 * variable-length vectors came out on top because of the high setup, teardown
309 and corner-cases associated with the fixed width of SIMD.
310 * Implicit bit-width helps to extend the ISA to escape from
311 former limitations and restrictions (in a backwards-compatible fashion),
312 whilst also leaving implementors free to simmplify implementations
313 by using actual explicit internal parallelism.
314 * Implicit (zero-overhead) loops provide a means to keep pipelines
315 potentially 100% occupied in a single-issue in-order implementation
316 i.e. *without* requiring a super-scalar or out-of-order architecture,
317 but doing a proper, full job (ZOLC) is an entirely different matter.
318
319 Constructing a SIMD/Simple-Vector proposal based around four of these six
320 requirements would therefore seem to be a logical thing to do.
321
322 # Note on implementation of parallelism
323
324 One extremely important aspect of this proposal is to respect and support
325 implementors desire to focus on power, area or performance. In that regard,
326 it is proposed that implementors be free to choose whether to implement
327 the Vector (or variable-width SIMD) parallelism as sequential operations
328 with a single ALU, fully parallel (if practical) with multiple ALUs, or
329 a hybrid combination of both.
330
331 In Broadcom's Videocore-IV, they chose hybrid, and called it "Virtual
332 Parallelism". They achieve a 16-way SIMD at an **instruction** level
333 by providing a combination of a 4-way parallel ALU *and* an externally
334 transparent loop that feeds 4 sequential sets of data into each of the
335 4 ALUs.
336
337 Also in the same core, it is worth noting that particularly uncommon
338 but essential operations (Reciprocal-Square-Root for example) are
339 *not* part of the 4-way parallel ALU but instead have a *single* ALU.
340 Under the proposed Vector (varible-width SIMD) implementors would
341 be free to do precisely that: i.e. free to choose *on a per operation
342 basis* whether and how much "Virtual Parallelism" to deploy.
343
344 It is absolutely critical to note that it is proposed that such choices MUST
345 be **entirely transparent** to the end-user and the compiler. Whilst
346 a Vector (varible-width SIMD) may not precisely match the width of the
347 parallelism within the implementation, the end-user **should not care**
348 and in this way the performance benefits are gained but the ISA remains
349 straightforward. All that happens at the end of an instruction run is: some
350 parallel units (if there are any) would remain offline, completely
351 transparently to the ISA, the program, and the compiler.
352
353 To make that clear: should an implementor choose a particularly wide
354 SIMD-style ALU, each parallel unit *must* have predication so that
355 the parallel SIMD ALU may emulate variable-length parallel operations.
356 Thus the "SIMD considered harmful" trap of having huge complexity and extra
357 instructions to deal with corner-cases is thus avoided, and implementors
358 get to choose precisely where to focus and target the benefits of their
359 implementation efforts, without "extra baggage".
360
361 In addition, implementors will be free to choose whether to provide an
362 absolute bare minimum level of compliance with the "API" (software-traps
363 when vectorisation is detected), all the way up to full supercomputing
364 level all-hardware parallelism. Options are covered in the Appendix.
365
366 # CSRs <a name="csrs"></a>
367
368 There are a number of CSRs needed, which are used at the instruction
369 decode phase to re-interpret RV opcodes (a practice that has
370 precedent in the setting of MISA to enable / disable extensions).
371
372 * Integer Register N is Vector of length M: r(N) -> r(N..N+M-1)
373 * Integer Register N is of implicit bitwidth M (M=default,8,16,32,64)
374 * Floating-point Register N is Vector of length M: r(N) -> r(N..N+M-1)
375 * Floating-point Register N is of implicit bitwidth M (M=default,8,16,32,64)
376 * Integer Register N is a Predication Register (note: a key-value store)
377 * Vector Length CSR (VSETVL, VGETVL)
378
379 Also (see Appendix, "Context Switch Example") it may turn out to be important
380 to have a separate (smaller) set of CSRs for M-Mode (and S-Mode) so that
381 Vectorised LOAD / STORE may be used to load and store multiple registers:
382 something that is missing from the Base RV ISA.
383
384 Notes:
385
386 * for the purposes of LOAD / STORE, Integer Registers which are
387 marked as a Vector will result in a Vector LOAD / STORE.
388 * Vector Lengths are *not* the same as vsetl but are an integral part
389 of vsetl.
390 * Actual vector length is *multipled* by how many blocks of length
391 "bitwidth" may fit into an XLEN-sized register file.
392 * Predication is a key-value store due to the implicit referencing,
393 as opposed to having the predicate register explicitly in the instruction.
394 * Whilst the predication CSR is a key-value store it *generates* easier-to-use
395 state information.
396 * TODO: assess whether the same technique could be applied to the other
397 Vector CSRs, particularly as pointed out in Section 17.8 (Draft RV 0.4,
398 V2.3-Draft ISA Reference) it becomes possible to greatly reduce state
399 needed for context-switches (empty slots need never be stored).
400
401 ## Predication CSR <a name="predication_csr_table"></a>
402
403 The Predication CSR is a key-value store indicating whether, if a given
404 destination register (integer or floating-point) is referred to in an
405 instruction, it is to be predicated. The first entry is whether predication
406 is enabled. The second entry is whether the register index refers to a
407 floating-point or an integer register. The third entry is the index
408 of that register which is to be predicated (if referred to). The fourth entry
409 is the integer register that is treated as a bitfield, indexable by the
410 vector element index.
411
412 | PrCSR | 7 | 6 | 5 | (4..0) | (4..0) |
413 | ----- | - | - | - | ------- | ------- |
414 | 0 | zero0 | inv0 | i/f | regidx | predidx |
415 | 1 | zero1 | inv1 | i/f | regidx | predidx |
416 | .. | zero.. | inv.. | i/f | regidx | predidx |
417 | 15 | zero15 | inv15 | i/f | regidx | predidx |
418
419 The Predication CSR Table is a key-value store, so implementation-wise
420 it will be faster to turn the table around (maintain topologically
421 equivalent state):
422
423 struct pred {
424 bool zero;
425 bool inv;
426 bool enabled;
427 int predidx; // redirection: actual int register to use
428 }
429
430 struct pred fp_pred_reg[32];
431 struct pred int_pred_reg[32];
432
433 for (i = 0; i < 16; i++)
434 tb = int_pred_reg if CSRpred[i].type == 0 else fp_pred_reg;
435 idx = CSRpred[i].regidx
436 tb[idx].zero = CSRpred[i].zero
437 tb[idx].inv = CSRpred[i].inv
438 tb[idx].predidx = CSRpred[i].predidx
439 tb[idx].enabled = true
440
441 So when an operation is to be predicated, it is the internal state that
442 is used. In Section 6.4.2 of Hwacha's Manual (EECS-2015-262) the following
443 pseudo-code for operations is given, where p is the explicit (direct)
444 reference to the predication register to be used:
445
446 for (int i=0; i<vl; ++i)
447 if ([!]preg[p][i])
448 (d ? vreg[rd][i] : sreg[rd]) =
449 iop(s1 ? vreg[rs1][i] : sreg[rs1],
450 s2 ? vreg[rs2][i] : sreg[rs2]); // for insts with 2 inputs
451
452 This instead becomes an *indirect* reference using the *internal* state
453 table generated from the Predication CSR key-value store, which iwws used
454 as follows.
455
456 if type(iop) == INT:
457 preg = int_pred_reg[rd]
458 else:
459 preg = fp_pred_reg[rd]
460
461 for (int i=0; i<vl; ++i)
462 predidx = preg[rd].predidx; // the indirection takes place HERE
463 if (!preg[rd].enabled)
464 predicate = ~0x0; // all parallel ops enabled
465 else:
466 predicate = intregfile[predidx]; // get actual reg contents HERE
467 if (preg[rd].inv) // invert if requested
468 predicate = ~predicate;
469 if (predicate && (1<<i))
470 (d ? regfile[rd+i] : regfile[rd]) =
471 iop(s1 ? regfile[rs1+i] : regfile[rs1],
472 s2 ? regfile[rs2+i] : regfile[rs2]); // for insts with 2 inputs
473 else if (preg[rd].zero)
474 // TODO: place zero in dest reg
475
476 Note:
477
478 * d, s1 and s2 are booleans indicating whether destination,
479 source1 and source2 are vector or scalar
480 * key-value CSR-redirection of rd, rs1 and rs2 have NOT been included
481 above, for clarity. rd, rs1 and rs2 all also must ALSO go through
482 register-level redirection (from the Register CSR table) if they are
483 vectors.
484
485 ## MAXVECTORDEPTH
486
487 MAXVECTORDEPTH is the same concept as MVL in RVV. However in Simple-V,
488 given that its primary (base, unextended) purpose is for 3D, Video and
489 other purposes (not requiring supercomputing capability), it makes sense
490 to limit MAXVECTORDEPTH to the regfile bitwidth (32 for RV32, 64 for RV64
491 and so on).
492
493 The reason for setting this limit is so that predication registers, when
494 marked as such, may fit into a single register as opposed to fanning out
495 over several registers. This keeps the implementation a little simpler.
496 Note also (as also described in the VSETVL section) that the *minimum*
497 for MAXVECTORDEPTH must be the total number of registers (15 for RV32E
498 and 31 for RV32 or RV64).
499
500 Note that RVV on top of Simple-V may choose to over-ride this decision.
501
502 ## Vector-length CSRs
503
504 Vector lengths are interpreted as meaning "any instruction referring to
505 r(N) generates implicit identical instructions referring to registers
506 r(N+M-1) where M is the Vector Length". Vector Lengths may be set to
507 use up to 16 registers in the register file.
508
509 One separate CSR table is needed for each of the integer and floating-point
510 register files:
511
512 | RegNo | (3..0) |
513 | ----- | ------ |
514 | r0 | vlen0 |
515 | r1 | vlen1 |
516 | .. | vlen.. |
517 | r31 | vlen31 |
518
519 An array of 32 4-bit CSRs is needed (4 bits per register) to indicate
520 whether a register was, if referred to in any standard instructions,
521 implicitly to be treated as a vector.
522
523 Note:
524
525 * A vector length of 1 indicates that it is to be treated as a scalar.
526 Bitwidths (on the same register) are interpreted and meaningful.
527 * A vector length of 0 indicates that the parallelism is to be switched
528 off for this register (treated as a scalar). When length is 0,
529 the bitwidth CSR for the register is *ignored*.
530
531 Internally, implementations may choose to use the non-zero vector length
532 to set a bit-field per register, to be used in the instruction decode phase.
533 In this way any standard (current or future) operation involving
534 register operands may detect if the operation is to be vector-vector,
535 vector-scalar or scalar-scalar (standard) simply through a single
536 bit test.
537
538 Note that when using the "vsetl rs1, rs2" instruction (caveat: when the
539 bitwidth is specifically not set) it becomes:
540
541 CSRvlength = MIN(MIN(CSRvectorlen[rs1], MAXVECTORDEPTH), rs2)
542
543 This is in contrast to RVV:
544
545 CSRvlength = MIN(MIN(rs1, MAXVECTORDEPTH), rs2)
546
547 ## Element (SIMD) bitwidth CSRs
548
549 Element bitwidths may be specified with a per-register CSR, and indicate
550 how a register (integer or floating-point) is to be subdivided.
551
552 | RegNo | (2..0) |
553 | ----- | ------ |
554 | r0 | vew0 |
555 | r1 | vew1 |
556 | .. | vew.. |
557 | r31 | vew31 |
558
559 vew may be one of the following (giving a table "bytestable", used below):
560
561 | vew | bitwidth |
562 | --- | -------- |
563 | 000 | default |
564 | 001 | 8 |
565 | 010 | 16 |
566 | 011 | 32 |
567 | 100 | 64 |
568 | 101 | 128 |
569 | 110 | rsvd |
570 | 111 | rsvd |
571
572 Extending this table (with extra bits) is covered in the section
573 "Implementing RVV on top of Simple-V".
574
575 Note that when using the "vsetl rs1, rs2" instruction, taking bitwidth
576 into account, it becomes:
577
578 vew = CSRbitwidth[rs1]
579 if (vew == 0)
580 bytesperreg = (XLEN/8) # or FLEN as appropriate
581 else:
582 bytesperreg = bytestable[vew] # 1 2 4 8 16
583 simdmult = (XLEN/8) / bytesperreg # or FLEN as appropriate
584 vlen = CSRvectorlen[rs1] * simdmult
585 CSRvlength = MIN(MIN(vlen, MAXVECTORDEPTH), rs2)
586
587 The reason for multiplying the vector length by the number of SIMD elements
588 (in each individual register) is so that each SIMD element may optionally be
589 predicated.
590
591 An example of how to subdivide the register file when bitwidth != default
592 is given in the section "Bitwidth Virtual Register Reordering".
593
594 # Instructions
595
596 By being a topological remap of RVV concepts, the following RVV instructions
597 remain exactly the same: VMPOP, VMFIRST, VEXTRACT, VINSERT, VMERGE, VSELECT,
598 VSLIDE, VCLASS and VPOPC. Two instructions, VCLIP and VCLIPI, do not
599 have RV Standard equivalents, so are left out of Simple-V.
600 All other instructions from RVV are topologically re-mapped and retain
601 their complete functionality, intact.
602
603 ## Instruction Format
604
605 The instruction format for Simple-V does not actually have *any* explicit
606 compare operations, *any* arithmetic, floating point or *any*
607 memory instructions.
608 Instead it *overloads* pre-existing branch operations into predicated
609 variants, and implicitly overloads arithmetic operations and LOAD/STORE
610 depending on CSR configurations for vector length, bitwidth and
611 predication. *This includes Compressed instructions* as well as any
612 future instructions and Custom Extensions.
613
614 * For analysis of RVV see [[v_comparative_analysis]] which begins to
615 outline topologically-equivalent mappings of instructions
616 * Also see Appendix "Retro-fitting Predication into branch-explicit ISA"
617 for format of Branch opcodes.
618
619 **TODO**: *analyse and decide whether the implicit nature of predication
620 as proposed is or is not a lot of hassle, and if explicit prefixes are
621 a better idea instead. Parallelism therefore effectively may end up
622 as always being 64-bit opcodes (32 for the prefix, 32 for the instruction)
623 with some opportunities for to use Compressed bringing it down to 48.
624 Also to consider is whether one or both of the last two remaining Compressed
625 instruction codes in Quadrant 1 could be used as a parallelism prefix,
626 bringing parallelised opcodes down to 32-bit (when combined with C)
627 and having the benefit of being explicit.*
628
629 ## VSETVL
630
631 NOTE TODO: 28may2018: VSETVL may need to be *really* different from RVV,
632 with the instruction format remaining the same.
633
634 VSETVL is slightly different from RVV in that the minimum vector length
635 is required to be at least the number of registers in the register file,
636 and no more than XLEN. This allows vector LOAD/STORE to be used to switch
637 the entire bank of registers using a single instruction (see Appendix,
638 "Context Switch Example"). The reason for limiting VSETVL to XLEN is
639 down to the fact that predication bits fit into a single register of length
640 XLEN bits.
641
642 The second minor change is that when VSETVL is requested to be stored
643 into x0, it is *ignored* silently.
644
645 Unlike RVV, implementors *must* provide pseudo-parallelism (using sequential
646 loops in hardware) if actual hardware-parallelism in the ALUs is not deployed.
647 A hybrid is also permitted (as used in Broadcom's VideoCore-IV) however this
648 must be *entirely* transparent to the ISA.
649
650 ### Under review / discussion: remove CSR vector length, use VSETVL <a name="vsetvl"></a>
651
652 So the issue is as follows:
653
654 * CSRs are used to set the "span" of a vector (how many of the standard
655 register file to contiguously use)
656 * VSETVL in RVV works as follows: it sets the vector length (copy of which
657 is placed in a dest register), and if the "required" length is longer
658 than the *available* length, the dest reg is set to the MIN of those
659 two.
660 * **HOWEVER**... in SV, *EVERY* vector register has its own separate
661 length and thus there is no way (at the time that VSETVL is called) to
662 know what to set the vector length *to*.
663 * At first glance it seems that it would be perfectly fine to just limit
664 the vector operation to the length specified in the destination
665 register's CSR, at the time that each instruction is issued...
666 except that that cannot possibly be guaranteed to match
667 with the value *already loaded into the target register from VSETVL*.
668
669 Therefore a different approach is needed.
670
671 Possible options include:
672
673 * Removing the CSR "Vector Length" and always using the value from
674 VSETVL. "VSETVL destreg, counterreg, #lenimmed" will set VL *and*
675 destreg equal to MIN(counterreg, lenimmed), with register-based
676 variant "VSETVL destreg, counterreg, lenreg" doing the same.
677 * Keeping the CSR "Vector Length" and having the lenreg version have
678 a "twist": "if lengreg is vectorised, read the length from the CSR"
679 * Other (TBD)
680
681 The first option (of the ones brainstormed so far) is a lot simpler.
682 It does however mean that the length set in VSETVL will apply across-the-board
683 to all src1, src2 and dest vectorised registers until it is otherwise changed
684 (by another VSETVL call). This is probably desirable behaviour.
685
686 ## Branch Instruction:
687
688 Branch operations use standard RV opcodes that are reinterpreted to be
689 "predicate variants" in the instance where either of the two src registers
690 have their corresponding CSRvectorlen[src] entry as non-zero. When this
691 reinterpretation is enabled the predicate target register rs3 is to be
692 treated as a bitfield (up to a maximum of XLEN bits corresponding to a
693 maximum of XLEN elements).
694
695 If either of src1 or src2 are scalars (CSRvectorlen[src] == 0) the comparison
696 goes ahead as vector-scalar or scalar-vector. Implementors should note that
697 this could require considerable multi-porting of the register file in order
698 to parallelise properly, so may have to involve the use of register cacheing
699 and transparent copying (see Multiple-Banked Register File Architectures
700 paper).
701
702 In instances where no vectorisation is detected on either src registers
703 the operation is treated as an absolutely standard scalar branch operation.
704
705 This is the overloaded table for Integer-base Branch operations. Opcode
706 (bits 6..0) is set in all cases to 1100011.
707
708 [[!table data="""
709 31 .. 25 |24 ... 20 | 19 15 | 14 12 | 11 .. 8 | 7 | 6 ... 0 |
710 imm[12,10:5]| rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
711 7 | 5 | 5 | 3 | 4 | 1 | 7 |
712 reserved | src2 | src1 | BPR | predicate rs3 || BRANCH |
713 reserved | src2 | src1 | 000 | predicate rs3 || BEQ |
714 reserved | src2 | src1 | 001 | predicate rs3 || BNE |
715 reserved | src2 | src1 | 010 | predicate rs3 || rsvd |
716 reserved | src2 | src1 | 011 | predicate rs3 || rsvd |
717 reserved | src2 | src1 | 100 | predicate rs3 || BLE |
718 reserved | src2 | src1 | 101 | predicate rs3 || BGE |
719 reserved | src2 | src1 | 110 | predicate rs3 || BLTU |
720 reserved | src2 | src1 | 111 | predicate rs3 || BGEU |
721 """]]
722
723 Note that just as with the standard (scalar, non-predicated) branch
724 operations, BLT, BGT, BLEU and BTGU may be synthesised by inverting
725 src1 and src2.
726
727 Below is the overloaded table for Floating-point Predication operations.
728 Interestingly no change is needed to the instruction format because
729 FP Compare already stores a 1 or a zero in its "rd" integer register
730 target, i.e. it's not actually a Branch at all: it's a compare.
731 The target needs to simply change to be a predication bitfield (done
732 implicitly).
733
734 As with
735 Standard RVF/D/Q, Opcode (bits 6..0) is set in all cases to 1010011.
736 Likewise Single-precision, fmt bits 26..25) is still set to 00.
737 Double-precision is still set to 01, whilst Quad-precision
738 appears not to have a definition in V2.3-Draft (but should be unaffected).
739
740 It is however noted that an entry "FNE" (the opposite of FEQ) is missing,
741 and whilst in ordinary branch code this is fine because the standard
742 RVF compare can always be followed up with an integer BEQ or a BNE (or
743 a compressed comparison to zero or non-zero), in predication terms that
744 becomes more of an impact as an explicit (scalar) instruction is needed
745 to invert the predicate bitmask. An additional encoding funct3=011 is
746 therefore proposed to cater for this.
747
748 [[!table data="""
749 31 .. 27| 26 .. 25 |24 ... 20 | 19 15 | 14 12 | 11 .. 7 | 6 ... 0 |
750 funct5 | fmt | rs2 | rs1 | funct3 | rd | opcode |
751 5 | 2 | 5 | 5 | 3 | 4 | 7 |
752 10100 | 00/01/11 | src2 | src1 | 010 | pred rs3 | FEQ |
753 10100 | 00/01/11 | src2 | src1 | **011**| pred rs3 | FNE |
754 10100 | 00/01/11 | src2 | src1 | 001 | pred rs3 | FLT |
755 10100 | 00/01/11 | src2 | src1 | 000 | pred rs3 | FLE |
756 """]]
757
758 Note (**TBD**): floating-point exceptions will need to be extended
759 to cater for multiple exceptions (and statuses of the same). The
760 usual approach is to have an array of status codes and bit-fields,
761 and one exception, rather than throw separate exceptions for each
762 Vector element.
763
764 In Hwacha EECS-2015-262 Section 6.7.2 the following pseudocode is given
765 for predicated compare operations of function "cmp":
766
767 for (int i=0; i<vl; ++i)
768 if ([!]preg[p][i])
769 preg[pd][i] = cmp(s1 ? vreg[rs1][i] : sreg[rs1],
770 s2 ? vreg[rs2][i] : sreg[rs2]);
771
772 With associated predication, vector-length adjustments and so on,
773 and temporarily ignoring bitwidth (which makes the comparisons more
774 complex), this becomes:
775
776 if I/F == INT: # integer type cmp
777 pred_enabled = int_pred_enabled # TODO: exception if not set!
778 preg = int_pred_reg[rd]
779 reg = int_regfile
780 else:
781 pred_enabled = fp_pred_enabled # TODO: exception if not set!
782 preg = fp_pred_reg[rd]
783 reg = fp_regfile
784
785 s1 = CSRvectorlen[src1] > 1;
786 s2 = CSRvectorlen[src2] > 1;
787 for (int i=0; i<vl; ++i)
788 preg[rs3][i] = cmp(s1 ? reg[src1+i] : reg[src1],
789 s2 ? reg[src2+i] : reg[src2]);
790
791 Notes:
792
793 * Predicated SIMD comparisons would break src1 and src2 further down
794 into bitwidth-sized chunks (see Appendix "Bitwidth Virtual Register
795 Reordering") setting Vector-Length times (number of SIMD elements) bits
796 in Predicate Register rs3 as opposed to just Vector-Length bits.
797 * Predicated Branches do not actually have an adjustment to the Program
798 Counter, so all of bits 25 through 30 in every case are not needed.
799 * There are plenty of reserved opcodes for which bits 25 through 30 could
800 be put to good use if there is a suitable use-case.
801 * FEQ and FNE (and BEQ and BNE) are included in order to save one
802 instruction having to invert the resultant predicate bitfield.
803 FLT and FLE may be inverted to FGT and FGE if needed by swapping
804 src1 and src2 (likewise the integer counterparts).
805
806 ## Compressed Branch Instruction:
807
808 [[!table data="""
809 15..13 | 12...10 | 9..7 | 6..5 | 4..2 | 1..0 | name |
810 funct3 | imm | rs10 | imm | | op | |
811 3 | 3 | 3 | 2 | 3 | 2 | |
812 C.BPR | pred rs3 | src1 | I/F B | src2 | C1 | |
813 110 | pred rs3 | src1 | I/F 0 | src2 | C1 | P.EQ |
814 111 | pred rs3 | src1 | I/F 0 | src2 | C1 | P.NE |
815 110 | pred rs3 | src1 | I/F 1 | src2 | C1 | P.LT |
816 111 | pred rs3 | src1 | I/F 1 | src2 | C1 | P.LE |
817 """]]
818
819 Notes:
820
821 * Bits 5 13 14 and 15 make up the comparator type
822 * Bit 6 indicates whether to use integer or floating-point comparisons
823 * In both floating-point and integer cases there are four predication
824 comparators: EQ/NEQ/LT/LE (with GT and GE being synthesised by inverting
825 src1 and src2).
826
827 ## LOAD / STORE Instructions <a name="load_store"></a>
828
829 For full analysis of topological adaptation of RVV LOAD/STORE
830 see [[v_comparative_analysis]]. All three types (LD, LD.S and LD.X)
831 may be implicitly overloaded into the one base RV LOAD instruction,
832 and likewise for STORE.
833
834 Revised LOAD:
835
836 [[!table data="""
837 31 | 30 | 29 25 | 24 20 | 19 15 | 14 12 | 11 7 | 6 0 |
838 imm[11:0] |||| rs1 | funct3 | rd | opcode |
839 1 | 1 | 5 | 5 | 5 | 3 | 5 | 7 |
840 ? | s | rs2 | imm[4:0] | base | width | dest | LOAD |
841 """]]
842
843 The exact same corresponding adaptation is also carried out on the single,
844 double and quad precision floating-point LOAD-FP and STORE-FP operations,
845 which fit the exact same instruction format. Thus all three types
846 (unit, stride and indexed) may be fitted into FLW, FLD and FLQ,
847 as well as FSW, FSD and FSQ.
848
849 Notes:
850
851 * LOAD remains functionally (topologically) identical to RVV LOAD
852 (for both integer and floating-point variants).
853 * Predication CSR-marking register is not explicitly shown in instruction, it's
854 implicit based on the CSR predicate state for the rd (destination) register
855 * rs2, the source, may *also be marked as a vector*, which implicitly
856 is taken to indicate "Indexed Load" (LD.X)
857 * Bit 30 indicates "element stride" or "constant-stride" (LD or LD.S)
858 * Bit 31 is reserved (ideas under consideration: auto-increment)
859 * **TODO**: include CSR SIMD bitwidth in the pseudo-code below.
860 * **TODO**: clarify where width maps to elsize
861
862 Pseudo-code (excludes CSR SIMD bitwidth for simplicity):
863
864 if (unit-strided) stride = elsize;
865 else stride = areg[as2]; // constant-strided
866
867 pred_enabled = int_pred_enabled
868 preg = int_pred_reg[rd]
869
870 for (int i=0; i<vl; ++i)
871 if (preg_enabled[rd] && [!]preg[i])
872 for (int j=0; j<seglen+1; j++)
873 {
874 if CSRvectorised[rs2])
875 offs = vreg[rs2][i]
876 else
877 offs = i*(seglen+1)*stride;
878 vreg[rd+j][i] = mem[sreg[base] + offs + j*stride];
879 }
880
881 Taking CSR (SIMD) bitwidth into account involves using the vector
882 length and register encoding according to the "Bitwidth Virtual Register
883 Reordering" scheme shown in the Appendix (see function "regoffs").
884
885 A similar instruction exists for STORE, with identical topological
886 translation of all features. **TODO**
887
888 ## Compressed LOAD / STORE Instructions
889
890 Compressed LOAD and STORE are of the same format, where bits 2-4 are
891 a src register instead of dest:
892
893 [[!table data="""
894 15 13 | 12 10 | 9 7 | 6 5 | 4 2 | 1 0 |
895 funct3 | imm | rs10 | imm | rd0 | op |
896 3 | 3 | 3 | 2 | 3 | 2 |
897 C.LW | offset[5:3] | base | offset[2|6] | dest | C0 |
898 """]]
899
900 Unfortunately it is not possible to fit the full functionality
901 of vectorised LOAD / STORE into C.LD / C.ST: the "X" variants (Indexed)
902 require another operand (rs2) in addition to the operand width
903 (which is also missing), offset, base, and src/dest.
904
905 However a close approximation may be achieved by taking the top bit
906 of the offset in each of the five types of LD (and ST), reducing the
907 offset to 4 bits and utilising the 5th bit to indicate whether "stride"
908 is to be enabled. In this way it is at least possible to introduce
909 that functionality.
910
911 (**TODO**: *assess whether the loss of one bit from offset is worth having
912 "stride" capability.*)
913
914 We also assume (including for the "stride" variant) that the "width"
915 parameter, which is missing, is derived and implicit, just as it is
916 with the standard Compressed LOAD/STORE instructions. For C.LW, C.LD
917 and C.LQ, the width is implicitly 4, 8 and 16 respectively, whilst for
918 C.FLW and C.FLD the width is implicitly 4 and 8 respectively.
919
920 Interestingly we note that the Vectorised Simple-V variant of
921 LOAD/STORE (Compressed and otherwise), due to it effectively using the
922 standard register file(s), is the direct functional equivalent of
923 standard load-multiple and store-multiple instructions found in other
924 processors.
925
926 In Section 12.3 riscv-isa manual V2.3-draft it is noted the comments on
927 page 76, "For virtual memory systems some data accesses could be resident
928 in physical memory and some not". The interesting question then arises:
929 how does RVV deal with the exact same scenario?
930 Expired U.S. Patent 5895501 (Filing Date Sep 3 1996) describes a method
931 of detecting early page / segmentation faults and adjusting the TLB
932 in advance, accordingly: other strategies are explored in the Appendix
933 Section "Virtual Memory Page Faults".
934
935 # Exceptions
936
937 > What does an ADD of two different-sized vectors do in simple-V?
938
939 * if the two source operands are not the same, throw an exception.
940 * if the destination operand is also a vector, and the source is longer
941 than the destination, throw an exception.
942
943 > And what about instructions like JALR? 
944 > What does jumping to a vector do?
945
946 * Throw an exception. Whether that actually results in spawning threads
947 as part of the trap-handling remains to be seen.
948
949 # Impementing V on top of Simple-V
950
951 With Simple-V converting the original RVV draft concept-for-concept
952 from explicit opcodes to implicit overloading of existing RV Standard
953 Extensions, certain features were (deliberately) excluded that need
954 to be added back in for RVV to reach its full potential. This is
955 made slightly complicated by the fact that RVV itself has two
956 levels: Base and reserved future functionality.
957
958 * Representation Encoding is entirely left out of Simple-V in favour of
959 implicitly taking the exact (explicit) meaning from RV Standard Extensions.
960 * VCLIP and VCLIPI do not have corresponding RV Standard Extension
961 opcodes (and are the only such operations).
962 * Extended Element bitwidths (1 through to 24576 bits) were left out
963 of Simple-V as, again, there is no corresponding RV Standard Extension
964 that covers anything even below 32-bit operands.
965 * Polymorphism was entirely left out of Simple-V due to the inherent
966 complexity of automatic type-conversion.
967 * Vector Register files were specifically left out of Simple-V in favour
968 of fitting on top of the integer and floating-point files. An
969 "RVV re-retro-fit" needs to be able to mark (implicitly marked)
970 registers as being actually in a separate *vector* register file.
971 * Fortunately in RVV (Draft 0.4, V2.3-Draft), the "base" vector
972 register file size is 5 bits (32 registers), whilst the "Extended"
973 variant of RVV specifies 8 bits (256 registers) and has yet to
974 be published.
975 * One big difference: Sections 17.12 and 17.17, there are only two possible
976 predication registers in RVV "Base". Through the "indirect" method,
977 Simple-V provides a key-value CSR table that allows (arbitrarily)
978 up to 16 (TBD) of either the floating-point or integer registers to
979 be marked as "predicated" (key), and if so, which integer register to
980 use as the predication mask (value).
981
982 **TODO**
983
984 # Implementing P (renamed to DSP) on top of Simple-V
985
986 * Implementors indicate chosen bitwidth support in Vector-bitwidth CSR
987 (caveat: anything not specified drops through to software-emulation / traps)
988 * TODO
989
990 # Appendix
991
992 ## V-Extension to Simple-V Comparative Analysis
993
994 This section has been moved to its own page [[v_comparative_analysis]]
995
996 ## P-Ext ISA
997
998 This section has been moved to its own page [[p_comparative_analysis]]
999
1000 ## Comparison of "Traditional" SIMD, Alt-RVP, Simple-V and RVV Proposals <a name="parallelism_comparisons"></a>
1001
1002 This section compares the various parallelism proposals as they stand,
1003 including traditional SIMD, in terms of features, ease of implementation,
1004 complexity, flexibility, and die area.
1005
1006 ### [[harmonised_rvv_rvp]]
1007
1008 This is an interesting proposal under development to retro-fit the AndesStar
1009 P-Ext into V-Ext.
1010
1011 ### [[alt_rvp]]
1012
1013 Primary benefit of Alt-RVP is the simplicity with which parallelism
1014 may be introduced (effective multiplication of regfiles and associated ALUs).
1015
1016 * plus: the simplicity of the lanes (combined with the regularity of
1017 allocating identical opcodes multiple independent registers) meaning
1018 that SRAM or 2R1W can be used for entire regfile (potentially).
1019 * minus: a more complex instruction set where the parallelism is much
1020 more explicitly directly specified in the instruction and
1021 * minus: if you *don't* have an explicit instruction (opcode) and you
1022 need one, the only place it can be added is... in the vector unit and
1023 * minus: opcode functions (and associated ALUs) duplicated in Alt-RVP are
1024 not useable or accessible in other Extensions.
1025 * plus-and-minus: Lanes may be utilised for high-speed context-switching
1026 but with the down-side that they're an all-or-nothing part of the Extension.
1027 No Alt-RVP: no fast register-bank switching.
1028 * plus: Lane-switching would mean that complex operations not suited to
1029 parallelisation can be carried out, followed by further parallel Lane-based
1030 work, without moving register contents down to memory (and back)
1031 * minus: Access to registers across multiple lanes is challenging. "Solution"
1032 is to drop data into memory and immediately back in again (like MMX).
1033
1034 ### Simple-V
1035
1036 Primary benefit of Simple-V is the OO abstraction of parallel principles
1037 from actual (internal) parallel hardware. It's an API in effect that's
1038 designed to be slotted in to an existing implementation (just after
1039 instruction decode) with minimum disruption and effort.
1040
1041 * minus: the complexity (if full parallelism is to be exploited)
1042 of having to use register renames, OoO, VLIW, register file cacheing,
1043 all of which has been done before but is a pain
1044 * plus: transparent re-use of existing opcodes as-is just indirectly
1045 saying "this register's now a vector" which
1046 * plus: means that future instructions also get to be inherently
1047 parallelised because there's no "separate vector opcodes"
1048 * plus: Compressed instructions may also be (indirectly) parallelised
1049 * minus: the indirect nature of Simple-V means that setup (setting
1050 a CSR register to indicate vector length, a separate one to indicate
1051 that it is a predicate register and so on) means a little more setup
1052 time than Alt-RVP or RVV's "direct and within the (longer) instruction"
1053 approach.
1054 * plus: shared register file meaning that, like Alt-RVP, complex
1055 operations not suited to parallelisation may be carried out interleaved
1056 between parallelised instructions *without* requiring data to be dropped
1057 down to memory and back (into a separate vectorised register engine).
1058 * plus-and-maybe-minus: re-use of integer and floating-point 32-wide register
1059 files means that huge parallel workloads would use up considerable
1060 chunks of the register file. However in the case of RV64 and 32-bit
1061 operations, that effectively means 64 slots are available for parallel
1062 operations.
1063 * plus: inherent parallelism (actual parallel ALUs) doesn't actually need to
1064 be added, yet the instruction opcodes remain unchanged (and still appear
1065 to be parallel). consistent "API" regardless of actual internal parallelism:
1066 even an in-order single-issue implementation with a single ALU would still
1067 appear to have parallel vectoristion.
1068 * hard-to-judge: if actual inherent underlying ALU parallelism is added it's
1069 hard to say if there would be pluses or minuses (on die area). At worse it
1070 would be "no worse" than existing register renaming, OoO, VLIW and register
1071 file cacheing schemes.
1072
1073 ### RVV (as it stands, Draft 0.4 Section 17, RISC-V ISA V2.3-Draft)
1074
1075 RVV is extremely well-designed and has some amazing features, including
1076 2D reorganisation of memory through LOAD/STORE "strides".
1077
1078 * plus: regular predictable workload means that implementations may
1079 streamline effects on L1/L2 Cache.
1080 * plus: regular and clear parallel workload also means that lanes
1081 (similar to Alt-RVP) may be used as an implementation detail,
1082 using either SRAM or 2R1W registers.
1083 * plus: separate engine with no impact on the rest of an implementation
1084 * minus: separate *complex* engine with no RTL (ALUs, Pipeline stages) reuse
1085 really feasible.
1086 * minus: no ISA abstraction or re-use either: additions to other Extensions
1087 do not gain parallelism, resulting in prolific duplication of functionality
1088 inside RVV *and out*.
1089 * minus: when operations require a different approach (scalar operations
1090 using the standard integer or FP regfile) an entire vector must be
1091 transferred out to memory, into standard regfiles, then back to memory,
1092 then back to the vector unit, this to occur potentially multiple times.
1093 * minus: will never fit into Compressed instruction space (as-is. May
1094 be able to do so if "indirect" features of Simple-V are partially adopted).
1095 * plus-and-slight-minus: extended variants may address up to 256
1096 vectorised registers (requires 48/64-bit opcodes to do it).
1097 * minus-and-partial-plus: separate engine plus complexity increases
1098 implementation time and die area, meaning that adoption is likely only
1099 to be in high-performance specialist supercomputing (where it will
1100 be absolutely superb).
1101
1102 ### Traditional SIMD
1103
1104 The only really good things about SIMD are how easy it is to implement and
1105 get good performance. Unfortunately that makes it quite seductive...
1106
1107 * plus: really straightforward, ALU basically does several packed operations
1108 at once. Parallelism is inherent at the ALU, making the addition of
1109 SIMD-style parallelism an easy decision that has zero significant impact
1110 on the rest of any given architectural design and layout.
1111 * plus (continuation): SIMD in simple in-order single-issue designs can
1112 therefore result in superb throughput, easily achieved even with a very
1113 simple execution model.
1114 * minus: ridiculously complex setup and corner-cases that disproportionately
1115 increase instruction count on what would otherwise be a "simple loop",
1116 should the number of elements in an array not happen to exactly match
1117 the SIMD group width.
1118 * minus: getting data usefully out of registers (if separate regfiles
1119 are used) means outputting to memory and back.
1120 * minus: quite a lot of supplementary instructions for bit-level manipulation
1121 are needed in order to efficiently extract (or prepare) SIMD operands.
1122 * minus: MASSIVE proliferation of ISA both in terms of opcodes in one
1123 dimension and parallelism (width): an at least O(N^2) and quite probably
1124 O(N^3) ISA proliferation that often results in several thousand
1125 separate instructions. all requiring separate and distinct corner-case
1126 algorithms!
1127 * minus: EVEN BIGGER proliferation of SIMD ISA if the functionality of
1128 8, 16, 32 or 64-bit reordering is built-in to the SIMD instruction.
1129 For example: add (high|low) 16-bits of r1 to (low|high) of r2 requires
1130 four separate and distinct instructions: one for (r1:low r2:high),
1131 one for (r1:high r2:low), one for (r1:high r2:high) and one for
1132 (r1:low r2:low) *per function*.
1133 * minus: EVEN BIGGER proliferation of SIMD ISA if there is a mismatch
1134 between operand and result bit-widths. In combination with high/low
1135 proliferation the situation is made even worse.
1136 * minor-saving-grace: some implementations *may* have predication masks
1137 that allow control over individual elements within the SIMD block.
1138
1139 ## Comparison *to* Traditional SIMD: Alt-RVP, Simple-V and RVV Proposals <a name="simd_comparison"></a>
1140
1141 This section compares the various parallelism proposals as they stand,
1142 *against* traditional SIMD as opposed to *alongside* SIMD. In other words,
1143 the question is asked "How can each of the proposals effectively implement
1144 (or replace) SIMD, and how effective would they be"?
1145
1146 ### [[alt_rvp]]
1147
1148 * Alt-RVP would not actually replace SIMD but would augment it: just as with
1149 a SIMD architecture where the ALU becomes responsible for the parallelism,
1150 Alt-RVP ALUs would likewise be so responsible... with *additional*
1151 (lane-based) parallelism on top.
1152 * Thus at least some of the downsides of SIMD ISA O(N^5) proliferation by
1153 at least one dimension are avoided (architectural upgrades introducing
1154 128-bit then 256-bit then 512-bit variants of the exact same 64-bit
1155 SIMD block)
1156 * Thus, unfortunately, Alt-RVP would suffer the same inherent proliferation
1157 of instructions as SIMD, albeit not quite as badly (due to Lanes).
1158 * In the same discussion for Alt-RVP, an additional proposal was made to
1159 be able to subdivide the bits of each register lane (columns) down into
1160 arbitrary bit-lengths (RGB 565 for example).
1161 * A recommendation was given instead to make the subdivisions down to 32-bit,
1162 16-bit or even 8-bit, effectively dividing the registerfile into
1163 Lane0(H), Lane0(L), Lane1(H) ... LaneN(L) or further. If inter-lane
1164 "swapping" instructions were then introduced, some of the disadvantages
1165 of SIMD could be mitigated.
1166
1167 ### RVV
1168
1169 * RVV is designed to replace SIMD with a better paradigm: arbitrary-length
1170 parallelism.
1171 * However whilst SIMD is usually designed for single-issue in-order simple
1172 DSPs with a focus on Multimedia (Audio, Video and Image processing),
1173 RVV's primary focus appears to be on Supercomputing: optimisation of
1174 mathematical operations that fit into the OpenCL space.
1175 * Adding functions (operations) that would normally fit (in parallel)
1176 into a SIMD instruction requires an equivalent to be added to the
1177 RVV Extension, if one does not exist. Given the specialist nature of
1178 some SIMD instructions (8-bit or 16-bit saturated or halving add),
1179 this possibility seems extremely unlikely to occur, even if the
1180 implementation overhead of RVV were acceptable (compared to
1181 normal SIMD/DSP-style single-issue in-order simplicity).
1182
1183 ### Simple-V
1184
1185 * Simple-V borrows hugely from RVV as it is intended to be easy to
1186 topologically transplant every single instruction from RVV (as
1187 designed) into Simple-V equivalents, with *zero loss of functionality
1188 or capability*.
1189 * With the "parallelism" abstracted out, a hypothetical SIMD-less "DSP"
1190 Extension which contained the basic primitives (non-parallelised
1191 8, 16 or 32-bit SIMD operations) inherently *become* parallel,
1192 automatically.
1193 * Additionally, standard operations (ADD, MUL) that would normally have
1194 to have special SIMD-parallel opcodes added need no longer have *any*
1195 of the length-dependent variants (2of 32-bit ADDs in a 64-bit register,
1196 4of 32-bit ADDs in a 128-bit register) because Simple-V takes the
1197 *standard* RV opcodes (present and future) and automatically parallelises
1198 them.
1199 * By inheriting the RVV feature of arbitrary vector-length, then just as
1200 with RVV the corner-cases and ISA proliferation of SIMD is avoided.
1201 * Whilst not entirely finalised, registers are expected to be
1202 capable of being subdivided down to an implementor-chosen bitwidth
1203 in the underlying hardware (r1 becomes r1[31..24] r1[23..16] r1[15..8]
1204 and r1[7..0], or just r1[31..16] r1[15..0]) where implementors can
1205 choose to have separate independent 8-bit ALUs or dual-SIMD 16-bit
1206 ALUs that perform twin 8-bit operations as they see fit, or anything
1207 else including no subdivisions at all.
1208 * Even though implementors have that choice even to have full 64-bit
1209 (with RV64) SIMD, they *must* provide predication that transparently
1210 switches off appropriate units on the last loop, thus neatly fitting
1211 underlying SIMD ALU implementations *into* the arbitrary vector-length
1212 RVV paradigm, keeping the uniform consistent API that is a key strategic
1213 feature of Simple-V.
1214 * With Simple-V fitting into the standard register files, certain classes
1215 of SIMD operations such as High/Low arithmetic (r1[31..16] + r2[15..0])
1216 can be done by applying *Parallelised* Bit-manipulation operations
1217 followed by parallelised *straight* versions of element-to-element
1218 arithmetic operations, even if the bit-manipulation operations require
1219 changing the bitwidth of the "vectors" to do so. Predication can
1220 be utilised to skip high words (or low words) in source or destination.
1221 * In essence, the key downside of SIMD - massive duplication of
1222 identical functions over time as an architecture evolves from 32-bit
1223 wide SIMD all the way up to 512-bit, is avoided with Simple-V, through
1224 vector-style parallelism being dropped on top of 8-bit or 16-bit
1225 operations, all the while keeping a consistent ISA-level "API" irrespective
1226 of implementor design choices (or indeed actual implementations).
1227
1228 ### Example Instruction translation: <a name="example_translation"></a>
1229
1230 Instructions "ADD r2 r4 r4" would result in three instructions being
1231 generated and placed into the FIFO:
1232
1233 * ADD r2 r4 r4
1234 * ADD r2 r5 r5
1235 * ADD r2 r6 r6
1236
1237 ## Example of vector / vector, vector / scalar, scalar / scalar => vector add
1238
1239 register CSRvectorlen[XLEN][4]; # not quite decided yet about this one...
1240 register CSRpredicate[XLEN][4]; # 2^4 is max vector length
1241 register CSRreg_is_vectorised[XLEN]; # just for fun support scalars as well
1242 register x[32][XLEN];
1243
1244 function op_add(rd, rs1, rs2, predr)
1245 {
1246    /* note that this is ADD, not PADD */
1247    int i, id, irs1, irs2;
1248    # checks CSRvectorlen[rd] == CSRvectorlen[rs] etc. ignored
1249    # also destination makes no sense as a scalar but what the hell...
1250    for (i = 0, id=0, irs1=0, irs2=0; i<CSRvectorlen[rd]; i++)
1251       if (CSRpredicate[predr][i]) # i *think* this is right...
1252          x[rd+id] <= x[rs1+irs1] + x[rs2+irs2];
1253       # now increment the idxs
1254       if (CSRreg_is_vectorised[rd]) # bitfield check rd, scalar/vector?
1255          id += 1;
1256       if (CSRreg_is_vectorised[rs1]) # bitfield check rs1, scalar/vector?
1257          irs1 += 1;
1258       if (CSRreg_is_vectorised[rs2]) # bitfield check rs2, scalar/vector?
1259          irs2 += 1;
1260 }
1261
1262 ## Retro-fitting Predication into branch-explicit ISA <a name="predication_retrofit"></a>
1263
1264 One of the goals of this parallelism proposal is to avoid instruction
1265 duplication. However, with the base ISA having been designed explictly
1266 to *avoid* condition-codes entirely, shoe-horning predication into it
1267 bcomes quite challenging.
1268
1269 However what if all branch instructions, if referencing a vectorised
1270 register, were instead given *completely new analogous meanings* that
1271 resulted in a parallel bit-wise predication register being set? This
1272 would have to be done for both C.BEQZ and C.BNEZ, as well as BEQ, BNE,
1273 BLT and BGE.
1274
1275 We might imagine that FEQ, FLT and FLT would also need to be converted,
1276 however these are effectively *already* in the precise form needed and
1277 do not need to be converted *at all*! The difference is that FEQ, FLT
1278 and FLE *specifically* write a 1 to an integer register if the condition
1279 holds, and 0 if not. All that needs to be done here is to say, "if
1280 the integer register is tagged with a bit that says it is a predication
1281 register, the **bit** in the integer register is set based on the
1282 current vector index" instead.
1283
1284 There is, in the standard Conditional Branch instruction, more than
1285 adequate space to interpret it in a similar fashion:
1286
1287 [[!table data="""
1288 31 |30 ..... 25 |24..20|19..15| 14...12| 11.....8 | 7 | 6....0 |
1289 imm[12] | imm[10:5] |rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
1290 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
1291 offset[12,10:5] || src2 | src1 | BEQ | offset[11,4:1] || BRANCH |
1292 """]]
1293
1294 This would become:
1295
1296 [[!table data="""
1297 31 | 30 .. 25 |24 ... 20 | 19 15 | 14 12 | 11 .. 8 | 7 | 6 ... 0 |
1298 imm[12] | imm[10:5]| rs2 | rs1 | funct3 | imm[4:1] | imm[11] | opcode |
1299 1 | 6 | 5 | 5 | 3 | 4 | 1 | 7 |
1300 reserved || src2 | src1 | BEQ | predicate rs3 || BRANCH |
1301 """]]
1302
1303 Similarly the C.BEQZ and C.BNEZ instruction format may be retro-fitted,
1304 with the interesting side-effect that there is space within what is presently
1305 the "immediate offset" field to reinterpret that to add in not only a bit
1306 field to distinguish between floating-point compare and integer compare,
1307 not only to add in a second source register, but also use some of the bits as
1308 a predication target as well.
1309
1310 [[!table data="""
1311 15..13 | 12 ....... 10 | 9...7 | 6 ......... 2 | 1 .. 0 |
1312 funct3 | imm | rs10 | imm | op |
1313 3 | 3 | 3 | 5 | 2 |
1314 C.BEQZ | offset[8,4:3] | src | offset[7:6,2:1,5] | C1 |
1315 """]]
1316
1317 Now uses the CS format:
1318
1319 [[!table data="""
1320 15..13 | 12 . 10 | 9 .. 7 | 6 .. 5 | 4..2 | 1 .. 0 |
1321 funct3 | imm | rs10 | imm | | op |
1322 3 | 3 | 3 | 2 | 3 | 2 |
1323 C.BEQZ | pred rs3 | src1 | I/F B | src2 | C1 |
1324 """]]
1325
1326 Bit 6 would be decoded as "operation refers to Integer or Float" including
1327 interpreting src1 and src2 accordingly as outlined in Table 12.2 of the
1328 "C" Standard, version 2.0,
1329 whilst Bit 5 would allow the operation to be extended, in combination with
1330 funct3 = 110 or 111: a combination of four distinct (predicated) comparison
1331 operators. In both floating-point and integer cases those could be
1332 EQ/NEQ/LT/LE (with GT and GE being synthesised by inverting src1 and src2).
1333
1334 ## Register reordering <a name="register_reordering"></a>
1335
1336 ### Register File
1337
1338 | Reg Num | Bits |
1339 | ------- | ---- |
1340 | r0 | (32..0) |
1341 | r1 | (32..0) |
1342 | r2 | (32..0) |
1343 | r3 | (32..0) |
1344 | r4 | (32..0) |
1345 | r5 | (32..0) |
1346 | r6 | (32..0) |
1347 | r7 | (32..0) |
1348 | .. | (32..0) |
1349 | r31| (32..0) |
1350
1351 ### Vectorised CSR
1352
1353 May not be an actual CSR: may be generated from Vector Length CSR:
1354 single-bit is less burdensome on instruction decode phase.
1355
1356 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
1357 | - | - | - | - | - | - | - | - |
1358 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |
1359
1360 ### Vector Length CSR
1361
1362 | Reg Num | (3..0) |
1363 | ------- | ---- |
1364 | r0 | 2 |
1365 | r1 | 0 |
1366 | r2 | 1 |
1367 | r3 | 1 |
1368 | r4 | 3 |
1369 | r5 | 0 |
1370 | r6 | 0 |
1371 | r7 | 1 |
1372
1373 ### Virtual Register Reordering
1374
1375 This example assumes the above Vector Length CSR table
1376
1377 | Reg Num | Bits (0) | Bits (1) | Bits (2) |
1378 | ------- | -------- | -------- | -------- |
1379 | r0 | (32..0) | (32..0) |
1380 | r2 | (32..0) |
1381 | r3 | (32..0) |
1382 | r4 | (32..0) | (32..0) | (32..0) |
1383 | r7 | (32..0) |
1384
1385 ### Bitwidth Virtual Register Reordering
1386
1387 This example goes a little further and illustrates the effect that a
1388 bitwidth CSR has been set on a register. Preconditions:
1389
1390 * RV32 assumed
1391 * CSRintbitwidth[2] = 010 # integer r2 is 16-bit
1392 * CSRintvlength[2] = 3 # integer r2 is a vector of length 3
1393 * vsetl rs1, 5 # set the vector length to 5
1394
1395 This is interpreted as follows:
1396
1397 * Given that the context is RV32, ELEN=32.
1398 * With ELEN=32 and bitwidth=16, the number of SIMD elements is 2
1399 * Therefore the actual vector length is up to *six* elements
1400 * However vsetl sets a length 5 therefore the last "element" is skipped
1401
1402 So when using an operation that uses r2 as a source (or destination)
1403 the operation is carried out as follows:
1404
1405 * 16-bit operation on r2(15..0) - vector element index 0
1406 * 16-bit operation on r2(31..16) - vector element index 1
1407 * 16-bit operation on r3(15..0) - vector element index 2
1408 * 16-bit operation on r3(31..16) - vector element index 3
1409 * 16-bit operation on r4(15..0) - vector element index 4
1410 * 16-bit operation on r4(31..16) **NOT** carried out due to length being 5
1411
1412 Predication has been left out of the above example for simplicity, however
1413 predication is ANDed with the latter stages (vsetl not equal to maximum
1414 capacity).
1415
1416 Note also that it is entirely an implementor's choice as to whether to have
1417 actual separate ALUs down to the minimum bitwidth, or whether to have something
1418 more akin to traditional SIMD (at any level of subdivision: 8-bit SIMD
1419 operations carried out 32-bits at a time is perfectly acceptable, as is
1420 8-bit SIMD operations carried out 16-bits at a time requiring two ALUs).
1421 Regardless of the internal parallelism choice, *predication must
1422 still be respected*, making Simple-V in effect the "consistent public API".
1423
1424 vew may be one of the following (giving a table "bytestable", used below):
1425
1426 | vew | bitwidth | bytestable |
1427 | --- | -------- | ---------- |
1428 | 000 | default | XLEN/8 |
1429 | 001 | 8 | 1 |
1430 | 010 | 16 | 2 |
1431 | 011 | 32 | 4 |
1432 | 100 | 64 | 8 |
1433 | 101 | 128 | 16 |
1434 | 110 | rsvd | rsvd |
1435 | 111 | rsvd | rsvd |
1436
1437 Pseudocode for vector length taking CSR SIMD-bitwidth into account:
1438
1439 vew = CSRbitwidth[rs1]
1440 if (vew == 0)
1441 bytesperreg = (XLEN/8) # or FLEN as appropriate
1442 else:
1443 bytesperreg = bytestable[vew] # 1 2 4 8 16
1444 simdmult = (XLEN/8) / bytesperreg # or FLEN as appropriate
1445 vlen = CSRvectorlen[rs1] * simdmult
1446
1447 To index an element in a register rnum where the vector element index is i:
1448
1449 function regoffs(rnum, i):
1450 regidx = floor(i / simdmult) # integer-div rounded down
1451 byteidx = i % simdmult # integer-remainder
1452 return rnum + regidx, # actual real register
1453 byteidx * 8, # low
1454 byteidx * 8 + (vew-1), # high
1455
1456 ### Insights
1457
1458 SIMD register file splitting still to consider. For RV64, benefits of doubling
1459 (quadrupling in the case of Half-Precision IEEE754 FP) the apparent
1460 size of the floating point register file to 64 (128 in the case of HP)
1461 seem pretty clear and worth the complexity.
1462
1463 64 virtual 32-bit F.P. registers and given that 32-bit FP operations are
1464 done on 64-bit registers it's not so conceptually difficult.  May even
1465 be achieved by *actually* splitting the regfile into 64 virtual 32-bit
1466 registers such that a 64-bit FP scalar operation is dropped into (r0.H
1467 r0.L) tuples.  Implementation therefore hidden through register renaming.
1468
1469 Implementations intending to introduce VLIW, OoO and parallelism
1470 (even without Simple-V) would then find that the instructions are
1471 generated quicker (or in a more compact fashion that is less heavy
1472 on caches). Interestingly we observe then that Simple-V is about
1473 "consolidation of instruction generation", where actual parallelism
1474 of underlying hardware is an implementor-choice that could just as
1475 equally be applied *without* Simple-V even being implemented.
1476
1477 ## Analysis of CSR decoding on latency <a name="csr_decoding_analysis"></a>
1478
1479 It could indeed have been logically deduced (or expected), that there
1480 would be additional decode latency in this proposal, because if
1481 overloading the opcodes to have different meanings, there is guaranteed
1482 to be some state, some-where, directly related to registers.
1483
1484 There are several cases:
1485
1486 * All operands vector-length=1 (scalars), all operands
1487 packed-bitwidth="default": instructions are passed through direct as if
1488 Simple-V did not exist.  Simple-V is, in effect, completely disabled.
1489 * At least one operand vector-length > 1, all operands
1490 packed-bitwidth="default": any parallel vector ALUs placed on "alert",
1491 virtual parallelism looping may be activated.
1492 * All operands vector-length=1 (scalars), at least one
1493 operand packed-bitwidth != default: degenerate case of SIMD,
1494 implementation-specific complexity here (packed decode before ALUs or
1495 *IN* ALUs)
1496 * At least one operand vector-length > 1, at least one operand
1497 packed-bitwidth != default: parallel vector ALUs (if any)
1498 placed on "alert", virtual parallelsim looping may be activated,
1499 implementation-specific SIMD complexity kicks in (packed decode before
1500 ALUs or *IN* ALUs).
1501
1502 Bear in mind that the proposal includes that the decision whether
1503 to parallelise in hardware or whether to virtual-parallelise (to
1504 dramatically simplify compilers and also not to run into the SIMD
1505 instruction proliferation nightmare) *or* a transprent combination
1506 of both, be done on a *per-operand basis*, so that implementors can
1507 specifically choose to create an application-optimised implementation
1508 that they believe (or know) will sell extremely well, without having
1509 "Extra Standards-Mandated Baggage" that would otherwise blow their area
1510 or power budget completely out the window.
1511
1512 Additionally, two possible CSR schemes have been proposed, in order to
1513 greatly reduce CSR space:
1514
1515 * per-register CSRs (vector-length and packed-bitwidth)
1516 * a smaller number of CSRs with the same information but with an *INDEX*
1517 specifying WHICH register in one of three regfiles (vector, fp, int)
1518 the length and bitwidth applies to.
1519
1520 (See "CSR vector-length and CSR SIMD packed-bitwidth" section for details)
1521
1522 In addition, LOAD/STORE has its own associated proposed CSRs that
1523 mirror the STRIDE (but not yet STRIDE-SEGMENT?) functionality of
1524 V (and Hwacha).
1525
1526 Also bear in mind that, for reasons of simplicity for implementors,
1527 I was coming round to the idea of permitting implementors to choose
1528 exactly which bitwidths they would like to support in hardware and which
1529 to allow to fall through to software-trap emulation.
1530
1531 So the question boils down to:
1532
1533 * whether either (or both) of those two CSR schemes have significant
1534 latency that could even potentially require an extra pipeline decode stage
1535 * whether there are implementations that can be thought of which do *not*
1536 introduce significant latency
1537 * whether it is possible to explicitly (through quite simply
1538 disabling Simple-V-Ext) or implicitly (detect the case all-vlens=1,
1539 all-simd-bitwidths=default) switch OFF any decoding, perhaps even to
1540 the extreme of skipping an entire pipeline stage (if one is needed)
1541 * whether packed bitwidth and associated regfile splitting is so complex
1542 that it should definitely, definitely be made mandatory that implementors
1543 move regfile splitting into the ALU, and what are the implications of that
1544 * whether even if that *is* made mandatory, is software-trapped
1545 "unsupported bitwidths" still desirable, on the basis that SIMD is such
1546 a complete nightmare that *even* having a software implementation is
1547 better, making Simple-V have more in common with a software API than
1548 anything else.
1549
1550 Whilst the above may seem to be severe minuses, there are some strong
1551 pluses:
1552
1553 * Significant reduction of V's opcode space: over 95%.
1554 * Smaller reduction of P's opcode space: around 10%.
1555 * The potential to use Compressed instructions in both Vector and SIMD
1556 due to the overloading of register meaning (implicit vectorisation,
1557 implicit packing)
1558 * Not only present but also future extensions automatically gain parallelism.
1559 * Already mentioned but worth emphasising: the simplification to compiler
1560 writers and assembly-level writers of having the same consistent ISA
1561 regardless of whether the internal level of parallelism (number of
1562 parallel ALUs) is only equal to one ("virtual" parallelism), or is
1563 greater than one, should not be underestimated.
1564
1565 ## Reducing Register Bank porting
1566
1567 This looks quite reasonable.
1568 <https://www.princeton.edu/~rblee/ELE572Papers/MultiBankRegFile_ISCA2000.pdf>
1569
1570 The main details are outlined on page 4.  They propose a 2-level register
1571 cache hierarchy, note that registers are typically only read once, that
1572 you never write back from upper to lower cache level but always go in a
1573 cycle lower -> upper -> ALU -> lower, and at the top of page 5 propose
1574 a scheme where you look ahead by only 2 instructions to determine which
1575 registers to bring into the cache.
1576
1577 The nice thing about a vector architecture is that you *know* that
1578 *even more* registers are going to be pulled in: Hwacha uses this fact
1579 to optimise L1/L2 cache-line usage (avoid thrashing), strangely enough
1580 by *introducing* deliberate latency into the execution phase.
1581
1582 ## Overflow registers in combination with predication
1583
1584 **TODO**: propose overflow registers be actually one of the integer regs
1585 (flowing to multiple regs).
1586
1587 **TODO**: propose "mask" (predication) registers likewise. combination with
1588 standard RV instructions and overflow registers extremely powerful, see
1589 Aspex ASP.
1590
1591 When integer overflow is stored in an easily-accessible bit (or another
1592 register), parallelisation turns this into a group of bits which can
1593 potentially be interacted with in predication, in interesting and powerful
1594 ways. For example, by taking the integer-overflow result as a predication
1595 field and shifting it by one, a predicated vectorised "add one" can emulate
1596 "carry" on arbitrary (unlimited) length addition.
1597
1598 However despite RVV having made room for floating-point exceptions, neither
1599 RVV nor base RV have taken integer-overflow (carry) into account, which
1600 makes proposing it quite challenging given that the relevant (Base) RV
1601 sections are frozen. Consequently it makes sense to forgo this feature.
1602
1603 ## Context Switch Example <a name="context_switch"></a>
1604
1605 An unusual side-effect of Simple-V mapping onto the standard register files
1606 is that LOAD-multiple and STORE-multiple are accidentally available, as long
1607 as it is acceptable that the register(s) to be loaded/stored are contiguous
1608 (per instruction). An additional accidental benefit is that Compressed LD/ST
1609 may also be used.
1610
1611 To illustrate how this works, here is some example code from FreeRTOS
1612 (GPLv2 licensed, portasm.S):
1613
1614 /* Macro for saving task context */
1615 .macro portSAVE_CONTEXT
1616 .global pxCurrentTCB
1617 /* make room in stack */
1618 addi sp, sp, -REGBYTES * 32
1619
1620 /* Save Context */
1621 STORE x1, 0x0(sp)
1622 STORE x2, 1 * REGBYTES(sp)
1623 STORE x3, 2 * REGBYTES(sp)
1624 ...
1625 ...
1626 STORE x30, 29 * REGBYTES(sp)
1627 STORE x31, 30 * REGBYTES(sp)
1628
1629 /* Store current stackpointer in task control block (TCB) */
1630 LOAD t0, pxCurrentTCB //pointer
1631 STORE sp, 0x0(t0)
1632 .endm
1633
1634 /* Saves current error program counter (EPC) as task program counter */
1635 .macro portSAVE_EPC
1636 csrr t0, mepc
1637 STORE t0, 31 * REGBYTES(sp)
1638 .endm
1639
1640 /* Saves current return adress (RA) as task program counter */
1641 .macro portSAVE_RA
1642 STORE ra, 31 * REGBYTES(sp)
1643 .endm
1644
1645 /* Macro for restoring task context */
1646 .macro portRESTORE_CONTEXT
1647
1648 .global pxCurrentTCB
1649 /* Load stack pointer from the current TCB */
1650 LOAD sp, pxCurrentTCB
1651 LOAD sp, 0x0(sp)
1652
1653 /* Load task program counter */
1654 LOAD t0, 31 * REGBYTES(sp)
1655 csrw mepc, t0
1656
1657 /* Run in machine mode */
1658 li t0, MSTATUS_PRV1
1659 csrs mstatus, t0
1660
1661 /* Restore registers,
1662 Skip global pointer because that does not change */
1663 LOAD x1, 0x0(sp)
1664 LOAD x4, 3 * REGBYTES(sp)
1665 LOAD x5, 4 * REGBYTES(sp)
1666 ...
1667 ...
1668 LOAD x30, 29 * REGBYTES(sp)
1669 LOAD x31, 30 * REGBYTES(sp)
1670
1671 addi sp, sp, REGBYTES * 32
1672 mret
1673 .endm
1674
1675 The important bits are the Load / Save context, which may be replaced
1676 with firstly setting up the Vectors and secondly using a *single* STORE
1677 (or LOAD) including using C.ST or C.LD, to indicate that the entire
1678 bank of registers is to be loaded/saved:
1679
1680 /* a few things are assumed here: (a) that when switching to
1681 M-Mode an entirely different set of CSRs is used from that
1682 which is used in U-Mode and (b) that the M-Mode x1 and x4
1683 vectors are also not used anywhere else in M-Mode, consequently
1684 only need to be set up just the once.
1685 */
1686 .macroVectorSetup
1687 MVECTORCSRx1 = 31, defaultlen
1688 MVECTORCSRx4 = 28, defaultlen
1689
1690 /* Save Context */
1691 SETVL x0, x0, 31 /* x0 ignored silently */
1692 STORE x1, 0x0(sp) // x1 marked as 31-long vector of default bitwidth
1693
1694 /* Restore registers,
1695 Skip global pointer because that does not change */
1696 LOAD x1, 0x0(sp)
1697 SETVL x0, x0, 28 /* x0 ignored silently */
1698 LOAD x4, 3 * REGBYTES(sp) // x4 marked as 28-long default bitwidth
1699
1700 Note that although it may just be a bug in portasm.S, x2 and x3 appear not
1701 to be being restored. If however this is a bug and they *do* need to be
1702 restored, then the SETVL call may be moved to *outside* the Save / Restore
1703 Context assembly code, into the macroVectorSetup, as long as vectors are
1704 never used anywhere else (i.e. VL is never altered by M-Mode).
1705
1706 In effect the entire bank of repeated LOAD / STORE instructions is replaced
1707 by one single (compressed if it is available) instruction.
1708
1709 ## Virtual Memory page-faults on LOAD/STORE
1710
1711
1712 ### Notes from conversations
1713
1714 > I was going through the C.LOAD / C.STORE section 12.3 of V2.3-Draft
1715 > riscv-isa-manual in order to work out how to re-map RVV onto the standard
1716 > ISA, and came across an interesting comments at the bottom of pages 75
1717 > and 76:
1718
1719 > " A common mechanism used in other ISAs to further reduce save/restore
1720 > code size is load- multiple and store-multiple instructions. "
1721
1722 > Fascinatingly, due to Simple-V proposing to use the *standard* register
1723 > file, both C.LOAD / C.STORE *and* LOAD / STORE would in effect be exactly
1724 > that: load-multiple and store-multiple instructions. Which brings us
1725 > on to this comment:
1726
1727 > "For virtual memory systems, some data accesses could be resident in
1728 > physical memory and
1729 > some could not, which requires a new restart mechanism for partially
1730 > executed instructions."
1731
1732 > Which then of course brings us to the interesting question: how does RVV
1733 > cope with the scenario when, particularly with LD.X (Indexed / indirect
1734 > loads), part-way through the loading a page fault occurs?
1735
1736 > Has this been noted or discussed before?
1737
1738 For applications-class platforms, the RVV exception model is
1739 element-precise (that is, if an exception occurs on element j of a
1740 vector instruction, elements 0..j-1 have completed execution and elements
1741 j+1..vl-1 have not executed).
1742
1743 Certain classes of embedded platforms where exceptions are always fatal
1744 might choose to offer resumable/swappable interrupts but not precise
1745 exceptions.
1746
1747
1748 > Is RVV designed in any way to be re-entrant?
1749
1750 Yes.
1751
1752
1753 > What would the implications be for instructions that were in a FIFO at
1754 > the time, in out-of-order and VLIW implementations, where partial decode
1755 > had taken place?
1756
1757 The usual bag of tricks for maintaining precise exceptions applies to
1758 vector machines as well. Register renaming makes the job easier, and
1759 it's relatively cheaper for vectors, since the control cost is amortized
1760 over longer registers.
1761
1762
1763 > Would it be reasonable at least to say *bypass* (and freeze) the
1764 > instruction FIFO (drop down to a single-issue execution model temporarily)
1765 > for the purposes of executing the instructions in the interrupt (whilst
1766 > setting up the VM page), then re-continue the instruction with all
1767 > state intact?
1768
1769 This approach has been done successfully, but it's desirable to be
1770 able to swap out the vector unit state to support context switches on
1771 exceptions that result in long-latency I/O.
1772
1773
1774 > Or would it be better to switch to an entirely separate secondary
1775 > hyperthread context?
1776
1777 > Does anyone have any ideas or know if there is any academic literature
1778 > on solutions to this problem?
1779
1780 The Vector VAX offered imprecise but restartable and swappable exceptions:
1781 http://mprc.pku.edu.cn/~liuxianhua/chn/corpus/Notes/articles/isca/1990/VAX%20vector%20architecture.pdf
1782
1783 Sec. 4.6 of Krste's dissertation assesses some of
1784 the tradeoffs and references a bunch of related work:
1785 http://people.eecs.berkeley.edu/~krste/thesis.pdf
1786
1787
1788 ----
1789
1790 Started reading section 4.6 of Krste's thesis, noted the "IEE85 F.P
1791 exceptions" and thought, "hmmm that could go into a CSR, must re-read
1792 the section on FP state CSRs in RVV 0.4-Draft again" then i suddenly
1793 thought, "ah ha! what if the memory exceptions were, instead of having
1794 an immediate exception thrown, were simply stored in a type of predication
1795 bit-field with a flag "error this element failed"?
1796
1797 Then, *after* the vector load (or store, or even operation) was
1798 performed, you could *then* raise an exception, at which point it
1799 would be possible (yes in software... I know....) to go "hmmm, these
1800 indexed operations didn't work, let's get them into memory by triggering
1801 page-loads", then *re-run the entire instruction* but this time with a
1802 "memory-predication CSR" that stops the already-performed operations
1803 (whether they be loads, stores or an arithmetic / FP operation) from
1804 being carried out a second time.
1805
1806 This theoretically could end up being done multiple times in an SMP
1807 environment, and also for LD.X there would be the remote outside annoying
1808 possibility that the indexed memory address could end up being modified.
1809
1810 The advantage would be that the order of execution need not be
1811 sequential, which potentially could have some big advantages.
1812 Am still thinking through the implications as any dependent operations
1813 (particularly ones already decoded and moved into the execution FIFO)
1814 would still be there (and stalled). hmmm.
1815
1816 ----
1817
1818 > > # assume internal parallelism of 8 and MAXVECTORLEN of 8
1819 > > VSETL r0, 8
1820 > > FADD x1, x2, x3
1821 >
1822 > > x3[0]: ok
1823 > > x3[1]: exception
1824 > > x3[2]: ok
1825 > > ...
1826 > > ...
1827 > > x3[7]: ok
1828 >
1829 > > what happens to result elements 2-7?  those may be *big* results
1830 > > (RV128)
1831 > > or in the RVV-Extended may be arbitrary bit-widths far greater.
1832 >
1833 >  (you replied:)
1834 >
1835 > Thrown away.
1836
1837 discussion then led to the question of OoO architectures
1838
1839 > The costs of the imprecise-exception model are greater than the benefit.
1840 > Software doesn't want to cope with it.  It's hard to debug.  You can't
1841 > migrate state between different microarchitectures--unless you force all
1842 > implementations to support the same imprecise-exception model, which would
1843 > greatly limit implementation flexibility.  (Less important, but still
1844 > relevant, is that the imprecise model increases the size of the context
1845 > structure, as the microarchitectural guts have to be spilled to memory.)
1846
1847 ## Zero/Non-zero Predication
1848
1849 >> >  it just occurred to me that there's another reason why the data
1850 >> > should be left instead of zeroed.  if the standard register file is
1851 >> > used, such that vectorised operations are translated to mean "please
1852 >> > insert multiple register-contiguous operations into the instruction
1853 >> > FIFO" and predication is used to *skip* some of those, then if the
1854 >> > next "vector" operation uses the (standard) registers that were masked
1855 >> > *out* of the previous operation it may proceed without blocking.
1856 >> >
1857 >> >  if however zeroing is made mandatory then that optimisation becomes
1858 >> > flat-out impossible to deploy.
1859 >> >
1860 >> >  whilst i haven't fully thought through the full implications, i
1861 >> > suspect RVV might also be able to benefit by being able to fit more
1862 >> > overlapping operations into the available SRAM by doing something
1863 >> > similar.
1864 >
1865 >
1866 > Luke, this is called density time masking. It doesn’t apply to only your
1867 > model with the “standard register file” is used. it applies to any
1868 > architecture that attempts to speed up by skipping computation and writeback
1869 > of masked elements.
1870 >
1871 > That said, the writing of zeros need not be explicit. It is possible to add
1872 > a “zero bit” per element that, when set, forces a zero to be read from the
1873 > vector (although the underlying storage may have old data). In this case,
1874 > there may be a way to implement DTM as well.
1875
1876
1877 ## Implementation detail for scalar-only op detection <a name="scalar_detection"></a>
1878
1879 Note 1: this idea is a pipeline-bypass concept, which may *or may not* be
1880 worthwhile.
1881
1882 Note 2: this is just one possible implementation. Another implementation
1883 may choose to treat *all* operations as vectorised (including treating
1884 scalars as vectors of length 1), choosing to add an extra pipeline stage
1885 dedicated to *all* instructions.
1886
1887 This section *specifically* covers the implementor's freedom to choose
1888 that they wish to minimise disruption to an existing design by detecting
1889 "scalar-only operations", bypassing the vectorisation phase (which may
1890 or may not require an additional pipeline stage)
1891
1892 [[scalardetect.png]]
1893
1894 >> For scalar ops an implementation may choose to compare 2-3 bits through an
1895 >> AND gate: are src & dest scalar? Yep, ok send straight to ALU  (or instr
1896 >> FIFO).
1897
1898 > Those bits cannot be known until after the registers are decoded from the
1899 > instruction and a lookup in the "vector length table" has completed.
1900 > Considering that one of the reasons RISC-V keeps registers in invariant
1901 > positions across all instructions is to simplify register decoding, I expect
1902 > that inserting an SRAM read would lengthen the critical path in most
1903 > implementations.
1904
1905 reply:
1906
1907 > briefly: the trick i mentioned about ANDing bits together to check if
1908 > an op was fully-scalar or not was to be read out of a single 32-bit
1909 > 3R1W SRAM (64-bit if FPU exists). the 32/64-bit SRAM contains 1 bit per
1910 > register indicating "is register vectorised yes no". 3R because you need
1911 > to check src1, src2 and dest simultaneously. the entries are *generated*
1912 > from the CSRs and are an optimisation that on slower embedded systems
1913 > would likely not be needed.
1914
1915 > is there anything unreasonable that anyone can foresee about that?
1916 > what are the down-sides?
1917
1918 ## C.MV predicated src, predicated dest
1919
1920 > Can this be usefully defined in such a way that it is
1921 > equivalent to vector gather-scatter on each source, followed by a
1922 > non-predicated vector-compare, followed by vector gather-scatter on the
1923 > result?
1924
1925 ## element width conversion: restrict or remove?
1926
1927 summary: don't restrict / remove. it's fine.
1928
1929 > > it has virtually no cost/overhead as long as you specify
1930 > > that inputs can only upconvert, and operations are always done at the
1931 > > largest size, and downconversion only happens at the output.
1932 >
1933 > okaaay.  so that's a really good piece of implementation advice.
1934 > algorithms do require data size conversion, so at some point you need to
1935 > introduce the feature of upconverting and downconverting.
1936 >
1937 > > for int and uint, this is dead simple and fits well within the RVV pipeline
1938 > > without any critical path, pipeline depth, or area implications.
1939
1940 <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/g3feFnAoKIM>
1941
1942 ## Implementation Paradigms <a name="implementation_paradigms"></a>
1943
1944 TODO: assess various implementation paradigms. These are listed roughly
1945 in order of simplicity (minimum compliance, for ultra-light-weight
1946 embedded systems or to reduce design complexity and the burden of
1947 design implementation and compliance, in non-critical areas), right the
1948 way to high-performance systems.
1949
1950 * Full (or partial) software-emulated (via traps): full support for CSRs
1951 required, however when a register is used that is detected (in hardware)
1952 to be vectorised, an exception is thrown.
1953 * Single-issue In-order, reduced pipeline depth (traditional SIMD / DSP)
1954 * In-order 5+ stage pipelines with instruction FIFOs and mild register-renaming
1955 * Out-of-order with instruction FIFOs and aggressive register-renaming
1956 * VLIW
1957
1958 Also to be taken into consideration:
1959
1960 * "Virtual" vectorisation: single-issue loop, no internal ALU parallelism
1961 * Comphrensive vectorisation: FIFOs and internal parallelism
1962 * Hybrid Parallelism
1963
1964 ### Full or partial software-emulation
1965
1966 The absolute, absolute minimal implementation is to provide the full
1967 set of CSRs and detection logic for when any of the source or destination
1968 registers are vectorised. On detection, a trap is thrown, whether it's
1969 a branch, LOAD, STORE, or an arithmetic operation.
1970
1971 Implementors are entirely free to choose whether to allow absolutely every
1972 single operation to be software-emulated, or whether to provide some emulation
1973 and some hardware support. In particular, for an RV32E implementation
1974 where fast context-switching is a requirement (see "Context Switch Example"),
1975 it makes no sense to allow Vectorised-LOAD/STORE to be implemented as an
1976 exception, as every context-switch will result in double-traps.
1977
1978 # TODO Research
1979
1980 > For great floating point DSPs check TI’s C3x, C4X, and C6xx DSPs
1981
1982 Idea: basic simple butterfly swap on a few element indices, primarily targetted
1983 at SIMD / DSP. High-byte low-byte swapping, high-word low-word swapping,
1984 perhaps allow reindexing of permutations up to 4 elements? 8? Reason:
1985 such operations are less costly than a full indexed-shuffle, which requires
1986 a separate instruction cycle.
1987
1988 Predication "all zeros" needs to be "leave alone". Detection of
1989 ADD r1, rs1, rs0 cases result in nop on predication index 0, whereas
1990 ADD r0, rs1, rs2 is actually a desirable copy from r2 into r0.
1991 Destruction of destination indices requires a copy of the entire vector
1992 in advance to avoid.
1993
1994 TBD: floating-point compare and other exception handling
1995
1996 # References
1997
1998 * SIMD considered harmful <https://www.sigarch.org/simd-instructions-considered-harmful/>
1999 * Link to first proposal <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/GuukrSjgBH8>
2000 * Recommendation by Jacob Bachmeyer to make zero-overhead loop an
2001 "implicit program-counter" <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/vYVi95gF2Mo/SHz6a4_lAgAJ>
2002 * Re-continuing P-Extension proposal <https://groups.google.com/a/groups.riscv.org/forum/#!msg/isa-dev/IkLkQn3HvXQ/SEMyC9IlAgAJ>
2003 * First Draft P-SIMD (DSP) proposal <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/vYVi95gF2Mo>
2004 * B-Extension discussion <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/zi_7B15kj6s>
2005 * Broadcom VideoCore-IV <https://docs.broadcom.com/docs/12358545>
2006 Figure 2 P17 and Section 3 on P16.
2007 * Hwacha <https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-262.html>
2008 * Hwacha <https://www2.eecs.berkeley.edu/Pubs/TechRpts/2015/EECS-2015-263.html>
2009 * Vector Workshop <http://riscv.org/wp-content/uploads/2015/06/riscv-vector-workshop-june2015.pdf>
2010 * Predication <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/XoP4BfYSLXA>
2011 * Branch Divergence <https://jbush001.github.io/2014/12/07/branch-divergence-in-parallel-kernels.html>
2012 * Life of Triangles (3D) <https://jbush001.github.io/2016/02/27/life-of-triangle.html>
2013 * Videocore-IV <https://github.com/hermanhermitage/videocoreiv/wiki/VideoCore-IV-3d-Graphics-Pipeline>
2014 * Discussion proposing CSRs that change ISA definition
2015 <https://groups.google.com/a/groups.riscv.org/forum/#!topic/isa-dev/InzQ1wr_3Ak>
2016 * Zero-overhead loops <https://pdfs.semanticscholar.org/dbaa/66985cc730d4b44d79f519e96ec9c43ab5b7.pdf>
2017 * Multi-ported VLIW Register File Implementation <https://ce-publications.et.tudelft.nl/publications/1517_multiple_contexts_in_a_multiported_vliw_register_file_impl.pdf>
2018 * Fast context save/restore proposal <https://groups.google.com/a/groups.riscv.org/d/msgid/isa-dev/57F823FA.6030701%40gmail.com>
2019 * Register File Bank Cacheing <https://www.princeton.edu/~rblee/ELE572Papers/MultiBankRegFile_ISCA2000.pdf>
2020 * Expired Patent on Vector Virtual Memory solutions
2021 <https://patentimages.storage.googleapis.com/fc/f6/e2/2cbee92fcd8743/US5895501.pdf>
2022 * Discussion on RVV "re-entrant" capabilities allowing operations to be
2023 restarted if an exception occurs (VM page-table miss)
2024 <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/IuNFitTw9fM/CCKBUlzsAAAJ>
2025 * Dot Product Vector <https://people.eecs.berkeley.edu/~biancolin/papers/arith17.pdf>
2026 * RVV slides 2017 <https://content.riscv.org/wp-content/uploads/2017/12/Wed-1330-RISCVRogerEspasaVEXT-v4.pdf>
2027 * Wavefront skipping using BRAMS <http://www.ece.ubc.ca/~lemieux/publications/severance-fpga2015.pdf>
2028 * Streaming Pipelines <http://www.ece.ubc.ca/~lemieux/publications/severance-fpga2014.pdf>
2029 * Barcelona SIMD Presentation <https://content.riscv.org/wp-content/uploads/2018/05/09.05.2018-9.15-9.30am-RISCV201805-Andes-proposed-P-extension.pdf>
2030 * <http://www.ece.ubc.ca/~lemieux/publications/severance-fpga2015.pdf>
2031 * Full Description (last page) of RVV instructions
2032 <https://inst.eecs.berkeley.edu/~cs152/sp18/handouts/lab4-1.0.pdf>