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

Side by Side Diff: crosstest/test_vector_ops.def

Issue 401523003: Lower insertelement and extractelement. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Rebase 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 unified diff | Download patch
« no previous file with comments | « crosstest/runtests.sh ('k') | crosstest/test_vector_ops.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef TEST_VECTOR_OPS_DEF
2
3 #define VECTOR_TYPE_TABLE \
4 /* typename, element type, cast type */ \
5 X(v16si8, int8_t, int64_t) \
6 X(v16ui8, uint8_t, int64_t) \
7 X(v8si16, int16_t, int64_t) \
8 X(v8ui16, uint16_t, int64_t) \
9 X(v4si32, int32_t, int64_t) \
10 X(v4ui32, uint32_t, int64_t) \
11 X(v4f32, float, float) \
12
13 #define I1_VECTOR_TYPE_TABLE \
14 /* typename, expanded type, # elements */ \
15 X(v4i1, v4ui32, 4) \
16 X(v8i1, v8ui16, 8) \
17 X(v16i1, v16ui8, 16) \
18
19 #endif
OLDNEW
« no previous file with comments | « crosstest/runtests.sh ('k') | crosstest/test_vector_ops.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698