From 5ac04c7a3ec11d939a3773876b6924e1ae39f1a5 Mon Sep 17 00:00:00 2001 From: lemon Date: Sat, 10 Jun 2023 14:22:03 +0200 Subject: isel skeleton --- op.def | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'op.def') diff --git a/op.def b/op.def index 752d43e..706f308 100644 --- a/op.def +++ b/op.def @@ -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) -- cgit v1.2.3