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

Unified Diff: test/cctest/test-disasm-arm.cc

Issue 2523933002: [Turbofan] Add ARM support for simd128 moves and swaps. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-disasm-arm.cc
diff --git a/test/cctest/test-disasm-arm.cc b/test/cctest/test-disasm-arm.cc
index 1c6d360d7f46d8bcd3226c13ac9e26ed48f92991..7b2dcd4207677ef0d063e99b825149a78a461963 100644
--- a/test/cctest/test-disasm-arm.cc
+++ b/test/cctest/test-disasm-arm.cc
@@ -936,10 +936,26 @@ TEST(Neon) {
"f3886a11 vmovl.u8 q3, d1");
COMPARE(vmovl(NeonU8, q4, d2),
"f3888a12 vmovl.u8 q4, d2");
+ COMPARE(vmov(q0, q15),
+ "f22e01fe vmov q0, q15");
+ COMPARE(vmov(q8, q9),
+ "f26201f2 vmov q8, q9");
COMPARE(vswp(d0, d31),
"f3b2002f vswp d0, d31");
COMPARE(vswp(d16, d14),
"f3f2000e vswp d16, d14");
+ COMPARE(vswp(q0, q15),
+ "f3b2006e vswp q0, q15");
+ COMPARE(vswp(q8, q9),
+ "f3f20062 vswp q8, q9");
+ COMPARE(veor(d0, d1, d2),
+ "f3010112 veor d0, d1, d2");
+ COMPARE(veor(d0, d30, d31),
+ "f30e01bf veor d0, d30, d31");
+ COMPARE(veor(q0, q1, q2),
+ "f3020154 veor q0, q1, q2");
+ COMPARE(veor(q15, q0, q8),
+ "f340e170 veor q15, q0, q8");
}
VERIFY_RUN();
« 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