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