summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-04-04 14:45:49 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-04-04 14:45:49 -0400
commit74562a93debff6954f16a4c3434efa69d37c954b (patch)
tree245c03672bc2c895eff933de2262d111c2a18ebb /all.h
parentf71206500c6693eed4393d72e8ab95d6a7e07d98 (diff)
downloadroux-74562a93debff6954f16a4c3434efa69d37c954b.tar.gz
reorder instructions
Diffstat (limited to 'all.h')
-rw-r--r--all.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/all.h b/all.h
index cecc754..a983108 100644
--- a/all.h
+++ b/all.h
@@ -232,28 +232,28 @@ enum Op {
 	OCmpd,
 	OCmpd1 = OCmpd + NFCmp-1,
 
-	OStored,
-	OStores,
-	OStorel,
-	OStorew,
-	OStoreh,
 	OStoreb,
-#define isstore(o) (OStored <= o && o <= OStoreb)
-	OLoadsw,  /* needs to match OExt (mem.c) */
-	OLoaduw,
+	OStoreh,
+	OStorew,
+	OStorel,
+	OStores,
+	OStored,
+#define isstore(o) (OStoreb <= o && o <= OStored)
+	OLoadsb,  /* needs to match OExt (mem.c) */
+	OLoadub,
 	OLoadsh,
 	OLoaduh,
-	OLoadsb,
-	OLoadub,
+	OLoadsw,
+	OLoaduw,
 	OLoad,
-#define isload(o) (OLoadsw <= o && o <= OLoad)
-	OExtsw,
-	OExtuw,
-	OExtsh,
-	OExtuh,
+#define isload(o) (OLoadsb <= o && o <= OLoad)
 	OExtsb,
 	OExtub,
-#define isext(o) (OExtsw <= o && o <= OExtub)
+	OExtsh,
+	OExtuh,
+	OExtsw,
+	OExtuw,
+#define isext(o) (OExtsw <= o && o <= OExtuw)
 
 	OExts,
 	OTruncd,