public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/37239]  New: peeling last iteration of a <= loop
@ 2008-08-26 11:35 bonzini at gnu dot org
  2008-08-26 11:37 ` [Bug tree-optimization/37239] " bonzini at gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: bonzini at gnu dot org @ 2008-08-26 11:35 UTC (permalink / raw)
  To: gcc-bugs

If the condition of the loop is tested within the loop with == or !=, it may be
beneficial to peel off the final iteration of the loop by changing the
condition to <.

This happens in the attached benchmark's heapsort function where

    while ((maxIdx += maxIdx) <= last) { 
        if (maxIdx != last && numbers[maxIdx] < numbers[maxIdx + 1]) maxIdx++;
        if (tmp >= numbers[maxIdx]) break;
        numbers[top] = numbers[maxIdx];
        top = maxIdx;
    }

can become

    while ((maxIdx += maxIdx) <= last) { 
        if (numbers[maxIdx] < numbers[maxIdx + 1]) maxIdx++;
        if (tmp >= numbers[maxIdx]) break;
        numbers[top] = numbers[maxIdx];
        top = maxIdx;
    }
    if (maxIdx == last && tmp < numbers[maxIdx]) {
        numbers[top] = numbers[maxIdx];
        top = maxIdx;
    }

enabling in turn if-conversion of the first branch.

Performance of the benchmark is (-O3)

    basic               2.990
    peeling only        2.730
    if-conversion only  2.290
    peel+if-convert     2.010   (faster than quicksort!!)

ICC does this optimization.


-- 
           Summary: peeling last iteration of a <= loop
           Product: gcc
           Version: 4.3.2
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: bonzini at gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37239


^ permalink raw reply	[flat|nested] 7+ messages in thread
[parent not found: <bug-37239-4@http.gcc.gnu.org/bugzilla/>]

end of thread, other threads:[~2023-12-11 22:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-26 11:35 [Bug tree-optimization/37239] New: peeling last iteration of a <= loop bonzini at gnu dot org
2008-08-26 11:37 ` [Bug tree-optimization/37239] " bonzini at gnu dot org
2008-08-27 11:59 ` rguenth at gcc dot gnu dot org
2008-08-27 12:09 ` bonzini at gnu dot org
2008-08-29  4:28 ` pinskia at gcc dot gnu dot org
     [not found] <bug-37239-4@http.gcc.gnu.org/bugzilla/>
2015-07-02 16:18 ` pinskia at gcc dot gnu.org
2023-12-11 22:24 ` pinskia at gcc dot gnu.org

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).