summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-03 17:40:48 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-03 17:40:48 -0500
commit169411a220f4cb10c973d5bb613b4a6b9915efb7 (patch)
tree8508c45534028810bd4ac8c2defb5e123f0068d0 /lisc/lisc.h
parentcf8da3a6142e847e014306876742ab24189a6a94 (diff)
downloadroux-169411a220f4cb10c973d5bb613b4a6b9915efb7.tar.gz
add some (easy) instructions
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index edac623..5702182 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -216,6 +216,8 @@ enum Op {
 	ORem,
 	OMul,
 	OAnd,
+	OOr,
+	OXor,
 	OCmpw,
 	OCmpw1 = OCmpw + NICmp-1,
 	OCmpl,
@@ -248,6 +250,11 @@ enum Op {
 	OExtub,
 #define isext(o) (OExtsw <= o && o <= OExtub)
 
+	OExts,
+	OTruncd,
+	OFtosi,
+	OSitof,
+
 	OAlloc,
 	OAlloc1 = OAlloc + NAlign-1,