summaryrefslogtreecommitdiff
path: root/tcg/README
diff options
context:
space:
mode:
Diffstat (limited to 'tcg/README')
-rw-r--r--tcg/README20
1 files changed, 20 insertions, 0 deletions
diff --git a/tcg/README b/tcg/README
index 2eeb669c2..3efef6028 100644
--- a/tcg/README
+++ b/tcg/README
@@ -205,6 +205,26 @@ t0=t1^t2
t0=~t1
+* andc_i32/i64 t0, t1, t2
+
+t0=t1&~t2
+
+* eqv_i32/i64 t0, t1, t2
+
+t0=~(t1^t2)
+
+* nand_i32/i64 t0, t1, t2
+
+t0=~(t1&t2)
+
+* nor_i32/i64 t0, t1, t2
+
+t0=~(t1|t2)
+
+* orc_i32/i64 t0, t1, t2
+
+t0=t1|~t2
+
********* Shifts
* shl_i32/i64 t0, t1, t2