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

Side by Side Diff: test/cctest/test-disasm-arm.cc

Issue 2797923006: [ARM] Implement D-register versions of vzip, vuzp, and vtrn. (Closed)
Patch Set: Remove tests for vzip.32 / vuzp.32 - these are pseudo ops for vtrn.32. Created 3 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 unified diff | Download patch
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('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 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 COMPARE(vcgt(NeonU16, q1, q2, q8), 1135 COMPARE(vcgt(NeonU16, q1, q2, q8),
1136 "f3142360 vcgt.u16 q1, q2, q8"); 1136 "f3142360 vcgt.u16 q1, q2, q8");
1137 COMPARE(vcgt(NeonS32, q15, q0, q8), 1137 COMPARE(vcgt(NeonS32, q15, q0, q8),
1138 "f260e360 vcgt.s32 q15, q0, q8"); 1138 "f260e360 vcgt.s32 q15, q0, q8");
1139 COMPARE(vbsl(q0, q1, q2), 1139 COMPARE(vbsl(q0, q1, q2),
1140 "f3120154 vbsl q0, q1, q2"); 1140 "f3120154 vbsl q0, q1, q2");
1141 COMPARE(vbsl(q15, q0, q8), 1141 COMPARE(vbsl(q15, q0, q8),
1142 "f350e170 vbsl q15, q0, q8"); 1142 "f350e170 vbsl q15, q0, q8");
1143 COMPARE(vext(q15, q0, q8, 3), 1143 COMPARE(vext(q15, q0, q8, 3),
1144 "f2f0e360 vext.8 q15, q0, q8, #3"); 1144 "f2f0e360 vext.8 q15, q0, q8, #3");
1145 COMPARE(vzip(Neon16, d15, d0),
1146 "f3b6f180 vzip.16 d15, d0");
1145 COMPARE(vzip(Neon16, q15, q0), 1147 COMPARE(vzip(Neon16, q15, q0),
1146 "f3f6e1c0 vzip.16 q15, q0"); 1148 "f3f6e1c0 vzip.16 q15, q0");
1149 COMPARE(vuzp(Neon16, d15, d0),
1150 "f3b6f100 vuzp.16 d15, d0");
1147 COMPARE(vuzp(Neon16, q15, q0), 1151 COMPARE(vuzp(Neon16, q15, q0),
1148 "f3f6e140 vuzp.16 q15, q0"); 1152 "f3f6e140 vuzp.16 q15, q0");
1149 COMPARE(vrev64(Neon8, q15, q0), 1153 COMPARE(vrev64(Neon8, q15, q0),
1150 "f3f0e040 vrev64.8 q15, q0"); 1154 "f3f0e040 vrev64.8 q15, q0");
1155 COMPARE(vtrn(Neon16, d15, d0),
1156 "f3b6f080 vtrn.16 d15, d0");
1151 COMPARE(vtrn(Neon16, q15, q0), 1157 COMPARE(vtrn(Neon16, q15, q0),
1152 "f3f6e0c0 vtrn.16 q15, q0"); 1158 "f3f6e0c0 vtrn.16 q15, q0");
1153 COMPARE(vtbl(d0, NeonListOperand(d1, 1), d2), 1159 COMPARE(vtbl(d0, NeonListOperand(d1, 1), d2),
1154 "f3b10802 vtbl.8 d0, {d1}, d2"); 1160 "f3b10802 vtbl.8 d0, {d1}, d2");
1155 COMPARE(vtbl(d31, NeonListOperand(d0, 2), d4), 1161 COMPARE(vtbl(d31, NeonListOperand(d0, 2), d4),
1156 "f3f0f904 vtbl.8 d31, {d0, d1}, d4"); 1162 "f3f0f904 vtbl.8 d31, {d0, d1}, d4");
1157 COMPARE(vtbl(d15, NeonListOperand(d1, 3), d5), 1163 COMPARE(vtbl(d15, NeonListOperand(d1, 3), d5),
1158 "f3b1fa05 vtbl.8 d15, {d1, d2, d3}, d5"); 1164 "f3b1fa05 vtbl.8 d15, {d1, d2, d3}, d5");
1159 COMPARE(vtbl(d15, NeonListOperand(d1, 4), d5), 1165 COMPARE(vtbl(d15, NeonListOperand(d1, 4), d5),
1160 "f3b1fb05 vtbl.8 d15, {d1, d2, d3, d4}, d5"); 1166 "f3b1fb05 vtbl.8 d15, {d1, d2, d3, d4}, d5");
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 1455
1450 COMPARE(ldrexb(r0, r1), "e1d10f9f ldrexb r0, [r1]"); 1456 COMPARE(ldrexb(r0, r1), "e1d10f9f ldrexb r0, [r1]");
1451 COMPARE(strexb(r0, r1, r2), "e1c20f91 strexb r0, r1, [r2]"); 1457 COMPARE(strexb(r0, r1, r2), "e1c20f91 strexb r0, r1, [r2]");
1452 COMPARE(ldrexh(r0, r1), "e1f10f9f ldrexh r0, [r1]"); 1458 COMPARE(ldrexh(r0, r1), "e1f10f9f ldrexh r0, [r1]");
1453 COMPARE(strexh(r0, r1, r2), "e1e20f91 strexh r0, r1, [r2]"); 1459 COMPARE(strexh(r0, r1, r2), "e1e20f91 strexh r0, r1, [r2]");
1454 COMPARE(ldrex(r0, r1), "e1910f9f ldrex r0, [r1]"); 1460 COMPARE(ldrex(r0, r1), "e1910f9f ldrex r0, [r1]");
1455 COMPARE(strex(r0, r1, r2), "e1820f91 strex r0, r1, [r2]"); 1461 COMPARE(strex(r0, r1, r2), "e1820f91 strex r0, r1, [r2]");
1456 1462
1457 VERIFY_RUN(); 1463 VERIFY_RUN();
1458 } 1464 }
OLDNEW
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698