On Mon, 26 Aug 2024, Aldy Hernandez wrote: > [I'm slowly coming up to speed here after my absence, so please bear with > me...] > > I suspect there's a few things going on here, both in the forward and > the backwards threader. For the forward threader, you mention some > very good points in the PR. First, there's unnecessary recursion in > simplify_control_stmt_condition_1 that ranger should be able to handle > on its own. Secondly, since we're doing a DOM walk, we should be able > to re-use most of the path_ranger's cache instead of having to reset > all of it on every path, especially when we're just adding empty > blocks. I can investigate both of these things. > > The end game here is to get rid of the forward threader, so we should > really find out why the backwards threader is choking so bad. I > suspect whatever the case is, will affect both threaders. I thought > you had added some limits in the search space last cycle? Are they > not being triggered?
They trigger, but they assume that the work ranger does computing ranges on a path is O(path-size) but it seems it's rather O(function-size) as it happily ventures outside of the path and for that parts (obviously(?)) ends up not using a common cache (aka only global ranges?). I've identified the dominator walk in the PR (or the one of the related PRs) which walks the whole function dominator tree rather than limiting itself. > For the record, the reason we can't get rid of the forward threader > yet (apart from having to fix whatever is going on in PR114855 at -O2 > :)), is that we still rely on the pointer equivalency tracking with > the DOM equiv lookup tables. Prange does not yet handle pointer > equivs. Also, we'd need to audit to make sure frange handles whatever > floating point operations were being simplified in the DOM equiv > lookup as well. I suspect not much, but we still need to make sure. I see. I'll note that with forward threading re-using the cache when just adding blocks at the tail of the path is obvious (it might miss optimizations though) while for backwards threading backtracking on the head of the path requires pruning of the whole cache (we could eventually keep a "stack" of caches...). > Minor nit, wouldn't it be cleaner for "limit" to be a class local > variable instead of passing it around as a function parameter? Maybe, it's old habit of doing things. As said, the main problem is ranger itself doing work not within the bounds that the backwards threader expects. Richard. > Thanks for all your work here. > Aldy > > On Tue, Aug 6, 2024 at 3:12 PM Richard Biener <rguent...@suse.de> wrote: > > > > Currently the forward threader isn't limited as to the search space > > it explores and with it now using path-ranger for simplifying > > conditions it runs into it became pretty slow for degenerate cases > > like compiling insn-emit.cc for RISC-V esp. when compiling for > > a host with LOGICAL_OP_NON_SHORT_CIRCUIT disabled. > > > > The following makes the forward threader honor the search space > > limit I introduced for the backward threader. This reduces > > compile-time from minutes to seconds for the testcase in PR116166. > > > > Note this wasn't necessary before we had ranger but with ranger > > the work we do is quadatic in the length of the threading path > > we build up (the same is true for the backwards threader). > > > > Bootstrap and regtest running on x86_64-unknown-linux-gnu. > > > > OK if that succeeds? > > > > Thanks, > > Richard. > > > > PR tree-optimization/116166 > > * tree-ssa-threadedge.h (jump_threader::thread_around_empty_blocks): > > Add limit parameter. > > (jump_threader::thread_through_normal_block): Likewise. > > * tree-ssa-threadedge.cc > > (jump_threader::thread_around_empty_blocks): > > Honor and decrement limit parameter. > > (jump_threader::thread_through_normal_block): Likewise. > > (jump_threader::thread_across_edge): Initialize limit from > > param_max_jump_thread_paths and pass it down to workers. > > --- > > gcc/tree-ssa-threadedge.cc | 30 ++++++++++++++++++++++-------- > > gcc/tree-ssa-threadedge.h | 4 ++-- > > 2 files changed, 24 insertions(+), 10 deletions(-) > > > > diff --git a/gcc/tree-ssa-threadedge.cc b/gcc/tree-ssa-threadedge.cc > > index 7f82639b8ec..0aa2aa85143 100644 > > --- a/gcc/tree-ssa-threadedge.cc > > +++ b/gcc/tree-ssa-threadedge.cc > > @@ -786,13 +786,17 @@ propagate_threaded_block_debug_into (basic_block > > dest, basic_block src) > > bool > > jump_threader::thread_around_empty_blocks (vec<jump_thread_edge *> *path, > > edge taken_edge, > > - bitmap visited) > > + bitmap visited, unsigned &limit) > > { > > basic_block bb = taken_edge->dest; > > gimple_stmt_iterator gsi; > > gimple *stmt; > > tree cond; > > > > + if (limit == 0) > > + return false; > > + --limit; > > + > > /* The key property of these blocks is that they need not be duplicated > > when threading. Thus they cannot have visible side effects such > > as PHI nodes. */ > > @@ -830,7 +834,8 @@ jump_threader::thread_around_empty_blocks > > (vec<jump_thread_edge *> *path, > > m_registry->push_edge (path, taken_edge, > > EDGE_NO_COPY_SRC_BLOCK); > > m_state->append_path (taken_edge->dest); > > bitmap_set_bit (visited, taken_edge->dest->index); > > - return thread_around_empty_blocks (path, taken_edge, visited); > > + return thread_around_empty_blocks (path, taken_edge, visited, > > + limit); > > } > > } > > > > @@ -872,7 +877,7 @@ jump_threader::thread_around_empty_blocks > > (vec<jump_thread_edge *> *path, > > m_registry->push_edge (path, taken_edge, EDGE_NO_COPY_SRC_BLOCK); > > m_state->append_path (taken_edge->dest); > > > > - thread_around_empty_blocks (path, taken_edge, visited); > > + thread_around_empty_blocks (path, taken_edge, visited, limit); > > return true; > > } > > > > @@ -899,8 +904,13 @@ jump_threader::thread_around_empty_blocks > > (vec<jump_thread_edge *> *path, > > > > int > > jump_threader::thread_through_normal_block (vec<jump_thread_edge *> *path, > > - edge e, bitmap visited) > > + edge e, bitmap visited, > > + unsigned &limit) > > { > > + if (limit == 0) > > + return 0; > > + limit--; > > + > > m_state->register_equivs_edge (e); > > > > /* PHIs create temporary equivalences. > > @@ -989,7 +999,7 @@ jump_threader::thread_through_normal_block > > (vec<jump_thread_edge *> *path, > > visited. This may be overly conservative. */ > > bitmap_set_bit (visited, dest->index); > > bitmap_set_bit (visited, e->dest->index); > > - thread_around_empty_blocks (path, taken_edge, visited); > > + thread_around_empty_blocks (path, taken_edge, visited, limit); > > return 1; > > } > > } > > @@ -1075,9 +1085,12 @@ jump_threader::thread_across_edge (edge e) > > bitmap_set_bit (visited, e->src->index); > > bitmap_set_bit (visited, e->dest->index); > > > > + /* Limit search space. */ > > + unsigned limit = param_max_jump_thread_paths; > > + > > int threaded = 0; > > if ((e->flags & EDGE_DFS_BACK) == 0) > > - threaded = thread_through_normal_block (path, e, visited); > > + threaded = thread_through_normal_block (path, e, visited, limit); > > > > if (threaded > 0) > > { > > @@ -1148,11 +1161,12 @@ jump_threader::thread_across_edge (edge e) > > m_registry->push_edge (path, e, EDGE_START_JUMP_THREAD); > > m_registry->push_edge (path, taken_edge, > > EDGE_COPY_SRC_JOINER_BLOCK); > > > > - found = thread_around_empty_blocks (path, taken_edge, visited); > > + found = thread_around_empty_blocks (path, taken_edge, visited, > > limit); > > > > if (!found) > > found = thread_through_normal_block (path, > > - path->last ()->e, visited) > > > 0; > > + path->last ()->e, visited, > > + limit) > 0; > > > > /* If we were able to thread through a successor of E->dest, then > > record the jump threading opportunity. */ > > diff --git a/gcc/tree-ssa-threadedge.h b/gcc/tree-ssa-threadedge.h > > index 9f6cbfe9330..245b3506a55 100644 > > --- a/gcc/tree-ssa-threadedge.h > > +++ b/gcc/tree-ssa-threadedge.h > > @@ -101,9 +101,9 @@ private: > > unsigned limit); > > > > bool thread_around_empty_blocks (vec<class jump_thread_edge *> *path, > > - edge, bitmap visited); > > + edge, bitmap visited, unsigned &limit); > > int thread_through_normal_block (vec<jump_thread_edge *> *path, > > - edge, bitmap visited); > > + edge, bitmap visited, unsigned &limit); > > void thread_across_edge (edge); > > bool record_temporary_equivalences_from_phis (edge); > > gimple *record_temporary_equivalences_from_stmts_at_dest (edge); > > -- > > 2.43.0 > > > > -- Richard Biener <rguent...@suse.de> SUSE Software Solutions Germany GmbH, Frankenstrasse 146, 90461 Nuernberg, Germany; GF: Ivo Totev, Andrew McDonald, Werner Knoblich; (HRB 36809, AG Nuernberg)