Related articles |
---|
Show functions in obj files? schroeder@ifn.ing.tu-bs.de (Dietmar Schroeder) (1996-08-30) |
Re: Show functions in obj files? danielv@CRT.UMontreal.CA (Daniel Villeneuve) (1996-08-31) |
Re: Show functions in obj files? rfg@monkeys.com (1996-09-15) |
From: | Daniel Villeneuve <danielv@CRT.UMontreal.CA> |
Newsgroups: | comp.compilers |
Date: | 31 Aug 1996 22:50:14 -0400 |
Organization: | Compilers Central |
References: | 96-08-101 |
Keywords: | linker, comment |
Dietmar Schroeder <schroeder@ifn.ing.tu-bs.de> writes:
> we are looking for a tool that could display all functions used in a
> c-program by examinating the gcc compiled obj files (inc. debug info).
Perhaps you can use `nm' (on our system `/bin/nm'), that lists all the
external references of a particular obj file. It works on libraries
and executables too.
Daniel
[Seems to me the trick is to try and guess what functions are actually used,
e.g. estimate which chunks of which file are what function, then do a
transitive closure, and wave hands like crazy to account for function
pointers. -John]
--
Return to the
comp.compilers page.
Search the
comp.compilers archives again.