Tagged Questions
3
votes
1answer
133 views
Optimizing used registers when using inline ARM assembly in GCC
I want to write some inline ARM assembly in my C code. For this code, I need to use a register or two more than just the ones declared as inputs and outputs to the function. I know how to use the ...
2
votes
2answers
831 views
Callee save with the caller passing the used registers?
In compiler design, why instead of having a caller or callee register saving arrangement, couldn't the caller pass its list of used registers (that it would push in case of a caller saving ...