public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* RE: Is there Call graph in GCC ,another question
@ 2004-09-16 18:27 Ramadass, Ramanathan
  0 siblings, 0 replies; 6+ messages in thread
From: Ramadass, Ramanathan @ 2004-09-16 18:27 UTC (permalink / raw)
  To: webman.li, GCC HELP

FYI,

Here is the website: http://sourcenav.sourceforge.net/index.html

HTH
Ram 

-----Original Message-----
From: Ramadass, Ramanathan 
Sent: Thursday, September 16, 2004 10:04 AM
To: webman.li; GCC HELP
Subject: RE: Is there Call graph in GCC ,another question


You might want to try "Source Navigator". It is freeware and quite good. Its "referred by" and "refers to" feature(with configurable depth) will give you what you are looking for.

HTH
Ram

-----Original Message-----
From: webman.li [mailto:webman.li@utstar.com]
Sent: Thursday, September 16, 2004 3:23 AM
To: Eljay Love-Jensen; Virender Kashyap; GCC HELP
Subject: Is there Call graph in GCC ,another question


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 17:03 Ramadass, Ramanathan
  0 siblings, 0 replies; 6+ messages in thread
From: Ramadass, Ramanathan @ 2004-09-16 17:03 UTC (permalink / raw)
  To: webman.li, GCC HELP

You might want to try "Source Navigator". It is freeware and quite good. Its "referred by" and "refers to" feature(with configurable depth) will give you what you are looking for.

HTH
Ram

-----Original Message-----
From: webman.li [mailto:webman.li@utstar.com]
Sent: Thursday, September 16, 2004 3:23 AM
To: Eljay Love-Jensen; Virender Kashyap; GCC HELP
Subject: Is there Call graph in GCC ,another question


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: 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

* 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: 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

* 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

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-16 18:27 Is there Call graph in GCC ,another question Ramadass, Ramanathan
  -- strict thread matches above, loose matches on Subject: below --
2004-09-16 17:03 Ramadass, Ramanathan
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).