Re: Marking nodes as addressable

2013-02-08 Thread Matt Davis
On Fri, Feb 8, 2013 at 7:20 PM, Richard Biener wrote: > On Fri, Feb 8, 2013 at 2:40 AM, Matt Davis wrote: >> I have a GIMPLE_CALL statement and I want to mark the left-hand-side >> value as being addressable (mark_addressable()). I am trying to force >> the result to be stored on the stack, and

Re: Marking nodes as addressable

2013-02-08 Thread Richard Biener
On Fri, Feb 8, 2013 at 2:40 AM, Matt Davis wrote: > I have a GIMPLE_CALL statement and I want to mark the left-hand-side > value as being addressable (mark_addressable()). I am trying to force > the result to be stored on the stack, and not in a register. I know > the return of a call on an 64bi

Marking nodes as addressable

2013-02-07 Thread Matt Davis
I have a GIMPLE_CALL statement and I want to mark the left-hand-side value as being addressable (mark_addressable()). I am trying to force the result to be stored on the stack, and not in a register. I know the return of a call on an 64bit x86 is passed back to the caller in the rax register. I