Arm Community
Site
Search
User
Site
Search
User
Support forums
Arm Development Studio forum
Safe to use r13-r15 as general register?
Jump...
Cancel
Locked
Locked
Replies
11 replies
Subscribers
119 subscribers
Views
8161 views
Users
0 members are here
Options
Share
More actions
Cancel
Related
How was your experience today?
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion
Safe to use r13-r15 as general register?
Yang Fang
over 12 years ago
Note: This was originally posted on 18th July 2011 at
http://forums.arm.com
Hello, I am writting a function, which involves complicated algorithm, I want to have a lot of general purpose registers to keep the routine speed. I have read some article that r13-r15 are special registers, but can be used as general purpose registers.
Can I do it like this
stmfd sp!, {r4-r15,lr}
:
:
ldmfd sp!, {r4-r15,pc}
Thank you very much!
Parents
Peter Harris
over 12 years ago
Note: This was originally posted on 19th July 2011 at
http://forums.arm.com
The called function is allowed to corrupt r0-r3, and r12. The caller must store to stack before the call, and load from stack after the call. Nothing automatic about it - these are real instructions emitted by the compiler.
In many cases these registers won't contain anything the caller cares about though, so it doesn't matter if they get corrupted by the called function.
Cancel
Vote up
0
Vote down
Cancel
Reply
Peter Harris
over 12 years ago
Note: This was originally posted on 19th July 2011 at
http://forums.arm.com
The called function is allowed to corrupt r0-r3, and r12. The caller must store to stack before the call, and load from stack after the call. Nothing automatic about it - these are real instructions emitted by the compiler.
In many cases these registers won't contain anything the caller cares about though, so it doesn't matter if they get corrupted by the called function.
Cancel
Vote up
0
Vote down
Cancel
Children
No data