diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-cfg.c | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed764d2..c373c83 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + * tree-cfg.c (thread_jumps): Speed up by keeping a pointer to + the last used element in the worklist. + +2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + * tree-inline.c (remap_save_expr): Make it static. * tree-inline.h: Remove the corresponding prototype. diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 0e6b55d..8dfaffb 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -3934,7 +3934,7 @@ thread_jumps (void) basic_block bb; bool retval = false; basic_block *worklist = xmalloc (sizeof (basic_block) * last_basic_block); - unsigned int size = 0; + basic_block *current = worklist; FOR_EACH_BB (bb) { @@ -3974,17 +3974,15 @@ thread_jumps (void) && !bb_ann (e->src)->forwardable) { e->src->flags |= BB_VISITED; - worklist[size] = e->src; - size++; + *current++ = e->src; } } } /* Now let's drain WORKLIST. */ - while (size > 0) + while (worklist != current) { - size--; - bb = worklist[size]; + bb = *--current; /* BB is no longer in WORKLIST, so clear BB_VISITED. */ bb->flags &= ~BB_VISITED; @@ -4013,8 +4011,7 @@ thread_jumps (void) && !bb_ann (f->src)->forwardable) { f->src->flags |= BB_VISITED; - worklist[size] = f->src; - size++; + *current++ = f->src; } } } |