Re: [EXT] Re: RFC on a new optimization

2019-07-02 Thread Gary Oblock
On 7/2/19 2:45 AM, Richard Biener wrote: > External Email > > -- > On Mon, Jul 1, 2019 at 11:58 PM Gary Oblock wrote: >> I've been looking at trying to optimize the performance of code for >> programs that use functions like

Re: RFC on a new optimization

2019-07-02 Thread Martin Jambor
Hi, On Tue, Jul 02 2019, Richard Biener wrote: > On Mon, Jul 1, 2019 at 11:58 PM Gary Oblock wrote: >> >> I've been looking at trying to optimize the performance of code for >> programs that use functions like qsort where a function is passed the >> name of a function and some constant

Re: RFC on a new optimization

2019-07-02 Thread Richard Biener
On Mon, Jul 1, 2019 at 11:58 PM Gary Oblock wrote: > > I've been looking at trying to optimize the performance of code for > programs that use functions like qsort where a function is passed the > name of a function and some constant parameter(s). > > The function qsort itself is an excellent

Re: [EXT] Re: RFC on a new optimization

2019-07-01 Thread Jeff Law
On 7/1/19 5:01 PM, Gary Oblock wrote: > On 7/1/19 3:08 PM, Jeff Law wrote: >> External Email >> >> -- >> On 7/1/19 3:58 PM, Gary Oblock wrote: >>> I've been looking at trying to optimize the performance of code for >>> programs

Re: [EXT] Re: RFC on a new optimization

2019-07-01 Thread Gary Oblock
On 7/1/19 3:08 PM, Jeff Law wrote: > External Email > > -- > On 7/1/19 3:58 PM, Gary Oblock wrote: >> I've been looking at trying to optimize the performance of code for >> programs that use functions like qsort where a function

Re: RFC on a new optimization

2019-07-01 Thread Jeff Law
On 7/1/19 3:58 PM, Gary Oblock wrote: > I've been looking at trying to optimize the performance of code for > programs that use functions like qsort where a function is passed the > name of a function and some constant parameter(s). > > The function qsort itself is an excellent example of what

RFC on a new optimization

2019-07-01 Thread Gary Oblock
I've been looking at trying to optimize the performance of code for programs that use functions like qsort where a function is passed the name of a function and some constant parameter(s). The function qsort itself is an excellent example of what I'm trying to show what I want to do, except for