diff options
| author | 2023-06-10 14:22:03 +0200 | |
|---|---|---|
| committer | 2023-06-10 14:22:03 +0200 | |
| commit | 5ac04c7a3ec11d939a3773876b6924e1ae39f1a5 (patch) | |
| tree | 28712d39b25ee80bc971cced1d2cba8387694412 /op.def | |
| parent | 22e20cf906fa3904eedfe34efc58a7b56116ce42 (diff) | |
isel skeleton
Diffstat (limited to 'op.def')
| -rw-r--r-- | op.def | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,6 +1,7 @@ /* OP NARG */ +_(nop, 0) _(copy, 1) -_(move, 1) +_(move, 2) _(neg, 1) _(not, 1) _(cvtf4s, 1) @@ -31,15 +32,18 @@ _(and, 2) _(ior, 2) _(xor, 2) _(shl, 2) -_(slr, 2) _(sar, 2) -_(shr, 2) +_(slr, 2) _(equ, 2) _(neq, 2) _(lth, 2) +_(gth, 2) _(lte, 2) +_(gte, 2) _(ulth, 2) +_(ugth, 2) _(ulte, 2) +_(ugte, 2) _(alloca1, 1) _(alloca2, 1) _(alloca4, 1) |