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

Unified Diff: dart/runtime/vm/flow_graph_compiler_arm64.cc

Issue 828433005: Version 1.8.4 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.8/
Patch Set: Created 5 years, 11 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 | « dart/runtime/vm/flow_graph_compiler_arm.cc ('k') | dart/tools/VERSION » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/flow_graph_compiler_arm64.cc
===================================================================
--- dart/runtime/vm/flow_graph_compiler_arm64.cc (revision 42727)
+++ dart/runtime/vm/flow_graph_compiler_arm64.cc (working copy)
@@ -1670,9 +1670,9 @@
} else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
const VRegister dst = destination.fpu_reg();
const VRegister src = source.fpu_reg();
- __ fmovdd(VTMP, src);
- __ fmovdd(src, dst);
- __ fmovdd(dst, VTMP);
+ __ vmov(VTMP, src);
+ __ vmov(src, dst);
+ __ vmov(dst, VTMP);
} else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
ASSERT(destination.IsDoubleStackSlot() ||
destination.IsQuadStackSlot() ||
@@ -1696,7 +1696,7 @@
} else {
__ LoadQFromOffset(VTMP, base_reg, slot_offset, PP);
__ StoreQToOffset(reg, base_reg, slot_offset, PP);
- __ fmovdd(reg, VTMP);
+ __ vmov(reg, VTMP);
}
} else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
const intptr_t source_offset = source.ToStackSlotOffset();
« no previous file with comments | « dart/runtime/vm/flow_graph_compiler_arm.cc ('k') | dart/tools/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698