summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/opcodes.inc
blob: 75f09ebfcdf654c59022af10bc9341a7f3d4008e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

//     opcode name,                                         return type,    arg1 type,      arg2 type,      arg3 type,      arg4 type,      ...
OPCODE(Phi,                                                 Opaque,                                                                         )
OPCODE(Identity,                                            Opaque,         Opaque,                                                         )
OPCODE(Void,                                                Void,                                                                           )

// Control flow
OPCODE(Branch,                                              Void,           Label,                                                          )
OPCODE(BranchConditional,                                   Void,           U1,             Label,          Label,                          )
OPCODE(LoopMerge,                                           Void,           Label,          Label,                                          )
OPCODE(SelectionMerge,                                      Void,           Label,                                                          )
OPCODE(Return,                                              Void,                                                                           )

// Context getters/setters
OPCODE(GetRegister,                                         U32,            Reg,                                                            )
OPCODE(SetRegister,                                         Void,           Reg,            U32,                                            )
OPCODE(GetPred,                                             U1,             Pred,                                                           )
OPCODE(SetPred,                                             Void,           Pred,           U1,                                             )
OPCODE(GetGotoVariable,                                     U1,             U32,                                                            )
OPCODE(SetGotoVariable,                                     Void,           U32,            U1,                                             )
OPCODE(GetCbuf,                                             U32,            U32,            U32,                                            )
OPCODE(GetAttribute,                                        U32,            Attribute,                                                      )
OPCODE(SetAttribute,                                        Void,           Attribute,      U32,                                            )
OPCODE(GetAttributeIndexed,                                 U32,            U32,                                                            )
OPCODE(SetAttributeIndexed,                                 Void,           U32,            U32,                                            )
OPCODE(GetZFlag,                                            U1,             Void,                                                           )
OPCODE(GetSFlag,                                            U1,             Void,                                                           )
OPCODE(GetCFlag,                                            U1,             Void,                                                           )
OPCODE(GetOFlag,                                            U1,             Void,                                                           )
OPCODE(SetZFlag,                                            Void,           U1,                                                             )
OPCODE(SetSFlag,                                            Void,           U1,                                                             )
OPCODE(SetCFlag,                                            Void,           U1,                                                             )
OPCODE(SetOFlag,                                            Void,           U1,                                                             )
OPCODE(WorkgroupId,                                         U32x3,                                                                          )
OPCODE(LocalInvocationId,                                   U32x3,                                                                          )

// Undefined
OPCODE(UndefU1,                                             U1,                                                                             )
OPCODE(UndefU8,                                             U8,                                                                             )
OPCODE(UndefU16,                                            U16,                                                                            )
OPCODE(UndefU32,                                            U32,                                                                            )
OPCODE(UndefU64,                                            U64,                                                                            )

// Memory operations
OPCODE(LoadGlobalU8,                                        U32,            U64,                                                            )
OPCODE(LoadGlobalS8,                                        U32,            U64,                                                            )
OPCODE(LoadGlobalU16,                                       U32,            U64,                                                            )
OPCODE(LoadGlobalS16,                                       U32,            U64,                                                            )
OPCODE(LoadGlobal32,                                        U32,            U64,                                                            )
OPCODE(LoadGlobal64,                                        U32x2,          U64,                                                            )
OPCODE(LoadGlobal128,                                       U32x4,          U64,                                                            )
OPCODE(WriteGlobalU8,                                       Void,           U64,            U32,                                            )
OPCODE(WriteGlobalS8,                                       Void,           U64,            U32,                                            )
OPCODE(WriteGlobalU16,                                      Void,           U64,            U32,                                            )
OPCODE(WriteGlobalS16,                                      Void,           U64,            U32,                                            )
OPCODE(WriteGlobal32,                                       Void,           U64,            U32,                                            )
OPCODE(WriteGlobal64,                                       Void,           U64,            U32x2,                                          )
OPCODE(WriteGlobal128,                                      Void,           U64,            U32x4,                                          )

// Storage buffer operations
OPCODE(LoadStorageU8,                                       U32,            U32,            U32,                                            )
OPCODE(LoadStorageS8,                                       U32,            U32,            U32,                                            )
OPCODE(LoadStorageU16,                                      U32,            U32,            U32,                                            )
OPCODE(LoadStorageS16,                                      U32,            U32,            U32,                                            )
OPCODE(LoadStorage32,                                       U32,            U32,            U32,                                            )
OPCODE(LoadStorage64,                                       U32x2,          U32,            U32,                                            )
OPCODE(LoadStorage128,                                      U32x4,          U32,            U32,                                            )
OPCODE(WriteStorageU8,                                      Void,           U32,            U32,            U32,                            )
OPCODE(WriteStorageS8,                                      Void,           U32,            U32,            U32,                            )
OPCODE(WriteStorageU16,                                     Void,           U32,            U32,            U32,                            )
OPCODE(WriteStorageS16,                                     Void,           U32,            U32,            U32,                            )
OPCODE(WriteStorage32,                                      Void,           U32,            U32,            U32,                            )
OPCODE(WriteStorage64,                                      Void,           U32,            U32,            U32x2,                          )
OPCODE(WriteStorage128,                                     Void,           U32,            U32,            U32x4,                          )

