Re: entry point of gimplification

2010-01-05 Thread Diego Novillo
On 1/4/10 14:57 , sandeep soni wrote: I want to know what is the entry point to the gimplification pass? and given a function body which are the functions in the gcc source that convert the body into equivalent gimple statements? This is controlled from the callgraph manager. You need

Re: entry point of gimplification

2010-01-05 Thread sandeep soni
On Tue, Jan 5, 2010 at 8:44 PM, Diego Novillo dnovi...@google.com wrote: On 1/4/10 14:57 , sandeep soni wrote: I want to know what is the entry point to the gimplification pass? and given a function body which are the functions in the gcc source that convert the body into equivalent gimple

entry point of gimplification

2010-01-04 Thread sandeep soni
Hi, I have been trying to understand the gcc source code and am interested in customizing gcc to support speculative parallelization of conditional branching and loop instructions instructions.I am considering gimple as input. I want to know what is the entry point to the gimplification pass