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

Unified Diff: runtime/vm/assembler_ia32_test.cc

Issue 10875030: Add support for XMM registers in SSA code generation pipeline. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix a bug pointed out by Florian Created 8 years, 4 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 | « runtime/vm/assembler_ia32.cc ('k') | runtime/vm/assembler_macros_ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_ia32_test.cc
diff --git a/runtime/vm/assembler_ia32_test.cc b/runtime/vm/assembler_ia32_test.cc
index 0f23a171fea180b9001c7b16baeacc6ebdd22ed4..29e8ebfcda101c11e5ade7de1ec400b6a57be088 100644
--- a/runtime/vm/assembler_ia32_test.cc
+++ b/runtime/vm/assembler_ia32_test.cc
@@ -845,7 +845,19 @@ ASSEMBLER_TEST_GENERATE(DoubleFPMoves, assembler) {
__ movsd(XMM7, XMM6);
__ movl(Address(ESP, 0), Immediate(0));
__ movl(Address(ESP, kWordSize), Immediate(0));
+ __ movsd(XMM0, Address(ESP, 0));
__ movsd(Address(ESP, 0), XMM7);
+ __ movsd(XMM7, Address(ESP, 0));
+ __ movaps(XMM6, XMM7);
+ __ movaps(XMM5, XMM6);
+ __ movaps(XMM4, XMM5);
+ __ movaps(XMM3, XMM4);
+ __ movaps(XMM2, XMM3);
+ __ movaps(XMM1, XMM2);
+ __ movaps(XMM0, XMM1);
+ __ movl(Address(ESP, 0), Immediate(0));
+ __ movl(Address(ESP, kWordSize), Immediate(0));
+ __ movsd(Address(ESP, 0), XMM0);
__ fldl(Address(ESP, 0));
__ popl(EAX);
__ popl(EAX);
« no previous file with comments | « runtime/vm/assembler_ia32.cc ('k') | runtime/vm/assembler_macros_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698