// Vector utility
OPCODE(CompositeConstructU32x2,                             U32x2,          U32,            U32,                                            )
OPCODE(CompositeConstructU32x3,                             U32x3,          U32,            U32,            U32,                            )
OPCODE(CompositeConstructU32x4,                             U32x4,          U32,            U32,            U32,            U32,            )
OPCODE(CompositeExtractU32x2,                               U32,            U32x2,          U32,                                            )
OPCODE(CompositeExtractU32x3,                               U32,            U32x3,          U32,                                            )
OPCODE(CompositeExtractU32x4,                               U32,            U32x4,          U32,                                            )
OPCODE(CompositeInsertU32x2,                                U32x2,          U32x2,          U32,            U32,                            )
OPCODE(CompositeInsertU32x3,                                U32x3,          U32x3,          U32,            U32,                            )
OPCODE(CompositeInsertU32x4,                                U32x4,          U32x4,          U32,            U32,                            )
OPCODE(CompositeConstructF16x2,                             F16x2,          F16,            F16,                                            )
OPCODE(CompositeConstructF16x3,                             F16x3,          F16,            F16,            F16,                            )
OPCODE(CompositeConstructF16x4,                             F16x4,          F16,            F16,            F16,            F16,            )
OPCODE(CompositeExtractF16x2,                               F16,            F16x2,          U32,                                            )
OPCODE(CompositeExtractF16x3,                               F16,            F16x3,          U32,                                            )
OPCODE(CompositeExtractF16x4,                               F16,            F16x4,          U32,                                            )
OPCODE(CompositeInsertF16x2,                                F16x2,          F16x2,          F16,            U32,                            )
OPCODE(CompositeInsertF16x3,                                F16x3,          F16x3,          F16,            U32,                            )
OPCODE(CompositeInsertF16x4,                                F16x4,          F16x4,          F16,            U32,                            )
OPCODE(CompositeConstructF32x2,                             F32x2,          F32,            F32,                                            )
OPCODE(CompositeConstructF32x3,                             F32x3,          F32,            F32,            F32,                            )
OPCODE(CompositeConstructF32x4,                             F32x4,          F32,            F32,            F32,            F32,            )
OPCODE(CompositeExtractF32x2,                               F32,            F32x2,          U32,                                            )
OPCODE(CompositeExtractF32x3,                               F32,            F32x3,          U32,                                            )
OPCODE(CompositeExtractF32x4,                               F32,            F32x4,          U32,                                            )
OPCODE(CompositeInsertF32x2,                                F32x2,          F32x2,          F32,            U32,                            )
OPCODE(CompositeInsertF32x3,                                F32x3,          F32x3,          F32,            U32,                            )
OPCODE(CompositeInsertF32x4,                                F32x4,          F32x4,          F32,            U32,                            )
OPCODE(CompositeConstructF64x2,                             F64x2,          F64,            F64,                                            )
OPCODE(CompositeConstructF64x3,                             F64x3,          F64,            F64,            F64,                            )
OPCODE(CompositeConstructF64x4,                             F64x4,          F64,            F64,            F64,            F64,            )
OPCODE(CompositeExtractF64x2,                               F64,            F64x2,          U32,                                            )
OPCODE(CompositeExtractF64x3,                               F64,            F64x3,          U32,                                            )
OPCODE(CompositeExtractF64x4,                               F64,            F64x4,          U32,                                            )
OPCODE(CompositeInsertF64x2,                                F64x2,          F64x2,          F64,            U32,                            )
OPCODE(CompositeInsertF64x3,                                F64x3,          F64x3,          F64,            U32,                            )
OPCODE(CompositeInsertF64x4,                                F64x4,          F64x4,          F64,            U32,                            )

// Select operations
OPCODE(SelectU8,                                            U8,             U1,             U8,             U8,                             )
OPCODE(SelectU16,                                           U16,            U1,             U16,            U16,                            )
OPCODE(SelectU32,                                           U32,            U1,             U32,            U32,                            )
OPCODE(SelectU64,                                           U64,            U1,             U64,            U64,                            )
OPCODE(SelectF16,                                           F16,            U1,             F16,            F16,                            )
OPCODE(SelectF32,                                           F32,            U1,             F32,            F32,                            )

