Re: Control Flow Graph

2006-11-15 Thread Diego Novillo
albino aiello wrote on 11/15/06 10:14: Thanks, but i want to use the .cfg file to construct directly a tree_cfg in C language using the TREE SSA libraries of gcc. There is no such thing as a tree ssa library. If you are adding a pass to GCC, then you already have the CFG at your disposal. I

Re: Control Flow Graph

2006-11-15 Thread albino aiello
Thanks, but i want to use the .cfg file to construct directly a tree_cfg in C language using the TREE SSA libraries of gcc. The doc-page is the follow http://people.redhat.com/dnovillo/pub/tree-ssa/doc/html/files.html. I'm not understand how to use this libraries to contstruct a tree-cfg to m

Re: Control Flow Graph

2006-11-15 Thread Diego Novillo
[EMAIL PROTECTED] wrote on 11/15/06 06:06: Hi all, i must use cfg library to build and manipulate a control flow graph. I have read more but i have not found an answer to my question: It is possible to build a cfg structure directly from a file .cfg ?? How i can building a cfg from a file?? Th