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

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

Issue 1072343002: [x86] Introduce vandps/vandpd/vxorps/vxorpd. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-disasm-ia32.cc ('k') | test/unittests/compiler/ia32/instruction-selector-ia32-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-disasm-x64.cc
diff --git a/test/cctest/test-disasm-x64.cc b/test/cctest/test-disasm-x64.cc
index 072b3b8426148c60423cd7ace1eb6f258c2c0e46..bcfe507b25c4bfa755f4bf059c1c600efdeafb28 100644
--- a/test/cctest/test-disasm-x64.cc
+++ b/test/cctest/test-disasm-x64.cc
@@ -525,6 +525,16 @@ TEST(DisasmX64) {
__ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000));
__ vucomisd(xmm9, xmm1);
__ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981));
+
+ __ vandps(xmm0, xmm9, xmm2);
+ __ vandps(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000));
+ __ vxorps(xmm0, xmm1, xmm9);
+ __ vxorps(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000));
+
+ __ vandpd(xmm0, xmm9, xmm2);
+ __ vandpd(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000));
+ __ vxorpd(xmm0, xmm1, xmm9);
+ __ vxorpd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000));
}
}
« no previous file with comments | « test/cctest/test-disasm-ia32.cc ('k') | test/unittests/compiler/ia32/instruction-selector-ia32-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698