Re: Root Node of AST

2005-03-15 Thread James E Wilson
Rajesh Babu wrote: I am working with gcc-3.3.3, and I want to insert my module after construction of AST and before RTL generation. gcc-3.3 is not interesting for work like this. This stuff has already been obsoleted in current gcc sources. But if you insist on using out dated sources, look at

Re: Root Node of AST

2005-03-12 Thread Rajesh Babu
do on the intermediate nodes of AST. Can someone tell me where I can find the root node of AST and the place where the construction of AST finishes in GCC source. If you are working in mainline or GCC 4.0, start with tree-optimize.c:init_tree_optimization_passes. There's documentation

Re: Root Node of AST

2005-03-12 Thread Diego Novillo
On 03/12/05 08:14, Rajesh Babu wrote: I want the root node of the AST built by gcc, so that I can do the manipulations I want to do on the intermediate nodes of AST. Can someone tell me where I can find the root node of AST and the place where the construction of AST finishes in GCC source

Root Node of AST

2005-03-12 Thread Rajesh Babu
Hi, I want the root node of the AST built by gcc, so that I can do the manipulations I want to do on the intermediate nodes of AST. Can someone tell me where I can find the root node of AST and the place where the construction of AST finishes in GCC source. Thanks in Advance Rajesh Babu