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

Side by Side Diff: unittest/AssemblerX8632/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 | « src/IceTargetLoweringX86BaseImpl.h ('k') | unittest/AssemblerX8664/XmmArith.cpp » ('j') | 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/AssemblerX8632/XmmArith.cpp -----------------------===// 1 //===- subzero/unittest/AssemblerX8632/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 "AssemblerX8632/TestUtil.h" 9 #include "AssemblerX8632/TestUtil.h"
10 10
(...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 TestImpl(xmm4, xmm5); 1077 TestImpl(xmm4, xmm5);
1078 TestImpl(xmm5, xmm6); 1078 TestImpl(xmm5, xmm6);
1079 TestImpl(xmm6, xmm7); 1079 TestImpl(xmm6, xmm7);
1080 TestImpl(xmm7, xmm0); 1080 TestImpl(xmm7, xmm0);
1081 1081
1082 #undef TestImpl 1082 #undef TestImpl
1083 #undef TestImplXmmAddr 1083 #undef TestImplXmmAddr
1084 #undef TestImplXmmXmm 1084 #undef TestImplXmmXmm
1085 } 1085 }
1086 1086
1087 TEST_F(AssemblerX8632Test, Pshufb) {
1088 const Dqword V0(uint64_t(0x1122334455667788ull),
1089 uint64_t(0x99aabbccddeeff32ull));
1090 const Dqword V1(uint64_t(0x0204050380060708ull),
1091 uint64_t(0x010306080a8b0c0dull));
1092
1093 const Dqword Expected(uint64_t(0x6644335500221132ull),
1094 uint64_t(0x77552232ee00ccbbull));
1095
1096 #define TestImplXmmXmm(Dst, Src, Inst) \
1097 do { \
1098 static constexpr char TestString[] = "(" #Dst ", " #Src ", " #Inst ")"; \
1099 const uint32_t T0 = allocateDqword(); \
1100 const uint32_t T1 = allocateDqword(); \
1101 \
1102 __ movups(XmmRegister::Encoded_Reg_##Dst, dwordAddress(T0)); \
1103 __ movups(XmmRegister::Encoded_Reg_##Src, dwordAddress(T1)); \
1104 __ Inst(IceType_void, XmmRegister::Encoded_Reg_##Dst, \
1105 XmmRegister::Encoded_Reg_##Src); \
1106 \
1107 AssembledTest test = assemble(); \
1108 test.setDqwordTo(T0, V0); \
1109 test.setDqwordTo(T1, V1); \
1110 test.run(); \
1111 \
1112 ASSERT_EQ(Expected, test.Dst<Dqword>()) << TestString; \
1113 reset(); \
1114 } while (0)
1115
1116 #define TestImplXmmAddr(Dst, Inst) \
1117 do { \
1118 static constexpr char TestString[] = "(" #Dst ", Addr, " #Inst ")"; \
1119 const uint32_t T0 = allocateDqword(); \
1120 const uint32_t T1 = allocateDqword(); \
1121 \
1122 __ movups(XmmRegister::Encoded_Reg_##Dst, dwordAddress(T0)); \
1123 __ Inst(IceType_void, XmmRegister::Encoded_Reg_##Dst, dwordAddress(T1)); \
1124 \
1125 AssembledTest test = assemble(); \
1126 test.setDqwordTo(T0, V0); \
1127 test.setDqwordTo(T1, V1); \
1128 test.run(); \
1129 \
1130 ASSERT_EQ(Expected, test.Dst<Dqword>()) << TestString; \
1131 reset(); \
1132 } while (0)
1133
1134 #define TestImpl(Dst, Src) \
1135 do { \
1136 TestImplXmmXmm(Dst, Src, pshufb); \
1137 TestImplXmmAddr(Dst, pshufb); \
1138 } while (0)
1139
1140 TestImpl(xmm0, xmm1);
1141 TestImpl(xmm1, xmm2);
1142 TestImpl(xmm2, xmm3);
1143 TestImpl(xmm3, xmm4);
1144 TestImpl(xmm4, xmm5);
1145 TestImpl(xmm5, xmm6);
1146 TestImpl(xmm6, xmm7);
1147 TestImpl(xmm7, xmm0);
1148
1149 #undef TestImpl
1150 #undef TestImplXmmAddr
1151 #undef TestImplXmmXmm
1152 }
1153
1087 TEST_F(AssemblerX8632Test, Cvt) { 1154 TEST_F(AssemblerX8632Test, Cvt) {
1088 const Dqword dq2ps32DstValue(-1.0f, -1.0f, -1.0f, -1.0f); 1155 const Dqword dq2ps32DstValue(-1.0f, -1.0f, -1.0f, -1.0f);
1089 const Dqword dq2ps32SrcValue(-5, 3, 100, 200); 1156 const Dqword dq2ps32SrcValue(-5, 3, 100, 200);
1090 const Dqword dq2ps32Expected(-5.0f, 3.0f, 100.0, 200.0); 1157 const Dqword dq2ps32Expected(-5.0f, 3.0f, 100.0, 200.0);
1091 1158
1092 const Dqword dq2ps64DstValue(0.0f, 0.0f, -1.0f, -1.0f); 1159 const Dqword dq2ps64DstValue(0.0f, 0.0f, -1.0f, -1.0f);
1093 const Dqword dq2ps64SrcValue(-5, 3, 100, 200); 1160 const Dqword dq2ps64SrcValue(-5, 3, 100, 200);
1094 const Dqword dq2ps64Expected(-5.0f, 3.0f, 100.0, 200.0); 1161 const Dqword dq2ps64Expected(-5.0f, 3.0f, 100.0, 200.0);
1095 1162
1096 const Dqword tps2dq32DstValue(-1.0f, -1.0f, -1.0f, -1.0f); 1163 const Dqword tps2dq32DstValue(-1.0f, -1.0f, -1.0f, -1.0f);
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1890 TestImpl(xmm6, ebx, 7); 1957 TestImpl(xmm6, ebx, 7);
1891 TestImpl(xmm7, ecx, 8); 1958 TestImpl(xmm7, ecx, 8);
1892 1959
1893 #undef TestImpl 1960 #undef TestImpl
1894 } 1961 }
1895 1962
1896 } // end of anonymous namespace 1963 } // end of anonymous namespace
1897 } // end of namespace Test 1964 } // end of namespace Test
1898 } // end of namespace X8632 1965 } // end of namespace X8632
1899 } // end of namespace Ice 1966 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceTargetLoweringX86BaseImpl.h ('k') | unittest/AssemblerX8664/XmmArith.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698