[Dwarf-Discuss] Fw: Extending calling convention information in DWARF output for x86

Roger Cruz roger_r_cruz@yahoo.com
Wed Jun 6 22:39:55 GMT 2012


Thanks Michael.? So it sounds like DWARF won't help me in determining how a called function should (or should not) clean up the stack and also if I want to determine the calling convention, I would have to modify GCC itself to produce those user extensions.

Roger



________________________________
 From: Michael Eager <eager at eagerm.com>
To: Roger Cruz <roger_r_cruz at yahoo.com> 
Cc: "gcc at gcc.gnu.org" <gcc at gcc.gnu.org>; "Dwarf-Discuss at lists.dwarfstd.org" <Dwarf-Discuss at lists.dwarfstd.org> 
Sent: Wednesday, June 6, 2012 1:27 PM
Subject: Re: Fw: Extending calling convention information in DWARF output for x86
 
On 06/06/2012 09:28 AM, Roger Cruz wrote:
> Hi Michael,
> 
> Thanks for replying to my questions.
> 
> What I like to obtain somehow is the calling convention of each routine so
> I can tell who is responsible for cleaning off the stack.? Two calling
> conventions of interest to me are: _stdcall and _cdecl which deal with the
> arguments in a slightly different way.? With _cdecl, the default calling
> convention for C and C++ programs, the calling function is responsible for
> cleaning off the stack (ie, adjusting SP by the number of bytes that were
> pushed onto the stack by the caller).? With _stdcall, it is the called
> function that is responsible for cleaning up the stack.? So I need to
> know the calling convention to know who is responsible for cleaning up
> the stack and by how many bytes.? In reality, I just need to know how
> much to move the SP after one of these functions is executed (emulated),
> the calling convention just helped detect which functions would have to
> have their stack pointer manipulated.

Usually, syntactic tags like "_stdcall" or "_cdecl" are represented by
an attribute in the appropriate (in this case, DW_TAG_subprogram) DIE.
This can be used by the debugger to print out the tag as well as do
whatever different semantic processing may be needed.

You might add attributes for "_stdcall" or "_cdecl" as user extensions.

> Now, you say that DWARF may already give me enough information to know
> how to unwind the stack.? Given what I have described here, what fields
> in DWARF can I use to determine when and by how much to manipulate the
> stack pointer?? Here is an example of the DWARF information I have available
> for each of the two types of calling convention:

The DWARF Call Frame Information (CFI) specified in Section 6.4 describes
how to unwind the stack from any arbitrary location in a function to
find the previous stack frame.? The CFI can be used to determine the value
of the stack pointer at the entry to the function.

The CFI is designed to track the (real or virtual) frame pointer, not
the stack pointer, so it will not tell you how the calling function modifies
the stack before or after the call.

-- Michael Eager??? eager at eagercon.com
1960 Park Blvd., Palo Alto, CA 94306? 650-325-8077
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.dwarfstd.org/private.cgi/dwarf-discuss-dwarfstd.org/attachments/20120606/6d560007/attachment.htm>



More information about the Dwarf-discuss mailing list