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

Side by Side Diff: unittest/AssemblerX8664/XmmArith.cpp

Issue 1917863004: Subzero. X86. Uses pshufb for shufflevector lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Deterministic table name." Created 4 years, 7 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 | « unittest/AssemblerX8632/XmmArith.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/unittest/AssemblerX8664/XmmArith.cpp -----------------------===// 1 //===- subzero/unittest/AssemblerX8664/XmmArith.cpp -----------------------===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 #include "AssemblerX8664/TestUtil.h" 9 #include "AssemblerX8664/TestUtil.h"
10 10
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 TestImpl(xmm12, xmm13); 1151 TestImpl(xmm12, xmm13);
1152 TestImpl(xmm13, xmm14); 1152 TestImpl(xmm13, xmm14);
1153 TestImpl(xmm14, xmm15); 1153 TestImpl(xmm14, xmm15);
1154 TestImpl(xmm15, xmm0); 1154 TestImpl(xmm15, xmm0);
1155 1155
1156 #undef TestImpl 1156 #undef TestImpl
1157 #undef TestImplXmmAddr 1157 #undef TestImplXmmAddr
1158 #undef TestImplXmmXmm 1158 #undef TestImplXmmXmm
1159 } 1159 }
1160 1160
1161 TEST_F(AssemblerX8664Test, Pshufb) {
1162 const Dqword V0(uint64_t(0x1122334455667788ull),
1163 uint64_t(0x99aabbccddeeff32ull));
1164 const Dqword V1(uint64_t(0x0204050380060708ull),
1165 uint64_t(0x010306080a8b0c0dull));
1166
1167 const Dqword Expected(uint64_t(0x6644335500221132ull),
1168 uint64_t(0x77552232ee00ccbbull));
1169
1170 #define TestImplXmmXmm(Dst, Src, Inst) \
1171 do { \
1172 static constexpr char TestString[] = "(" #Dst ", " #Src ", " #Inst ")"; \
1173 const uint32_t T0 = allocateDqword(); \
1174 const uint32_t T1 = allocateDqword(); \
1175 \
1176 __ movups(XmmRegister::Encoded_Reg_##Dst, dwordAddress(T0)); \
1177 __ movups(XmmRegister::Encoded_Reg_##Src, dwordAddress(T1)); \
1178 __ Inst(IceType_void, XmmRegister::Encoded_Reg_##Dst, \
1179 XmmRegister::Encoded_Reg_##Src); \
1180 \
1181 AssembledTest test = assemble(); \
1182 test.setDqwordTo(T0, V0); \
1183 test.setDqwordTo(T1, V1); \
1184 test.run(); \
1185 \
1186 ASSERT_EQ(Expected, test.Dst<Dqword>()) << TestString; \
1187 reset(); \
1188 } while (0)
1189
1190 #define TestImplXmmAddr(Dst, Inst) \
1191 do { \
1192 static constexpr char TestString[] = "(" #Dst ", Addr, " #Inst ")"; \
1193 const uint32_t T0 = allocateDqword(); \
1194 const uint32_t T1 = allocateDqword(); \
1195 \
1196 __ movups(XmmRegister::Encoded_Reg_##Dst, dwordAddress(T0)); \
1197 __ Inst(IceType_void, XmmRegister::Encoded_Reg_##Dst, dwordAddress(T1)); \
1198 \
1199 AssembledTest test = assemble(); \
1200 test.setDqwordTo(T0, V0); \
1201 test.setDqwordTo(T1, V1); \
1202 test.run(); \
1203 \
1204 ASSERT_EQ(Expected, test.Dst<Dqword>()) << TestString; \
1205 reset(); \
1206 } while (0)
1207
1208 #define TestImpl(Dst, Src) \
1209 do { \
1210 TestImplXmmXmm(Dst, Src, pshufb); \
1211 TestImplXmmAddr(Dst, pshufb); \
1212 } while (0)
1213
1214 TestImpl(xmm0, xmm1);
1215 TestImpl(xmm1, xmm2);
1216 TestImpl(xmm2, xmm3);
1217 TestImpl(xmm3, xmm4);
1218 TestImpl(xmm4, xmm5);
1219 TestImpl(xmm5, xmm6);
1220 TestImpl(xmm6, xmm7);
1221 TestImpl(xmm7, xmm8);
1222 TestImpl(xmm8, xmm9);
1223 TestImpl(xmm9, xmm10);
1224 TestImpl(xmm10, xmm11);
1225 TestImpl(xmm11, xmm12);
1226 TestImpl(xmm12, xmm13);
1227 TestImpl(xmm13, xmm14);
1228 TestImpl(xmm14, xmm15);
1229 TestImpl(xmm15, xmm0);
1230
1231 #undef TestImpl
1232 #undef TestImplXmmAddr
1233 #undef TestImplXmmXmm
1234 }
1235
1161 TEST_F(AssemblerX8664Test, Cvt) { 1236 TEST_F(AssemblerX8664Test, Cvt) {
1162 const Dqword dq2ps32DstValue(-1.0f, -1.0f, -1.0f, -1.0f); 1237 const Dqword dq2ps32DstValue(-1.0f, -1.0f, -1.0f, -1.0f);
1163 const Dqword dq2ps32SrcValue(-5, 3, 100, 200); 1238 const Dqword dq2ps32SrcValue(-5, 3, 100, 200);
1164 const Dqword dq2ps32Expected(-5.0f, 3.0f, 100.0, 200.0); 1239 const Dqword dq2ps32Expected(-5.0f, 3.0f, 100.0, 200.0);
1165 1240
1166 const Dqword dq2ps64DstValue(0.0f, 0.0f, -1.0f, -1.0f); 1241 const Dqword dq2ps64DstValue(0.0f, 0.0f, -1.0f, -1.0f);
1167 const Dqword dq2ps64SrcValue(-5, 3, 100, 200); 1242 const Dqword dq2ps64SrcValue(-5, 3, 100, 200);
1168 const Dqword dq2ps64Expected(-5.0f, 3.0f, 100.0, 200.0); 1243 const Dqword dq2ps64Expected(-5.0f, 3.0f, 100.0, 200.0);
1169 1244
1170 const Dqword tps2dq32DstValue(-1.0f, -1.0f, -1.0f, -1.0f); 1245 const Dqword tps2dq32DstValue(-1.0f, -1.0f, -1.0f, -1.0f);
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
2030 TestImpl(xmm14, r1, 101); 2105 TestImpl(xmm14, r1, 101);
2031 TestImpl(xmm15, r2, 166); 2106 TestImpl(xmm15, r2, 166);
2032 2107
2033 #undef TestImpl 2108 #undef TestImpl
2034 } 2109 }
2035 2110
2036 } // end of anonymous namespace 2111 } // end of anonymous namespace
2037 } // end of namespace Test 2112 } // end of namespace Test
2038 } // end of namespace X8664 2113 } // end of namespace X8664
2039 } // end of namespace Ice 2114 } // end of namespace Ice
OLDNEW
« no previous file with comments | « unittest/AssemblerX8632/XmmArith.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698