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

Unified Diff: src/IceInstX8632.def

Issue 401523003: Lower insertelement and extractelement. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Use a forward declaration to name i1 vector types in test_vector_ops_main.cpp 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
Index: src/IceInstX8632.def
diff --git a/src/IceInstX8632.def b/src/IceInstX8632.def
index 1f6b6796e7be2bc131943d789fd3f3f0af6b51f1..11f77a343b32f988897a53a0b85aac15f346bd60 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, 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 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 , "?" , "" , "" , "xmmword ptr") \
+ X(IceType_v8i1, IceType_i16 , "?" , "" , "" , "xmmword ptr") \
+ X(IceType_v16i1, IceType_i8 , "?" , "" , "" , "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, cvt, sdss, width)
Jim Stichnoth 2014/07/18 17:21:01 Add new elementty macro arg to the comment.
wala 2014/07/18 19:36:13 Done.
#endif // SUBZERO_SRC_ICEINSTX8632_DEF
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceTargetLowering.h » ('j') | src/IceTargetLoweringX8632.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698