public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* RFC on a new optimization
@ 2019-07-01 21:58 Gary Oblock
  2019-07-01 22:08 ` Jeff Law
  2019-07-02  9:46 ` Richard Biener
  0 siblings, 2 replies; 7+ messages in thread
From: Gary Oblock @ 2019-07-01 21:58 UTC (permalink / raw)
  To: gcc

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 being in a library, so please ignore
that while I proceed assuming that that qsort is not in a library.  In
qsort the user passes in a size of the array elements and comparison
function name in addition to the location of the array to be sorted. I
noticed that for a given call site that the first two are always the
same so why not create a specialized version of qsort that eliminates
them and internally uses a constant value for the size parameter and
does a direct call instead of an indirect call. The later lets the
comparison function code be inlined.

This seems to me to be a very useful optimization where heavy use is
made of this programming idiom. I saw a 30%+ overall improvement when
I specialized a function like this by hand in an application.

My question is does anything inside gcc do something similar? I don't
want to reinvent the wheel and I want to do something that plays
nicely with the rest of gcc so it makes it into real world. Note, I
should mention that I'm an experienced compiler developed and I'm
planning on adding this optimization unless it's obvious from the
ensuing discussion that either it's a bad idea or that it's a matter
of simply tweaking gcc a bit to get this optimization to occur.

Thanks,

Gary Oblock

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-07-02 18:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-01 21:58 RFC on a new optimization Gary Oblock
2019-07-01 22:08 ` Jeff Law
2019-07-01 23:02   ` [EXT] " Gary Oblock
2019-07-01 23:05     ` Jeff Law
2019-07-02  9:46 ` Richard Biener
2019-07-02 10:02   ` Martin Jambor
2019-07-02 18:04   ` [EXT] " Gary Oblock

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).