Re: how to obtain SSA form

2007-03-27 Thread Paolo Bonzini
Andrea Callia D'Iddio wrote: > I looked for "into" and "ssa" in passes.c, but I've not found > anything. "into" does not give much indeed. But ssa should point you to pass_build_ssa and pass_del_ssa, which should reveal a lot. > Also I tried with options -fdump-tree-ssa and -O1 but, when > my pa

Re: how to obtain SSA form

2007-03-27 Thread Andrea Callia D'Iddio
I looked for "into" and "ssa" in passes.c, but I've not found anything. Also I tried with options -fdump-tree-ssa and -O1 but, when my pass is executed, code is only in GIMPLE form (in this last case a file with code in SSA form is written, but I don't need a file, I'd like that basic blocks conta

Re: how to obtain SSA form

2007-03-26 Thread Steven Bosscher
On 3/26/07, Andrea Callia D'Iddio <[EMAIL PROTECTED]> wrote: I'm trying to make some optimizations in gcc, and I need to manipulate control flow graph when code is translated in SSA form. I wrote optimization code, but I noticed that when my code is executed the code isn't in SSA form, it's only

how to obtain SSA form

2007-03-26 Thread Andrea Callia D'Iddio
hi all, I'm trying to make some optimizations in gcc, and I need to manipulate control flow graph when code is translated in SSA form. I wrote optimization code, but I noticed that when my code is executed the code isn't in SSA form, it's only in GIMPLE form. How can I obtain the SSA form to appl