fc9815216e4a185a49893433af70b9c85dc795f4
[libreriscv.git] / openpower / sv / propagation.mdwn
1 # SV Context Propagation
2
3 [[sv/svp64]] context is 24 bits long, and Swizzle is 12. These are enormous and not sustainable as far as power consumption is concerned. Also, there is repetition of the same contexts to different instructions. An idea therefore is to add a level of indirection that allows these contexts to be applied to multiple instructions.
4
5 The basic principle is to have a suite of 40 indices in a shift register that indicate one of seven Contexts shall be applied to upcoming 32 bit v3.0B instructions. The Least Significant Index in the shift register is the one that is applied. One of those indices is 0b000 which indicates "no prefix applied".
6
7 A special instruction in an svp64 context takes a copy of the `RM[0..23]` bits, alongside a 21 bit suite that indicates up to 20 32 bit instructions will have that `RM` applied to them, as well as an index to associate with the `RM`. If there are already indices set within the shift register then the new entries are placed after the end of the highest-indexed one.
8
9 | 0.5|6.8 | 9.10|11.31| name |
10 | -- | --- | --- | --- | ------- |
11 | OP | MMM | | | ?-Form |
12 | OP | 000 | idx | imm | |
13
14 Two different types of contexts are available so far: svp64 RM and swizzle. Their format is as follows when stored in SPRs:
15
16 | 0...4 | 5..7 | 8........31 | name |
17 | ----- | ---- | ----------- | --------- |
18 | 00000 | 000 | `RM[0:23]` | svp64 RM |
19 | 00001 | mask | swiz1 swiz2 | swizzle |
20
21 There are 4 64 bit SPRs used for storing Context, and the data is stored as follows:
22
23 * 7 32 bit contexts are stored, each indexed from 0b001 to 0b111,
24 2 per 64 bit SPR and 1 in the 4th.
25 * Starting from bit 32 of the 4th SPR, in batches of 40 bits the Shift Registers are stored.
26
27 When each LSB is nonzero in any one of the seven Shift Registers the corresponding Contexts are looked up and merged (ORed) together. Contexts for different purposes however may not be mixed: an illegal instruction is raised if this occurs.
28
29 The reason for merging the contexts is so that different aspects may be applied. For example some `RM` contexts may indicate that predication is to be applied to an instruction whilst another context may contain the svp64 Mode. Combining the two allows the predication aspect to be merged and shared, making for better packing.
30
31 These changes occur on a precise schedule: compilers should not have difficulties statically allocating the Context Propagation, as long as certain conventions are followed, such as avoidance of allowing the context to propagate through branches used by more than one incoming path, and variable-length loops.
32
33 Loops, clearly, because if the setup of the shift registers does not precisely match the number of instructions, the meaning of those instructions will change as the bits in the shift registers run out! However if the loops are of fixed size and small enough (40 instructions maximum) then it is perfectly reasonable to insert repeated patterns into the shift registers, enough to cover all the loops. Ordinarily however the use of the Context Propagation instructions should be inside the loop and it is the responsibility of the compiler and assembler writer to ensure that the shift registers reach zero before any loop jump-back point.
34
35 ## Pseudocode:
36
37 The internal data structures need not precisely match the SPRs. Here are some internal datastructures:
38
39 bit sreg[7][40] # seven 40 bit shift registers
40 bit context[7][24] # seven contexts
41 int sregoffs[7] # indicator where last bits were placed
42
43 The Context Propagation instruction then inserts bits into the selected stream:
44
45 count = 20-count_trailing_zeros(imm)
46 context[idx] = new_context
47 start = sregoffs[idx]
48 sreg[idx][start:start+count] = imm[0:count]
49 sregoffs[idx] += count
50
51 With each shift register being maintained independently the new bits are dropped in where the last ones end. To get which one is to be applied is as follows:
52
53 apply_context
54 for i in range(7):
55 if sreg[i][0]:
56 apply_context |= context[i]
57 sreg[i] = sreg[i] >> 1
58 sregoffs[i] -= 1
59
60 Note that it is the LSB that says which context is to be applied.
61
62 # Swizzle Propagation
63
64 Swizzle Contexts follow the same schedule except that there is a mask for specifying to which registers the swizzle is to be applied, and there is only 17 bit suite to indicate the instructions to which the swizzle applies.
65
66 The bits in rhe svp64 `RM` field are interpreted as a pair of 12 bit swizzles
67
68 | 0.5| 6.8 | 9.11| 12.14 | 15.31 | name |
69 | -- | --- | --- | ----- | ----- | ------- |
70 | OP | MMM | | mask | | ?-Form |
71 | OP | 001 | idx | mask | imm | |
72
73 Note however that it is only svp64 encoded instructions
74 to which swizzle applies, so Swizzle Shift Registers only activate (and shift down) on svp64 instructions. *This includes Context-propagated ones!*
75
76 The mask is encoded as follows:
77
78 * bit 0 indicates that src1 is swizzled
79 * bit 1 indicates that src2 is swizzled
80 * bit 2 indicates that src3 is swizzled
81
82 When the compiler creates Swizzle Contexts it is important to recall that the Contexts will be ORed together. Thus one Context may specify a mask whilst the other Context specifies the swizzles: ORing different mask contexts with different swizzle Contexts allows more combinations than would normally fit into seven Contexts.
83
84 More than one bit is permitted to be set in the mask: swiz1 is applied to the first src operand specified by the mask, and swiz2 is applied to the second.