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

Unified Diff: test/cctest/test-disasm-ia32.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 | « src/x64/disasm-x64.cc ('k') | test/cctest/test-disasm-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-disasm-ia32.cc
diff --git a/test/cctest/test-disasm-ia32.cc b/test/cctest/test-disasm-ia32.cc
index 52df2fd039b5b82c3dcd894a75ee6389625fd82f..aeaa99538bbfee708099ea913988995d16150c0a 100644
--- a/test/cctest/test-disasm-ia32.cc
+++ b/test/cctest/test-disasm-ia32.cc
@@ -525,6 +525,16 @@ TEST(DisasmIa320) {
__ vminss(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
__ vmaxss(xmm0, xmm1, xmm2);
__ vmaxss(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
+
+ __ vandps(xmm0, xmm1, xmm2);
+ __ vandps(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
+ __ vxorps(xmm0, xmm1, xmm2);
+ __ vxorps(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
+
+ __ vandpd(xmm0, xmm1, xmm2);
+ __ vandpd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
+ __ vxorpd(xmm0, xmm1, xmm2);
+ __ vxorpd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
}
}
« no previous file with comments | « src/x64/disasm-x64.cc ('k') | test/cctest/test-disasm-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698