public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Call graph in GCC
@ 2004-09-14 12:22 Virender Kashyap
  2004-09-14 12:35 ` Eljay Love-Jensen
  0 siblings, 1 reply; 6+ messages in thread
From: Virender Kashyap @ 2004-09-14 12:22 UTC (permalink / raw)
  To: GCC HELP

hi,
     Is it possible to obtain call graph in GCC. Has any work been done in 
extending interprocedural DFA in gcc.

Regards.
Virender
----------------------------------------------
Virender Kashyap
Senior Undergraduate Student
IIT Bombay- Mumbai-India.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Call graph in GCC
  2004-09-14 12:22 Call graph in GCC Virender Kashyap
@ 2004-09-14 12:35 ` Eljay Love-Jensen
  2004-09-16 10:22   ` Is there Call graph in GCC ,another question webman.li
  0 siblings, 1 reply; 6+ messages in thread
From: Eljay Love-Jensen @ 2004-09-14 12:35 UTC (permalink / raw)
  To: Virender Kashyap, GCC HELP

Hi Virender,

Google:  GCC "call graph"

http://www.ida.liu.se/~vaden/cgdi/

HTH,
--Eljay

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Is there Call graph in GCC ,another question
  2004-09-14 12:35 ` Eljay Love-Jensen
@ 2004-09-16 10:22   ` webman.li
  2004-09-16 11:41     ` Eljay Love-Jensen
                       ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: webman.li @ 2004-09-16 10:22 UTC (permalink / raw)
  To: Eljay Love-Jensen, Virender Kashyap, GCC HELP

hi,
It is fine.
I have anohter question:    Is there a tool that can generate call graph from source code of a program,without running the program?

thanks

----- Original Message ----- 
From: "Eljay Love-Jensen" <eljay@adobe.com>
To: "Virender Kashyap" <virenk@cse.iitb.ac.in>; "GCC HELP" <gcc-help@gcc.gnu.org>
Sent: Tuesday, September 14, 2004 8:35 PM
Subject: Re: Call graph in GCC


> Hi Virender,
> 
> Google:  GCC "call graph"
> 
> http://www.ida.liu.se/~vaden/cgdi/
> 
> HTH,
> --Eljay
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Is there Call graph in GCC ,another question
  2004-09-16 10:22   ` Is there Call graph in GCC ,another question webman.li
@ 2004-09-16 11:41     ` Eljay Love-Jensen
  2004-09-16 11:53     ` Ken Foskey
  2004-09-16 14:38     ` Muthukumar Ratty
  2 siblings, 0 replies; 6+ messages in thread
From: Eljay Love-Jensen @ 2004-09-16 11:41 UTC (permalink / raw)
  To: webman.li, Virender Kashyap, GCC HELP

Hi,

 >Is there a tool that can generate call graph from source code of a 
program,without running the program?

CDOC Professional from Software Blacksmiths
http://www.swbs.com/

HTH,
--Eljay

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Is there Call graph in GCC ,another question
  2004-09-16 10:22   ` Is there Call graph in GCC ,another question webman.li
  2004-09-16 11:41     ` Eljay Love-Jensen
@ 2004-09-16 11:53     ` Ken Foskey
  2004-09-16 14:38     ` Muthukumar Ratty
  2 siblings, 0 replies; 6+ messages in thread
From: Ken Foskey @ 2004-09-16 11:53 UTC (permalink / raw)
  To: webman.li; +Cc: gcc help

On Thu, 2004-09-16 at 20:22, webman.li wrote:
> hi,
> It is fine.
> I have another question:    Is there a tool that can generate call graph from source code of a program,without running the program?

The following creates a call graph from C code, C++ not supported.  Look
them up in google because I cannot remember the details myself.

cxref -xref-func -I../include afpprtx.c -Nxref

xrefgraph.py -n xref.function > temp.dot


dot -Tps temp.dot > $DOTPREF.ps


-- 
Thanks
KenF
OpenOffice.org developer

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Is there Call graph in GCC ,another question
  2004-09-16 10:22   ` Is there Call graph in GCC ,another question webman.li
  2004-09-16 11:41     ` Eljay Love-Jensen
  2004-09-16 11:53     ` Ken Foskey
@ 2004-09-16 14:38     ` Muthukumar Ratty
  2 siblings, 0 replies; 6+ messages in thread
From: Muthukumar Ratty @ 2004-09-16 14:38 UTC (permalink / raw)
  To: webman.li; +Cc: Eljay Love-Jensen, Virender Kashyap, GCC HELP


http://www.skynet.ie/~mel/projects/codeviz/


On Thu, 16 Sep 2004, webman.li wrote:

> hi,
> It is fine.
> I have anohter question:    Is there a tool that can generate call graph from source code of a program,without running the program?
>
> thanks
>
> ----- Original Message -----
> From: "Eljay Love-Jensen" <eljay@adobe.com>
> To: "Virender Kashyap" <virenk@cse.iitb.ac.in>; "GCC HELP" <gcc-help@gcc.gnu.org>
> Sent: Tuesday, September 14, 2004 8:35 PM
> Subject: Re: Call graph in GCC
>
>
> > Hi Virender,
> >
> > Google:  GCC "call graph"
> >
> > http://www.ida.liu.se/~vaden/cgdi/
> >
> > HTH,
> > --Eljay
> >
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-09-16 14:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-14 12:22 Call graph in GCC Virender Kashyap
2004-09-14 12:35 ` Eljay Love-Jensen
2004-09-16 10:22   ` Is there Call graph in GCC ,another question webman.li
2004-09-16 11:41     ` Eljay Love-Jensen
2004-09-16 11:53     ` Ken Foskey
2004-09-16 14:38     ` Muthukumar Ratty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).