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

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

Issue 1413013003: [x64] Implement vcvtqsi2sd AVX instruction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/macro-assembler-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-assembler-x64.cc
diff --git a/test/cctest/test-assembler-x64.cc b/test/cctest/test-assembler-x64.cc
index 9bbb3813ce750dfc520bc27d66845d956c5699d9..347b95e32e572ae8ccea2050a8dea22bc665ba0d 100644
--- a/test/cctest/test-assembler-x64.cc
+++ b/test/cctest/test-assembler-x64.cc
@@ -1494,12 +1494,27 @@ TEST(AssemblerX64AVX_sd) {
__ vucomisd(xmm5, xmm6);
__ j(not_equal, &exit);
+ // Test vcvtlsi2sd
+ __ movl(rax, Immediate(17));
__ movl(rdx, Immediate(6));
+ __ movq(rcx, V8_UINT64_C(0x4018000000000000)); // 6.0
+ __ vmovq(xmm5, rcx);
__ vcvtlsi2sd(xmm6, xmm6, rdx);
- __ movl(Operand(rsp, 0), Immediate(5));
+ __ vucomisd(xmm5, xmm6);
+ __ j(not_equal, &exit);
+ __ movl(Operand(rsp, 0), rdx);
__ vcvtlsi2sd(xmm7, xmm7, Operand(rsp, 0));
- __ vsubsd(xmm7, xmm6, xmm7); // xmm7 is 1.0
- __ vmulsd(xmm1, xmm1, xmm7);
+ __ vucomisd(xmm5, xmm6);
+ __ j(not_equal, &exit);
+
+ // Test vcvtqsi2sd
+ __ movl(rax, Immediate(18));
+ __ movq(rdx, V8_UINT64_C(0x2000000000000000)); // 2 << 0x3c
+ __ movq(rcx, V8_UINT64_C(0x43c0000000000000));
+ __ vmovq(xmm5, rcx);
+ __ vcvtqsi2sd(xmm6, xmm6, rdx);
+ __ vucomisd(xmm5, xmm6);
+ __ j(not_equal, &exit);
__ movq(rdx, V8_INT64_C(0x3ff0000000000000)); // 1.0
__ vmovq(xmm7, rdx);
« no previous file with comments | « src/x64/macro-assembler-x64.cc ('k') | test/cctest/test-disasm-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698