Displaying 3 results from an estimated 3 matches for "getcalleesavespillslot".
Did you mean:
getcalleesavespillslots
2006 Aug 16
1
[LLVMdev] problems defining the stack layout
...OfLocalArea=0 and just ask for LR to be spilled to a specific
> location (e.g. see the PPC backend).
The problem was that I was generating hard coded loads and stores for
the link register. I was trying to shift the local variables, but this
isn't the correct solution. I have now implemented
getCalleeSaveSpillSlots, so that the link register is treated like any
other callee save register.
Thanks,
Rafael
2006 Aug 16
0
[LLVMdev] problems defining the stack layout
On Tue, 15 Aug 2006, [UTF-8] Rafael Esp?ndola wrote:
> I am having some problems defining the stack layout on ARM. It should look
> like
>
> Incoming vars
> -----------------
> Saved Link Register
> -----------------
> Local vars
> -----------------
>
> The problem is that the the first local variable is being assigned to
> the same location as the link
2006 Aug 15
2
[LLVMdev] problems defining the stack layout
I am having some problems defining the stack layout on ARM. It should look like
Incoming vars
-----------------
Saved Link Register
-----------------
Local vars
-----------------
The problem is that the the first local variable is being assigned to
the same location as the link register. I tried to use the
OffsetOfLocalArea option, but do to alignment restrictions this
increased the stack size.