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

Unified Diff: runtime/vm/constants_arm.h

Issue 554033005: Allows allocation of LR on ARM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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
« no previous file with comments | « runtime/vm/assembler_arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/constants_arm.h
===================================================================
--- runtime/vm/constants_arm.h (revision 40036)
+++ runtime/vm/constants_arm.h (working copy)
@@ -37,14 +37,14 @@
R6 = 6,
R7 = 7,
R8 = 8,
- kLastFreeCpuRegister = 8,
- R9 = 9,
- R10 = 10,
- R11 = 11,
- R12 = 12,
- R13 = 13,
- R14 = 14,
- R15 = 15,
+ R9 = 9, // CTX
+ R10 = 10, // PP
+ R11 = 11, // FP
+ R12 = 12, // IP
+ R13 = 13, // SP
+ R14 = 14, // LR
+ kLastFreeCpuRegister = 14,
+ R15 = 15, // PC
FP = 11,
IP = 12,
SP = 13,
« no previous file with comments | « runtime/vm/assembler_arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698