summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.inc13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc
index 593faca52..8471db7b9 100644
--- a/src/shader_recompiler/frontend/ir/opcodes.inc
+++ b/src/shader_recompiler/frontend/ir/opcodes.inc
@@ -247,6 +247,7 @@ OPCODE(IMul32, U32, U32,
247OPCODE(INeg32, U32, U32, ) 247OPCODE(INeg32, U32, U32, )
248OPCODE(INeg64, U64, U64, ) 248OPCODE(INeg64, U64, U64, )
249OPCODE(IAbs32, U32, U32, ) 249OPCODE(IAbs32, U32, U32, )
250OPCODE(IAbs64, U64, U64, )
250OPCODE(ShiftLeftLogical32, U32, U32, U32, ) 251OPCODE(ShiftLeftLogical32, U32, U32, U32, )
251OPCODE(ShiftLeftLogical64, U64, U64, U32, ) 252OPCODE(ShiftLeftLogical64, U64, U64, U32, )
252OPCODE(ShiftRightLogical32, U32, U32, U32, ) 253OPCODE(ShiftRightLogical32, U32, U32, U32, )
@@ -311,16 +312,28 @@ OPCODE(ConvertF16F32, F16, F32,
311OPCODE(ConvertF32F16, F32, F16, ) 312OPCODE(ConvertF32F16, F32, F16, )
312OPCODE(ConvertF32F64, F32, F64, ) 313OPCODE(ConvertF32F64, F32, F64, )
313OPCODE(ConvertF64F32, F64, F32, ) 314OPCODE(ConvertF64F32, F64, F32, )
315OPCODE(ConvertF16S8, F16, U32, )
316OPCODE(ConvertF16S16, F16, U32, )
314OPCODE(ConvertF16S32, F16, U32, ) 317OPCODE(ConvertF16S32, F16, U32, )
315OPCODE(ConvertF16S64, F16, U64, ) 318OPCODE(ConvertF16S64, F16, U64, )
319OPCODE(ConvertF16U8, F16, U32, )
320OPCODE(ConvertF16U16, F16, U32, )
316OPCODE(ConvertF16U32, F16, U32, ) 321OPCODE(ConvertF16U32, F16, U32, )
317OPCODE(ConvertF16U64, F16, U64, ) 322OPCODE(ConvertF16U64, F16, U64, )
323OPCODE(ConvertF32S8, F32, U32, )
324OPCODE(ConvertF32S16, F32, U32, )
318OPCODE(ConvertF32S32, F32, U32, ) 325OPCODE(ConvertF32S32, F32, U32, )
319OPCODE(ConvertF32S64, F32, U64, ) 326OPCODE(ConvertF32S64, F32, U64, )
327OPCODE(ConvertF32U8, F32, U32, )
328OPCODE(ConvertF32U16, F32, U32, )
320OPCODE(ConvertF32U32, F32, U32, ) 329OPCODE(ConvertF32U32, F32, U32, )
321OPCODE(ConvertF32U64, F32, U64, ) 330OPCODE(ConvertF32U64, F32, U64, )
331OPCODE(ConvertF64S8, F64, U32, )
332OPCODE(ConvertF64S16, F64, U32, )
322OPCODE(ConvertF64S32, F64, U32, ) 333OPCODE(ConvertF64S32, F64, U32, )
323OPCODE(ConvertF64S64, F64, U64, ) 334OPCODE(ConvertF64S64, F64, U64, )
335OPCODE(ConvertF64U8, F64, U32, )
336OPCODE(ConvertF64U16, F64, U32, )
324OPCODE(ConvertF64U32, F64, U32, ) 337OPCODE(ConvertF64U32, F64, U32, )
325OPCODE(ConvertF64U64, F64, U64, ) 338OPCODE(ConvertF64U64, F64, U64, )
326 339