From 31864f59563cedc3311da0139a0e1be069ed8de9 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Mon, 8 Nov 2004 22:41:40 +0000 Subject: [PATCH] tree-cfg.c (thread_jumps): Speed up by keeping a pointer to the last used element in the worklist. * tree-cfg.c (thread_jumps): Speed up by keeping a pointer to the last used element in the worklist. From-SVN: r90314 --- gcc/ChangeLog | 5 +++++ gcc/tree-cfg.c | 13 +++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed764d23e82..c373c836ed7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-08 Kazu Hirata + + * tree-cfg.c (thread_jumps): Speed up by keeping a pointer to + the last used element in the worklist. + 2004-11-08 Kazu Hirata * tree-inline.c (remap_save_expr): Make it static. diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 0e6b55dabcb..8dfaffb13b0 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; } } }