The loop unrolling code assumes that one third of all volatile accesses can be possibly optimized away which is of course not true. This leads to excessive unrolling in some cases. The following tracks the number of stmts with side-effects as those are not eliminatable later and only assumes one third of the other stmts can be further optimized.
This causes some fallout in the testsuite where we rely on unrolling even when calls are involved. I have XFAILed g++.dg/warn/Warray-bounds-20.C but adjusted the others with a #pragma GCC unroll to mimic previous behavior and retain what the testcase was testing. I've also filed PR117671 for the case where the size estimation fails to honor the stmts we then remove by inserting __builtin_unreachable (). For gcc.dg/tree-ssa/cunroll-2.c the estimate that the code doesn't grow is clearly bogus and we have explicit code to reject unrolling for bodies containing calls so I've adjusted the testcase accordingly. Re-posted with testsuite adjustments (original from July). Bootstrapped and tested on x86_64-unknown-linux-gnu. OK? Thanks, Richard. PR tree-optimization/115825 * tree-ssa-loop-ivcanon.cc (loop_size::not_eliminatable_after_peeling): New. (loop_size::last_iteration_not_eliminatable_after_peeling): Likewise. (tree_estimate_loop_size): Count stmts with side-effects as not optimistically eliminatable. (estimated_unrolled_size): Compute the number of stmts that can be optimistically eliminated by followup transforms. (try_unroll_loop_completely): Adjust. * gcc.dg/tree-ssa/cunroll-17.c: New testcase. * gcc.dg/tree-ssa/cunroll-2.c: Adjust to not expect unrolling. * gcc.dg/pr94600-1.c: Force unrolling. * c-c++-common/ubsan/unreachable-3.c: Likewise. * g++.dg/warn/Warray-bounds-20.C: XFAIL cases we rely on unrolling loops created by new expressions and not inlined CTOR invocations. --- .../c-c++-common/ubsan/unreachable-3.c | 3 +- gcc/testsuite/g++.dg/warn/Warray-bounds-20.C | 6 ++-- gcc/testsuite/gcc.dg/pr94600-1.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/cunroll-17.c | 11 ++++++ gcc/testsuite/gcc.dg/tree-ssa/cunroll-2.c | 3 +- gcc/tree-ssa-loop-ivcanon.cc | 35 +++++++++++++++---- 6 files changed, 47 insertions(+), 12 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/cunroll-17.c diff --git a/gcc/testsuite/c-c++-common/ubsan/unreachable-3.c b/gcc/testsuite/c-c++-common/ubsan/unreachable-3.c index b7a0d1aa92b..8831a1fb187 100644 --- a/gcc/testsuite/c-c++-common/ubsan/unreachable-3.c +++ b/gcc/testsuite/c-c++-common/ubsan/unreachable-3.c @@ -14,8 +14,9 @@ struct snic { void snic_log_q_error(struct snic *snic) { unsigned int i; +#pragma GCC unroll 1 for (i = 0; i < snic->wq_count; i++) - ioread32(&snic->wq[i]->error_status); + ioread32(&snic->wq[i]->error_status); } /* { dg-final { scan-tree-dump "__builtin___ubsan_handle_builtin_unreachable" "optimized" } } */ diff --git a/gcc/testsuite/g++.dg/warn/Warray-bounds-20.C b/gcc/testsuite/g++.dg/warn/Warray-bounds-20.C index f4876d8a269..5fc55293074 100644 --- a/gcc/testsuite/g++.dg/warn/Warray-bounds-20.C +++ b/gcc/testsuite/g++.dg/warn/Warray-bounds-20.C @@ -53,8 +53,8 @@ void warn_derived_ctor_access_new_alloc () void warn_derived_ctor_access_new_array_decl () { - char b[sizeof (D1) * 2]; // { dg-message "at offset \\d+ into object 'b' of size 80" "LP64 note" { target lp64 } } - // { dg-message "at offset \\d+ into object 'b' of size 40" "LP64 note" { target ilp32 } .-1 } + char b[sizeof (D1) * 2]; // { dg-message "at offset \\d+ into object 'b' of size 80" "LP64 note" { target { lp64 } xfail { lp64 } } } + // { dg-message "at offset \\d+ into object 'b' of size 40" "LP64 note" { target { ilp32 } xfail { ilp32 } } .-1 } char *p = b; ++p; D1 *q = new (p) D1[2]; @@ -63,7 +63,7 @@ void warn_derived_ctor_access_new_array_decl () void warn_derived_ctor_access_new_array_alloc () { - char *p = new char[sizeof (D1) * 2]; // { dg-message "at offset \\d+ into object of size \\d+ allocated by '\[^\n\r]*operator new\[^\n\r]*" "note" } + char *p = new char[sizeof (D1) * 2]; // { dg-message "at offset \\d+ into object of size \\d+ allocated by '\[^\n\r]*operator new\[^\n\r]*" "note" { xfail *-*-* } } ++p; D1 *q = new (p) D1[2]; sink (q); diff --git a/gcc/testsuite/gcc.dg/pr94600-1.c b/gcc/testsuite/gcc.dg/pr94600-1.c index 149e4f35dbe..d5fb4d169c4 100644 --- a/gcc/testsuite/gcc.dg/pr94600-1.c +++ b/gcc/testsuite/gcc.dg/pr94600-1.c @@ -31,6 +31,7 @@ foo(void) { __SIZE_TYPE__ i; __SIZE_TYPE__ base = 0x000a0000; +#pragma GCC unroll 5 for (i = 0; i < (sizeof (a0) / sizeof ((a0)[0])); i++) { *(volatile t0 *) (base + 44 + i * 4) = a0[i]; } diff --git a/gcc/testsuite/gcc.dg/tree-ssa/cunroll-17.c b/gcc/testsuite/gcc.dg/tree-ssa/cunroll-17.c new file mode 100644 index 00000000000..282db99c883 --- /dev/null +++ b/gcc/testsuite/gcc.dg/tree-ssa/cunroll-17.c @@ -0,0 +1,11 @@ +/* { dg-do compile } */ +/* { dg-options "-Os -fdump-tree-optimized" } */ + +char volatile v; +void for16 (void) +{ + for (char i = 16; i > 0; i -= 2) + v = i; +} + +/* { dg-final { scan-tree-dump-times " ={v} " 1 "optimized" } } */ diff --git a/gcc/testsuite/gcc.dg/tree-ssa/cunroll-2.c b/gcc/testsuite/gcc.dg/tree-ssa/cunroll-2.c index b1d1c7d3d85..d1122e068c4 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/cunroll-2.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/cunroll-2.c @@ -13,5 +13,6 @@ test(int c) return; } } + /* We are not able to get rid of the final conditional because the loop has two exits. */ -/* { dg-final { scan-tree-dump "loop with 1 iterations completely unrolled" "cunroll"} } */ +/* { dg-final { scan-tree-dump "Not unrolling loop 1: contains call and code would grow" "cunroll"} } */ diff --git a/gcc/tree-ssa-loop-ivcanon.cc b/gcc/tree-ssa-loop-ivcanon.cc index 48b126dfcf8..5e155c8b038 100644 --- a/gcc/tree-ssa-loop-ivcanon.cc +++ b/gcc/tree-ssa-loop-ivcanon.cc @@ -140,10 +140,15 @@ struct loop_size variable where induction variable starts at known constant.) */ int eliminated_by_peeling; + /* Number of instructions that cannot be further optimized in the + peeled loop, for example volatile accesses. */ + int not_eliminatable_after_peeling; + /* Same statistics for last iteration of loop: it is smaller because instructions after exit are not executed. */ int last_iteration; int last_iteration_eliminated_by_peeling; + int last_iteration_not_eliminatable_after_peeling; /* If some IV computation will become constant. */ bool constant_iv; @@ -268,8 +273,10 @@ tree_estimate_loop_size (class loop *loop, edge exit, edge edge_to_cancel, size->overall = 0; size->eliminated_by_peeling = 0; + size->not_eliminatable_after_peeling = 0; size->last_iteration = 0; size->last_iteration_eliminated_by_peeling = 0; + size->last_iteration_not_eliminatable_after_peeling = 0; size->num_pure_calls_on_hot_path = 0; size->num_non_pure_calls_on_hot_path = 0; size->non_call_stmts_on_hot_path = 0; @@ -293,6 +300,7 @@ tree_estimate_loop_size (class loop *loop, edge exit, edge edge_to_cancel, { gimple *stmt = gsi_stmt (gsi); int num = estimate_num_insns (stmt, &eni_size_weights); + bool not_eliminatable_after_peeling = false; bool likely_eliminated = false; bool likely_eliminated_last = false; bool likely_eliminated_peeled = false; @@ -305,7 +313,9 @@ tree_estimate_loop_size (class loop *loop, edge exit, edge edge_to_cancel, /* Look for reasons why we might optimize this stmt away. */ - if (!gimple_has_side_effects (stmt)) + if (gimple_has_side_effects (stmt)) + not_eliminatable_after_peeling = true; + else { /* Exit conditional. */ if (exit && body[i] == exit->src @@ -378,11 +388,15 @@ tree_estimate_loop_size (class loop *loop, edge exit, edge edge_to_cancel, size->overall += num; if (likely_eliminated || likely_eliminated_peeled) size->eliminated_by_peeling += num; + if (not_eliminatable_after_peeling) + size->not_eliminatable_after_peeling += num; if (!after_exit) { size->last_iteration += num; if (likely_eliminated || likely_eliminated_last) size->last_iteration_eliminated_by_peeling += num; + if (not_eliminatable_after_peeling) + size->last_iteration_not_eliminatable_after_peeling += num; } if ((size->overall * 3 / 2 - size->eliminated_by_peeling - size->last_iteration_eliminated_by_peeling) > upper_bound) @@ -438,18 +452,24 @@ tree_estimate_loop_size (class loop *loop, edge exit, edge edge_to_cancel, It is (NUNROLL + 1) * size of loop body with taking into account the fact that in last copy everything after exit conditional is dead and that some instructions will be eliminated after - peeling. */ + peeling. Set *EST_ELIMINATED to the number of stmts that could be + optimistically eliminated by followup transforms. */ static unsigned HOST_WIDE_INT estimated_unrolled_size (struct loop_size *size, + unsigned HOST_WIDE_INT *est_eliminated, unsigned HOST_WIDE_INT nunroll) { HOST_WIDE_INT unr_insns = ((nunroll) * (HOST_WIDE_INT) (size->overall - size->eliminated_by_peeling)); - if (!nunroll) - unr_insns = 0; + HOST_WIDE_INT not_elim + = ((nunroll) * (HOST_WIDE_INT) size->not_eliminatable_after_peeling); unr_insns += size->last_iteration - size->last_iteration_eliminated_by_peeling; + not_elim += size->last_iteration_not_eliminatable_after_peeling; + /* Testcases rely on rounding up, so do not write as + (unr_insns - not_elim) / 3. */ + *est_eliminated = unr_insns - not_elim - (unr_insns - not_elim) * 2 / 3; return unr_insns; } @@ -830,8 +850,9 @@ try_unroll_loop_completely (class loop *loop, } unsigned HOST_WIDE_INT ninsns = size.overall; + unsigned HOST_WIDE_INT est_eliminated; unsigned HOST_WIDE_INT unr_insns - = estimated_unrolled_size (&size, n_unroll); + = estimated_unrolled_size (&size, &est_eliminated, n_unroll); if (dump_file && (dump_flags & TDF_DETAILS)) { fprintf (dump_file, " Loop size: %d\n", (int) ninsns); @@ -843,7 +864,7 @@ try_unroll_loop_completely (class loop *loop, cautious on guessing if the unrolling is going to be profitable. Move from estimated_unrolled_size to unroll small loops. */ - if (unr_insns * 2 / 3 + if (unr_insns - est_eliminated /* If there is IV variable that will become constant, we save one instruction in the loop prologue we do not account otherwise. */ @@ -920,7 +941,7 @@ try_unroll_loop_completely (class loop *loop, 2) Big loop after completely unroll may not be vectorized by BB vectorizer. */ else if ((cunrolli && !loop->inner - ? unr_insns : unr_insns * 2 / 3) + ? unr_insns : unr_insns - est_eliminated) > (unsigned) param_max_completely_peeled_insns) { if (dump_file && (dump_flags & TDF_DETAILS)) -- 2.43.0