// Bitwise conversions
OPCODE(BitCastU16F16,                                       U16,            F16,                                                            )
OPCODE(BitCastU32F32,                                       U32,            F32,                                                            )
OPCODE(BitCastU64F64,                                       U64,            F64,                                                            )
OPCODE(BitCastF16U16,                                       F16,            U16,                                                            )
OPCODE(BitCastF32U32,                                       F32,            U32,                                                            )
OPCODE(BitCastF64U64,                                       F64,            U64,                                                            )
OPCODE(PackUint2x32,                                        U64,            U32x2,                                                          )
OPCODE(UnpackUint2x32,                                      U32x2,          U64,                                                            )
OPCODE(PackFloat2x16,                                       U32,            F16x2,                                                          )
OPCODE(UnpackFloat2x16,                                     F16x2,          U32,                                                            )
OPCODE(PackHalf2x16,                                        U32,            F32x2,                                                          )
OPCODE(UnpackHalf2x16,                                      F32x2,          U32,                                                            )
OPCODE(PackDouble2x32,                                      F64,            U32x2,                                                          )
OPCODE(UnpackDouble2x32,                                    U32x2,          F64,                                                            )

// Pseudo-operation, handled specially at final emit
OPCODE(GetZeroFromOp,                                       U1,             Opaque,                                                         )
OPCODE(GetSignFromOp,                                       U1,             Opaque,                                                         )
OPCODE(GetCarryFromOp,                                      U1,             Opaque,                                                         )
OPCODE(GetOverflowFromOp,                                   U1,             Opaque,                                                         )

// Floating-point operations
OPCODE(FPAbs16,                                             F16,            F16,                                                            )
OPCODE(FPAbs32,                                             F32,            F32,                                                            )
OPCODE(FPAbs64,                                             F64,            F64,                                                            )
OPCODE(FPAdd16,                                             F16,            F16,            F16,                                            )
OPCODE(FPAdd32,                                             F32,            F32,            F32,                                            )
OPCODE(FPAdd64,                                             F64,            F64,            F64,                                            )
OPCODE(FPFma16,                                             F16,            F16,            F16,            F16,                            )
OPCODE(FPFma32,                                             F32,            F32,            F32,            F32,                            )
OPCODE(FPFma64,                                             F64,            F64,            F64,            F64,                            )
OPCODE(FPMax32,                                             F32,            F32,            F32,                                            )
OPCODE(FPMax64,                                             F64,            F64,            F64,                                            )
OPCODE(FPMin32,                                             F32,            F32,            F32,                                            )
OPCODE(FPMin64,                                             F64,            F64,            F64,                                            )
OPCODE(FPMul16,                                             F16,            F16,            F16,                                            )
OPCODE(FPMul32,                                             F32,            F32,            F32,                                            )
OPCODE(FPMul64,                                             F64,            F64,            F64,                                            )
OPCODE(FPNeg16,                                             F16,            F16,                                                            )
OPCODE(FPNeg32,                                             F32,            F32,                                                            )
OPCODE(FPNeg64,                                             F64,            F64,                                                            )
OPCODE(FPRecip32,                                           F32,            F32,                                                            )
OPCODE(FPRecip64,                                           F64,            F64,                                                            )
OPCODE(FPRecipSqrt32,                                       F32,            F32,                                                            )
OPCODE(FPRecipSqrt64,                                       F64,            F64,                                                            )
OPCODE(FPSqrt,                                              F32,            F32,                                                            )
OPCODE(FPSin,                                               F32,            F32,                                                            )
OPCODE(FPExp2,                                              F32,            F32,                                                            )
OPCODE(FPCos,                                               F32,            F32,                                                            )
OPCODE(FPLog2,                                              F32,            F32,                                                            )
OPCODE(FPSaturate16,                                        F16,            F16,                                                            )
OPCODE(FPSaturate32,                                        F32,            F32,                                                            )
OPCODE(FPSaturate64,                                        F64,            F64,                                                            )
OPCODE(FPRoundEven16,                                       F16,            F16,                                                            )
OPCODE(FPRoundEven32,                                       F32,            F32,                                                            )
OPCODE(FPRoundEven64,                                       F64,            F64,                                                            )
OPCODE(FPFloor16,                                           F16,            F16,                                                            )
OPCODE(FPFloor32,                                           F32,            F32,                                                            )
OPCODE(FPFloor64,                                           F64,            F64,                                                            )
OPCODE(FPCeil16,                                            F16,            F16,                                                            )
OPCODE(FPCeil32,                                            F32,            F32,                                                            )
OPCODE(FPCeil64,                                            F64,            F64,                                                            )
OPCODE(FPTrunc16,                                           F16,            F16,                                                            )
OPCODE(FPTrunc32,                                           F32,            F32,                                                            )
OPCODE(FPTrunc64,                                           F64,            F64,                                                            )

