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

Unified Diff: runtime/vm/constants_arm.h

Issue 23549013: Preserves callee-saved FPU registers on ARM (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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
Index: runtime/vm/constants_arm.h
===================================================================
--- runtime/vm/constants_arm.h (revision 27062)
+++ runtime/vm/constants_arm.h (working copy)
@@ -221,8 +221,8 @@
(1 << R8) | (1 << R9) | (1 << R10);
const int kAbiPreservedCpuRegCount = 7;
const QRegister kAbiFirstPreservedFpuReg = Q4;
-const QRegister kAbiLastPreservedFpuReg =
- static_cast<QRegister>(kNumberOfQRegisters - 1);
+const QRegister kAbiLastPreservedFpuReg = Q7;
+const int kAbiPreservedFpuRegCount = 4;
// CPU registers available to Dart allocator.
const RegList kDartAvailableCpuRegs =

Powered by Google App Engine
This is Rietveld 408576698