Re: [PATCH][RFC] Gimplify "into SSA"

2016-05-03 Thread Richard Biener
On Tue, 3 May 2016, Richard Biener wrote: > On Wed, 27 Apr 2016, Jeff Law wrote: > > > On 04/21/2016 06:55 AM, Richard Biener wrote: > > > > > > The following patch makes us not allocate decls but SSA names for > > > temporaries required during gimplification. This is basically the > > > same t

Re: [PATCH][RFC] Gimplify "into SSA"

2016-05-03 Thread Richard Biener
On Wed, 27 Apr 2016, Jeff Law wrote: > On 04/21/2016 06:55 AM, Richard Biener wrote: > > > > The following patch makes us not allocate decls but SSA names for > > temporaries required during gimplification. This is basically the > > same thing as we do when calling the gimplifier on GENERIC expr

Re: [PATCH][RFC] Gimplify "into SSA"

2016-04-27 Thread Jeff Law
On 04/21/2016 06:55 AM, Richard Biener wrote: The following patch makes us not allocate decls but SSA names for temporaries required during gimplification. This is basically the same thing as we do when calling the gimplifier on GENERIC expressions from optimization passes (when we are already

[PATCH][RFC] Gimplify "into SSA"

2016-04-21 Thread Richard Biener
The following patch makes us not allocate decls but SSA names for temporaries required during gimplification. This is basically the same thing as we do when calling the gimplifier on GENERIC expressions from optimization passes (when we are already in SSA). There are two benefits of doing this.