OPCODE(FPOrdEqual16,                                        U1,             F16,            F16,                                            )
OPCODE(FPOrdEqual32,                                        U1,             F32,            F32,                                            )
OPCODE(FPOrdEqual64,                                        U1,             F64,            F64,                                            )
OPCODE(FPUnordEqual16,                                      U1,             F16,            F16,                                            )
OPCODE(FPUnordEqual32,                                      U1,             F32,            F32,                                            )
OPCODE(FPUnordEqual64,                                      U1,             F64,            F64,                                            )
OPCODE(FPOrdNotEqual16,                                     U1,             F16,            F16,                                            )
OPCODE(FPOrdNotEqual32,                                     U1,             F32,            F32,                                            )
OPCODE(FPOrdNotEqual64,                                     U1,             F64,            F64,                                            )
OPCODE(FPUnordNotEqual16,                                   U1,             F16,            F16,                                            )
OPCODE(FPUnordNotEqual32,                                   U1,             F32,            F32,                                            )
OPCODE(FPUnordNotEqual64,                                   U1,             F64,            F64,                                            )
OPCODE(FPOrdLessThan16,                                     U1,             F16,            F16,                                            )
OPCODE(FPOrdLessThan32,                                     U1,             F32,            F32,                                            )
OPCODE(FPOrdLessThan64,                                     U1,             F64,            F64,                                            )
OPCODE(FPUnordLessThan16,                                   U1,             F16,            F16,                                            )
OPCODE(FPUnordLessThan32,                                   U1,             F32,            F32,                                            )
OPCODE(FPUnordLessThan64,                                   U1,             F64,            F64,                                            )
OPCODE(FPOrdGreaterThan16,                                  U1,             F16,            F16,                                            )
OPCODE(FPOrdGreaterThan32,                                  U1,             F32,            F32,                                            )
OPCODE(FPOrdGreaterThan64,                                  U1,             F64,            F64,                                            )
OPCODE(FPUnordGreaterThan16,                                U1,             F16,            F16,                                            )
OPCODE(FPUnordGreaterThan32,                                U1,             F32,            F32,                                            )
OPCODE(FPUnordGreaterThan64,                                U1,             F64,            F64,                                            )
OPCODE(FPOrdLessThanEqual16,                                U1,             F16,            F16,                                            )
OPCODE(FPOrdLessThanEqual32,                                U1,             F32,            F32,                                            )
OPCODE(FPOrdLessThanEqual64,                                U1,             F64,            F64,                                            )
OPCODE(FPUnordLessThanEqual16,                              U1,             F16,            F16,                                            )
OPCODE(FPUnordLessThanEqual32,                              U1,             F32,            F32,                                            )
OPCODE(FPUnordLessThanEqual64,                              U1,             F64,            F64,                                            )
OPCODE(FPOrdGreaterThanEqual16,                             U1,             F16,            F16,                                            )
OPCODE(FPOrdGreaterThanEqual32,                             U1,             F32,            F32,                                            )
OPCODE(FPOrdGreaterThanEqual64,                             U1,             F64,            F64,                                            )
OPCODE(FPUnordGreaterThanEqual16,                           U1,             F16,            F16,                                            )
OPCODE(FPUnordGreaterThanEqual32,                           U1,             F32,            F32,                                            )
OPCODE(FPUnordGreaterThanEqual64,                           U1,             F64,            F64,                                            )

