This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: adjust_stack variants?
- From: Jan Hubicka <jh at suse dot cz>
- To: Brett Boren <borenb at ebs330 dot eb dot uah dot edu>
- Cc: gcc at gnu dot org
- Date: Thu, 13 Jun 2002 17:38:37 +0200
- Subject: Re: adjust_stack variants?
- References: <Pine.GSO.4.05.10206131020220.23272-100000@ebs330>
> I'm working with inserting some additional instructions into the RTL
> stream and was wondering about the adjust_stack function. It would be
> really nice if there was an adjust_stack_after variant like the
> emit_*_insn_after variety. I'm having to go back and insert a function
> call into the RTL and need to adjust the stack after making that function
Inserting call into already generated RTL is dificult, if not
impossible. The function calling code is keeping a lot of information
about the context - what parts of outgoing argument area are occupied or
what is the current (miss) alignemnt of stack. This won't work once the
RTL generation has moved from the call site.
What exactly do you need the function for?
Honza
> call. It looks like the internals of the emit_insn_After are completely
> different from the adjust_stack function. Before I go off and start
> writing my own, can anybody tell me if there is already a way to do this?
>
> --
> Brett Boren
> ECE Graduate Research Assistant
> University of Alabama in Huntsville
>