Re: GIMPLE / induction variable analysis

2006-06-10 Thread Jay L.T. Cornwall
Hi, Thanks for your replies, scalar evolution is what I was looking for! -- Jay L.T. Cornwall, http://www.esuna.co.uk/~jay/ PhD Student Imperial College London

Re: GIMPLE / induction variable analysis

2006-06-10 Thread Zdenek Dvorak
Hello, > I'm looking for an induction variable analysis which will operate at the > GIMPLE level. So far, I've found... > > loop-iv.c -- RTL induction variable analysis > tree-ssa-loop-ivopts.c -- GIMPLE induction variable analysis no, tree-level induction variable a

Re: GIMPLE / induction variable analysis

2006-06-09 Thread Daniel Berlin
Jay L. T. Cornwall wrote: > Hi, > > I'm looking for an induction variable analysis which will operate at the > GIMPLE level. So far, I've found... > > loop-iv.c -- RTL induction variable analysis > tree-ssa-loop-ivopts.c -- GIMPLE induction variable analysis &

GIMPLE / induction variable analysis

2006-06-09 Thread Jay L. T. Cornwall
Hi, I'm looking for an induction variable analysis which will operate at the GIMPLE level. So far, I've found... loop-iv.c -- RTL induction variable analysis tree-ssa-loop-ivopts.c -- GIMPLE induction variable analysis The latter appears to be the right choice but nearly