// Integer operations
OPCODE(IAdd32,                                              U32,            U32,            U32,                                            )
OPCODE(IAdd64,                                              U64,            U64,            U64,                                            )
OPCODE(ISub32,                                              U32,            U32,            U32,                                            )
OPCODE(ISub64,                                              U64,            U64,            U64,                                            )
OPCODE(IMul32,                                              U32,            U32,            U32,                                            )
OPCODE(INeg32,                                              U32,            U32,                                                            )
OPCODE(INeg64,                                              U64,            U64,                                                            )
OPCODE(IAbs32,                                              U32,            U32,                                                            )
OPCODE(ShiftLeftLogical32,                                  U32,            U32,            U32,                                            )
OPCODE(ShiftLeftLogical64,                                  U64,            U64,            U32,                                            )
OPCODE(ShiftRightLogical32,                                 U32,            U32,            U32,                                            )
OPCODE(ShiftRightLogical64,                                 U64,            U64,            U32,                                            )
OPCODE(ShiftRightArithmetic32,                              U32,            U32,            U32,                                            )
OPCODE(ShiftRightArithmetic64,                              U64,            U64,            U32,                                            )
OPCODE(BitwiseAnd32,                                        U32,            U32,            U32,                                            )
OPCODE(BitwiseOr32,                                         U32,            U32,            U32,                                            )
OPCODE(BitwiseXor32,                                        U32,            U32,            U32,                                            )
OPCODE(BitFieldInsert,                                      U32,            U32,            U32,            U32,            U32,            )
OPCODE(BitFieldSExtract,                                    U32,            U32,            U32,            U32,                            )
OPCODE(BitFieldUExtract,                                    U32,            U32,            U32,            U32,                            )
OPCODE(BitReverse32,                                        U32,            U32,                                                            )
OPCODE(BitCount32,                                          U32,            U32,                                                            )
OPCODE(BitwiseNot32,                                        U32,            U32,                                                            )

OPCODE(FindSMsb32,                                          U32,            U32,                                                            )
OPCODE(FindUMsb32,                                          U32,            U32,                                                            )
OPCODE(SMin32,                                              U32,            U32,            U32,                                            )
OPCODE(UMin32,                                              U32,            U32,            U32,                                            )
OPCODE(SMax32,                                              U32,            U32,            U32,                                            )
OPCODE(UMax32,                                              U32,            U32,            U32,                                            )
OPCODE(SLessThan,                                           U1,             U32,            U32,                                            )
OPCODE(ULessThan,                                           U1,             U32,            U32,                                            )
OPCODE(IEqual,                                              U1,             U32,            U32,                                            )
OPCODE(SLessThanEqual,                                      U1,             U32,            U32,                                            )
OPCODE(ULessThanEqual,                                      U1,             U32,            U32,                                            )
OPCODE(SGreaterThan,                                        U1,             U32,            U32,                                            )
OPCODE(UGreaterThan,                                        U1,             U32,            U32,                                            )
OPCODE(INotEqual,                                           U1,             U32,            U32,                                            )
OPCODE(SGreaterThanEqual,                                   U1,             U32,            U32,                                            )
OPCODE(UGreaterThanEqual,                                   U1,             U32,            U32,                                            )

// Logical operations
OPCODE(LogicalOr,                                           U1,             U1,             U1,                                             )
OPCODE(LogicalAnd,                                          U1,             U1,             U1,                                             )
OPCODE(LogicalXor,                                          U1,             U1,             U1,                                             )
OPCODE(LogicalNot,                                          U1,             U1,                                                             )

// Conversion operations
OPCODE(ConvertS16F16,                                       U32,            F16,                                                            )
OPCODE(ConvertS16F32,                                       U32,            F32,                                                            )
OPCODE(ConvertS16F64,                                       U32,            F64,                                                            )
OPCODE(ConvertS32F16,                                       U32,            F16,                                                            )
OPCODE(ConvertS32F32,                                       U32,            F32,                                                            )
OPCODE(ConvertS32F64,                                       U32,            F64,                                                            )
OPCODE(ConvertS64F16,                                       U64,            F16,                                                            )
OPCODE(ConvertS64F32,                                       U64,            F32,                                                            )
OPCODE(ConvertS64F64,                                       U64,            F64,                                                            )
OPCODE(ConvertU16F16,                                       U32,            F16,                                                            )
OPCODE(ConvertU16F32,                                       U32,            F32,                                                            )
OPCODE(ConvertU16F64,                                       U32,            F64,                                                            )
OPCODE(ConvertU32F16,                                       U32,            F16,                                                            )
OPCODE(ConvertU32F32,                                       U32,            F32,                                                            )
OPCODE(ConvertU32F64,                                       U32,            F64,                                                            )
OPCODE(ConvertU64F16,                                       U64,            F16,                                                            )
OPCODE(ConvertU64F32,                                       U64,            F32,                                                            )
OPCODE(ConvertU64F64,                                       U64,            F64,                                                            )
OPCODE(ConvertU64U32,                                       U64,            U32,                                                            )
OPCODE(ConvertU32U64,                                       U32,            U64,                                                            )
OPCODE(ConvertF16F32,                                       F16,            F32,                                                            )
OPCODE(ConvertF32F16,                                       F32,            F16,                                                            )
OPCODE(ConvertF32F64,                                       F32,            F64,                                                            )
OPCODE(ConvertF64F32,                                       F64,            F32,                                                            )