RE: Enabling gcc optimization pass

2007-09-15 Thread Grigori Fursin
Hi, Actually, just saw your post, so wanted to say that it is possible with the new GCC-ICI framework. You can find more info here: http://gcc-ici.sourceforge.net There is no checking for pass dependencies and we are working on it now ... Hope it is still of any help ;), Grigori =

Re: Enabling gcc optimization pass

2007-07-26 Thread Manuel López-Ibáñez
On 26/07/07, Diego Novillo <[EMAIL PROTECTED]> wrote: > On 7/26/07 9:55 AM, Diego Novillo wrote: > > On 7/26/07 8:21 AM, Basile STARYNKEVITCH wrote: > > > >> So currently, the answer seems to be no. > > > > Right. It's a cool future feature, but so far nobody seems to be > > working on it. > > I h

Re: Enabling gcc optimization pass

2007-07-26 Thread Diego Novillo
On 7/26/07 9:55 AM, Diego Novillo wrote: > On 7/26/07 8:21 AM, Basile STARYNKEVITCH wrote: > >> So currently, the answer seems to be no. > > Right. It's a cool future feature, but so far nobody seems to be > working on it. I have to retract this. On IRC I was pointed to various efforts in the

Re: Enabling gcc optimization pass

2007-07-26 Thread Diego Novillo
On 7/26/07 8:21 AM, Basile STARYNKEVITCH wrote: > So currently, the answer seems to be no. Right. It's a cool future feature, but so far nobody seems to be working on it. Implementing the optimization pragmas at a function level should not be too hard, though we may need to tweak the callgraph

Re: Enabling gcc optimization pass

2007-07-26 Thread Rohit Arul Raj
On 7/26/07, Basile STARYNKEVITCH <[EMAIL PROTECTED]> wrote: Rohit Arul Raj wrote: > Hi all, > > I have 3 functions- fun1, fun2, fun3 in the same source file and i > want to enable one or any of the gcc optimization pass to code in fun2 > only, > > 1. Is it possible to implement this using functio

Re: Enabling gcc optimization pass

2007-07-26 Thread Basile STARYNKEVITCH
Rohit Arul Raj wrote: Hi all, I have 3 functions- fun1, fun2, fun3 in the same source file and i want to enable one or any of the gcc optimization pass to code in fun2 only, 1. Is it possible to implement this using function attributes or #pragms's? I believe that currently, tuning optimisat

RE: Enabling gcc optimization pass

2007-07-26 Thread Dave Korn
On 26 July 2007 08:30, Rohit Arul Raj wrote: > Hi all, > > I have 3 functions- fun1, fun2, fun3 in the same source file and i > want to enable one or any of the gcc optimization pass to code in fun2 > only, > > 1. Is it possible to implement this using function attributes or #pragms's? Nope.