Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: src/IceInstX8632.def

Issue 695993004: Subzero: Switch to AT&T asm syntax. I give up. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add opcode suffix to xchg. Use .L$ prefix for constant pool entries. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceOperand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstX8632.def
diff --git a/src/IceInstX8632.def b/src/IceInstX8632.def
index fcd9e3a0a936cbe5aba4f063bb08c96f06f9568f..80d85751e19272f8c68e44d47597c170aa94715c 100644
--- a/src/IceInstX8632.def
+++ b/src/IceInstX8632.def
@@ -135,23 +135,23 @@
X(Cmpps_ord, "ord") \
//#define X(tag, emit)
-#define ICETYPEX8632_TABLE \
- /* tag, element type, cvt, sdss, pack, width */ \
- X(IceType_void, IceType_void, "?" , "" , "" , "???") \
- X(IceType_i1, IceType_void, "si", "" , "" , "byte ptr") \
- X(IceType_i8, IceType_void, "si", "" , "" , "byte ptr") \
- X(IceType_i16, IceType_void, "si", "" , "" , "word ptr") \
- X(IceType_i32, IceType_void, "si", "" , "" , "dword ptr") \
- X(IceType_i64, IceType_void, "si", "" , "" , "qword ptr") \
- X(IceType_f32, IceType_void, "ss", "ss", "" , "dword ptr") \
- X(IceType_f64, IceType_void, "sd", "sd", "" , "qword ptr") \
- X(IceType_v4i1, IceType_i32 , "?" , "" , "d", "xmmword ptr") \
- X(IceType_v8i1, IceType_i16 , "?" , "" , "w", "xmmword ptr") \
- X(IceType_v16i1, IceType_i8 , "?" , "" , "b", "xmmword ptr") \
- X(IceType_v16i8, IceType_i8 , "?" , "" , "b", "xmmword ptr") \
- X(IceType_v8i16, IceType_i16 , "?" , "" , "w", "xmmword ptr") \
- X(IceType_v4i32, IceType_i32 , "dq", "" , "d", "xmmword ptr") \
- X(IceType_v4f32, IceType_f32 , "ps", "" , "" , "xmmword ptr") \
-//#define X(tag, elementty, cvt, sdss, width)
+#define ICETYPEX8632_TABLE \
+ /* tag, element type, cvt, sdss, pack, width, fld */ \
+ X(IceType_void, IceType_void, "?" , "" , "" , "", "") \
+ X(IceType_i1, IceType_void, "si", "" , "" , "b", "") \
+ X(IceType_i8, IceType_void, "si", "" , "" , "b", "") \
+ X(IceType_i16, IceType_void, "si", "" , "" , "w", "") \
+ X(IceType_i32, IceType_void, "si", "" , "" , "l", "") \
+ X(IceType_i64, IceType_void, "si", "" , "" , "q", "") \
+ X(IceType_f32, IceType_void, "ss", "ss", "" , "", "s") \
+ X(IceType_f64, IceType_void, "sd", "sd", "" , "", "l") \
+ X(IceType_v4i1, IceType_i32 , "?" , "" , "d", "", "") \
+ X(IceType_v8i1, IceType_i16 , "?" , "" , "w", "", "") \
+ X(IceType_v16i1, IceType_i8 , "?" , "" , "b", "", "") \
+ X(IceType_v16i8, IceType_i8 , "?" , "" , "b", "", "") \
+ X(IceType_v8i16, IceType_i16 , "?" , "" , "w", "", "") \
+ X(IceType_v4i32, IceType_i32 , "dq", "" , "d", "", "") \
+ X(IceType_v4f32, IceType_f32 , "ps", "" , "" , "", "") \
+//#define X(tag, elementty, cvt, sdss, pack, width, fld)
#endif // SUBZERO_SRC_ICEINSTX8632_DEF
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698