(no commit message)
[libreriscv.git] / openpower / sv / av_opcodes.mdwn
1 # Scalar OpenPOWER Audio and Video Opcodes
2
3 the fundamental principle of SV is a hardware for-loop. therefore the first (and in nearly 100% of cases only) place to put Vector operations is first and foremost in the *scalar* ISA. However only by analysing those scalar opcodes *in* a SV Vectorisation context does it become clear why they are needed and how they may be designed.
4
5 This page therefore has acompanying discussion at <https://bugs.libre-soc.org/show_bug.cgi?id=230> for evolution of suitable opcodes.
6
7 # Audio
8
9 The fundamental principle for these instructions is:
10
11 * identify the scalar primitive
12 * assume that longer runs of scalars will have Simple-V vectorisatin applied
13 * assume that "swizzle" may be applied at the (vec2 - SUBVL=2) Vector level,
14 (even if that involves a mv.swizxle which may be macro-op fused)
15 in order to perform the necessary HI/LO selection normally hard-coded
16 into SIMD ISAs.
17
18 Thus for example, where OpenPOWER VSX has vpkswss, this would be achieved in SV with simply:
19
20 * addition of a scalar ext/clamp instruction
21 * 1st op, swizzle-selection vec2 "select X only" from source to dest:
22 dest.X = extclamp(src.X)
23 * 2nd op, swizzle-select vec2 "select Y only" from source to dest
24 dest.Y = extclamp(src.Y)
25
26 Macro-op fusion may be used to detect that these two interleave cleanly, overlapping the vec2.X with vec2.Y to produce a single vec2.XY operation.
27
28 ## Scalar element operations
29
30 * clamping / saturation for signed and unsigned. best done similar to FP rounding modes, i.e. with an SPR.
31 * average-add. result = (src1 + src2 + 1) >> 1
32 * abs-diff: result = (src1 > src2) ? (src1-src2) : (src2-src1)
33 * signed min/max
34
35 # Video
36
37 TODO
38
39 * DCT <https://users.cs.cf.ac.uk/Dave.Marshall/Multimedia/node231.html>
40 * <https://www.nayuki.io/page/fast-discrete-cosine-transform-algorithms>
41
42 # VSX SIMD
43
44 Useful parts of VSX, and how they might map.
45
46 ## vpks[\*][\*]s (vec_pack*)
47
48 signed and unsigned, these are N-to-M (N=64/32/16, M=32/16/8) chop/clamp/sign/zero-extend operations. May be implemented by a clamped move to a smaller elwidth.
49
50 The other direction, vec_unpack widening ops, may need some way to tell whether to sign-extend or zero-extend.
51
52 *scalar extsw/b/h gives one set, mv gives another. src elwidth override and dest rlwidth override provide the pack/unpack*
53
54 ## vavgs\* (vec_avg)
55
56 signed and unsigned, 8/16/32: these are all of the form:
57
58 result = truncate((a + b + 1) >> 1))
59
60 *These do not exist in scalar ISA and would need to be added. Essentially it is a type of post-processing involving the CA bit so could be included in the existing scalar pipeline ALU*
61
62 ## vabsdu\* (vec_abs)
63
64 unsigned 8/16/32: these are all of the form:
65
66 result = (src1 > src2) ? truncate(src1-src2) :
67 truncate(src2-src1)
68
69 *These do not exist in the scalar ISA and would need to be added*
70
71 ## vmaxs\* / vmaxu\* (and min)
72
73 signed and unsigned, 8/16/32: these are all of the form:
74
75 result = (src1 > src2) ? src1 : src2 # max
76 result = (src1 < src2) ? src1 : src2 # min
77
78 *These do not exist in the scalar INTEGER ISA and would need to be added*
79
80 ## vmerge operations
81
82 Their main point was to work around the odd/even multiplies. SV swizzles and mv.x should handle all cases.
83
84 these take two src vectors of various widths and splice them together. the best technique to cover these is a simple straightforward predicated pair of mv operations, inverting the predicate in the second case, or, alternately, to use a pair of vec2 (SUBVL=2) swizzled operations.
85
86 in the swizzle case the first instruction would be destvec2.X = srcvec2.X and the second would swizzle-select Y: destvec2.Y = srcvec2.Y. macro-op fusion in both the predicated variant and the swizzle variant would interleave the two into the same SIMD backend ALUs (or macro-op fusion identifies the patterns)
87
88 with twin predication the elwidth can be overridden on both src and dest such that either straight scalar mv or extsw/b/h can be used to provide the combinations of coverage needed, with only 2 actual instructions (plus vector prefixing)
89
90 See [[sv/mv.vec]] and [[sv/mv.swizzle]]
91
92 ## Float estimates
93
94 vec_expte - float 2^x
95 vec_loge - float log2(x)
96 vec_re - float 1/x
97 vec_rsqrte - float 1/sqrt(x)
98
99 The spec says the max relative inaccuracy is 1/4096.
100
101 *In conjunction with the FPSPR "accuracy" bit These could be done by assigning meaning to the "sat mode" SVP64 bits in a FP context. 0b00 is IEEE754 FP, 0b01 is 2^12 accuracy for FP32. These can be applied to standard scalar FP ops*
102
103 ## vec_madd(s) - FMA, multiply-add, optionally saturated
104
105 a * b + c
106
107 *Standard scalar madd*
108
109 ## vec_msum(s) - horizontal gather multiply-add, optionally saturated
110
111 This should be separated to a horizontal multiply and a horizontal add. How a horizontal operation would work in SV is TBD, how wide is it, etc.
112
113 a.x + a.y + a.z ...
114 a.x * a.y * a.z ...
115
116 *This would realistically need to be done with a loop doing a mapreduce sequence. I looked very early on at doing this type of operation and concluded it would be better done with a series of halvings each time, as separate instructions: VL=16 then VL=8 then 4 then 2 and finally one scalar. i.e. not an actual part of SV al all. An OoO multi-issue engine would be more than capable of dealing with the Dependencies.*
117
118 That has the issue that's it's a massive PITA to code, plus it's slow. Plus there's the "access to non-4-offset regs stalls". Even if there's no ready operation, it should be made easier and faster than a manual mapreduce loop.
119
120 --
121
122 As a mid-solution, 4-element gathers were discussed. 4 elements would also make them useful for pixel packing, not just the general vector gather. This is because OR and ADD are the same operation when bits don't overlap.
123
124 gather-add: d = a.x + a.y + a.z + a.w
125 gather-mul: d = a.x * a.y * a.z * a.w
126
127 But can the SV loop increment the src reg # by 4? Hmm.
128
129 The idea then leads to the opposite operation, a 1-to-4 bit scatter instruction. Like gather, it could be implemented with a normal loop, but it's faster for certain uses.
130
131 bit-scatter dest, src, bits
132
133 bit-scatter rd, rs, 8 # assuming source and dest are 32-bit wide
134 rd = (rs >> 0 * 8) & (2^8 - 1)
135 rd+1 = (rs >> 1 * 8) & (2^8 - 1)
136 rd+2 = (rs >> 2 * 8) & (2^8 - 1)
137 rd+3 = (rs >> 3 * 8) & (2^8 - 1)
138
139 So at the start you have a RGBA packed pixel in one 32-bit register, at the end you have each channel separated into its own register, in the low bits, and ANDed so only the relevant bits are there.
140
141 ## vec_mul*
142
143 There should be both a same-width multiply and a widening multiply. Signed and unsigned versions. Optionally saturated.
144
145 u8 * u8 = u8
146 u8 * u8 = u16
147
148 For 8,16,32,64, resulting in 8,16,32,64,128.
149
150 *All of these can be done with SV elwidth overrides, as long as the dest is no greater than 128. SV specifically does not do 128 bit arithmetic. Instead, vec2.X mul-lo followed by vec2.Y mul-hi can be macro-op fused to get at the full 128 bit internal result. Specifying e.g. src elwidth=8 and dest elwidth=16 will give a widening multiply*
151
152 ## vec_rl - rotate left
153
154 (a << x) | (a >> (WIDTH - x))
155
156 *Standard scalar rlwinm*
157
158 ## vec_sel - bitwise select
159
160 (a ? b : c)
161
162 *This does not exist in the scalar ISA and would need to be added*
163
164 Interesting operation: Tim.Forsyth's video on Larrabee they added a logical ternary lookup table op, which can cover this and more. similar to crops 2-2 bit lookup.
165
166
167 ## vec_splat - scatter
168
169 Implemented using swizzle/predicate.
170
171 ## vec_perm - permute
172
173 Implemented using swizzle, mv.x.
174
175 ## vec_*c[tl]z, vec_popcnt - count leading/trailing zeroes, set bits
176
177 Bit counts.
178
179 ctz - count trailing zeroes
180 clz - count leading zeroes
181 popcnt - count set bits
182
183 *These all exist in the scalar ISA*