diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 13 |
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, | |||
| 247 | OPCODE(INeg32, U32, U32, ) | 247 | OPCODE(INeg32, U32, U32, ) |
| 248 | OPCODE(INeg64, U64, U64, ) | 248 | OPCODE(INeg64, U64, U64, ) |
| 249 | OPCODE(IAbs32, U32, U32, ) | 249 | OPCODE(IAbs32, U32, U32, ) |
| 250 | OPCODE(IAbs64, U64, U64, ) | ||
| 250 | OPCODE(ShiftLeftLogical32, U32, U32, U32, ) | 251 | OPCODE(ShiftLeftLogical32, U32, U32, U32, ) |
| 251 | OPCODE(ShiftLeftLogical64, U64, U64, U32, ) | 252 | OPCODE(ShiftLeftLogical64, U64, U64, U32, ) |
| 252 | OPCODE(ShiftRightLogical32, U32, U32, U32, ) | 253 | OPCODE(ShiftRightLogical32, U32, U32, U32, ) |
| @@ -311,16 +312,28 @@ OPCODE(ConvertF16F32, F16, F32, | |||
| 311 | OPCODE(ConvertF32F16, F32, F16, ) | 312 | OPCODE(ConvertF32F16, F32, F16, ) |
| 312 | OPCODE(ConvertF32F64, F32, F64, ) | 313 | OPCODE(ConvertF32F64, F32, F64, ) |
| 313 | OPCODE(ConvertF64F32, F64, F32, ) | 314 | OPCODE(ConvertF64F32, F64, F32, ) |
| 315 | OPCODE(ConvertF16S8, F16, U32, ) | ||
| 316 | OPCODE(ConvertF16S16, F16, U32, ) | ||
| 314 | OPCODE(ConvertF16S32, F16, U32, ) | 317 | OPCODE(ConvertF16S32, F16, U32, ) |
| 315 | OPCODE(ConvertF16S64, F16, U64, ) | 318 | OPCODE(ConvertF16S64, F16, U64, ) |
| 319 | OPCODE(ConvertF16U8, F16, U32, ) | ||
| 320 | OPCODE(ConvertF16U16, F16, U32, ) | ||
| 316 | OPCODE(ConvertF16U32, F16, U32, ) | 321 | OPCODE(ConvertF16U32, F16, U32, ) |
| 317 | OPCODE(ConvertF16U64, F16, U64, ) | 322 | OPCODE(ConvertF16U64, F16, U64, ) |
| 323 | OPCODE(ConvertF32S8, F32, U32, ) | ||
| 324 | OPCODE(ConvertF32S16, F32, U32, ) | ||
| 318 | OPCODE(ConvertF32S32, F32, U32, ) | 325 | OPCODE(ConvertF32S32, F32, U32, ) |
| 319 | OPCODE(ConvertF32S64, F32, U64, ) | 326 | OPCODE(ConvertF32S64, F32, U64, ) |
| 327 | OPCODE(ConvertF32U8, F32, U32, ) | ||
| 328 | OPCODE(ConvertF32U16, F32, U32, ) | ||
| 320 | OPCODE(ConvertF32U32, F32, U32, ) | 329 | OPCODE(ConvertF32U32, F32, U32, ) |
| 321 | OPCODE(ConvertF32U64, F32, U64, ) | 330 | OPCODE(ConvertF32U64, F32, U64, ) |
| 331 | OPCODE(ConvertF64S8, F64, U32, ) | ||
| 332 | OPCODE(ConvertF64S16, F64, U32, ) | ||
| 322 | OPCODE(ConvertF64S32, F64, U32, ) | 333 | OPCODE(ConvertF64S32, F64, U32, ) |
| 323 | OPCODE(ConvertF64S64, F64, U64, ) | 334 | OPCODE(ConvertF64S64, F64, U64, ) |
| 335 | OPCODE(ConvertF64U8, F64, U32, ) | ||
| 336 | OPCODE(ConvertF64U16, F64, U32, ) | ||
| 324 | OPCODE(ConvertF64U32, F64, U32, ) | 337 | OPCODE(ConvertF64U32, F64, U32, ) |
| 325 | OPCODE(ConvertF64U64, F64, U64, ) | 338 | OPCODE(ConvertF64U64, F64, U64, ) |
| 326 | 339 | ||