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

Unified Diff: src/IceInstX8632.def

Issue 1909013002: Subzero. X86. Lowers shufflevector using xmm instructions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 8 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/IceInstX8664.cpp » ('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 0ed4b802a0de656b3e0e1f51982363e21464a15a..173164f7dc05c24684ff4ab67835fb4efdbf9a2f 100644
--- a/src/IceInstX8632.def
+++ b/src/IceInstX8632.def
@@ -212,22 +212,22 @@
//#define X(val, emit)
#define ICETYPEX8632_TABLE \
- /* tag, element type, cvt , sdss, pdps, spsd, pack, width, fld */ \
- X(void, void, "?", "", "", "", "", "", "") \
- X(i1, void, "si", "", "", "", "", "b", "") \
- X(i8, void, "si", "", "", "", "", "b", "") \
- X(i16, void, "si", "", "", "", "", "w", "") \
- X(i32, void, "si", "", "", "", "", "l", "") \
- X(i64, void, "si", "", "", "", "", "q", "") \
- X(f32, void, "ss", "ss", "ps", "ss", "d", "", "s") \
- X(f64, void, "sd", "sd", "pd", "sd", "q", "", "l") \
- X(v4i1, i32, "?", "", "", "", "d", "", "") \
- X(v8i1, i16, "?", "", "", "", "w", "", "") \
- X(v16i1, i8, "?", "", "", "", "b", "", "") \
- X(v16i8, i8, "?", "", "", "", "b", "", "") \
- X(v8i16, i16, "?", "", "", "", "w", "", "") \
- X(v4i32, i32, "dq", "", "", "", "d", "", "") \
- X(v4f32, f32, "ps", "", "ps", "ps", "d", "", "")
-//#define X(tag, elementty, cvt, sdss, pdps, spsd, pack, width, fld)
+ /* tag, element type, cvt , sdss, pdps, spsd, pack, unpack, width, fld */ \
+ X(void, void, "?", "", "", "", "", "", "", "") \
+ X(i1, void, "si", "", "", "", "", "", "b", "") \
+ X(i8, void, "si", "", "", "", "", "", "b", "") \
+ X(i16, void, "si", "", "", "", "", "", "w", "") \
+ X(i32, void, "si", "", "", "", "", "", "l", "") \
+ X(i64, void, "si", "", "", "", "", "", "q", "") \
+ X(f32, void, "ss", "ss", "ps", "ss", "d", "", "", "s") \
+ X(f64, void, "sd", "sd", "pd", "sd", "q", "", "", "l") \
+ X(v4i1, i32, "?", "", "", "", "d", "dq", "", "") \
+ X(v8i1, i16, "?", "", "", "", "w", "wd", "", "") \
+ X(v16i1, i8, "?", "", "", "", "b", "bw", "", "") \
+ X(v16i8, i8, "?", "", "", "", "b", "bw", "", "") \
+ X(v8i16, i16, "?", "", "", "", "w", "wd", "", "") \
+ X(v4i32, i32, "dq", "", "", "", "d", "dq", "", "") \
+ X(v4f32, f32, "ps", "", "ps", "ps", "d", "dq", "", "")
+//#define X(tag, elementty, cvt, sdss, pdps, spsd, pack, unpack, width, fld)
#endif // SUBZERO_SRC_ICEINSTX8632_DEF
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceInstX8664.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698