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

Unified Diff: src/IceInstX8632.def

Issue 383303003: Lower casting operations that involve vector types. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Rebase and make bitcast changes Created 6 years, 5 months 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/IceTargetLoweringX8632.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 be7c505c1ec3a8693aa6428484a35fd09215f7c4..1f6b6796e7be2bc131943d789fd3f3f0af6b51f1 100644
--- a/src/IceInstX8632.def
+++ b/src/IceInstX8632.def
@@ -66,23 +66,23 @@
X(Br_p, "p", "jp") \
//#define X(tag, dump, emit)
-#define ICETYPEX8632_TABLE \
- /* tag, cvt, sdss, width */ \
- X(IceType_void, "?", "" , "???") \
- X(IceType_i1, "i", "" , "byte ptr") \
- X(IceType_i8, "i", "" , "byte ptr") \
- X(IceType_i16, "i", "" , "word ptr") \
- X(IceType_i32, "i", "" , "dword ptr") \
- X(IceType_i64, "i", "" , "qword ptr") \
- X(IceType_f32, "s", "ss", "dword ptr") \
- X(IceType_f64, "d", "sd", "qword ptr") \
- X(IceType_v4i1, "?", "" , "xmmword ptr") \
- X(IceType_v8i1, "?", "" , "xmmword ptr") \
- X(IceType_v16i1, "?", "" , "xmmword ptr") \
- X(IceType_v16i8, "?", "" , "xmmword ptr") \
- X(IceType_v8i16, "?", "" , "xmmword ptr") \
- X(IceType_v4i32, "?", "" , "xmmword ptr") \
- X(IceType_v4f32, "?", "" , "xmmword ptr") \
+#define ICETYPEX8632_TABLE \
+ /* tag, cvt, sdss, pack, width */ \
+ X(IceType_void, "?", "" , "" , "???") \
+ X(IceType_i1, "si", "" , "" , "byte ptr") \
+ X(IceType_i8, "si", "" , "" , "byte ptr") \
+ X(IceType_i16, "si", "" , "" , "word ptr") \
+ X(IceType_i32, "si", "" , "" , "dword ptr") \
+ X(IceType_i64, "si", "" , "" , "qword ptr") \
+ X(IceType_f32, "ss", "ss", "" , "dword ptr") \
+ X(IceType_f64, "sd", "sd", "" , "qword ptr") \
+ X(IceType_v4i1, "?", "" , "" , "xmmword ptr") \
+ X(IceType_v8i1, "?", "" , "" , "xmmword ptr") \
+ X(IceType_v16i1, "?", "" , "" , "xmmword ptr") \
+ X(IceType_v16i8, "?", "" , "b", "xmmword ptr") \
+ X(IceType_v8i16, "?", "" , "w", "xmmword ptr") \
+ X(IceType_v4i32, "dq", "" , "d", "xmmword ptr") \
+ X(IceType_v4f32, "ps", "" , "", "xmmword ptr") \
//#define X(tag, cvt, sdss, width)
#endif // SUBZERO_SRC_ICEINSTX8632_DEF
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceTargetLoweringX8632.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698