diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2003-12-11 00:20:51 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2003-12-11 00:20:51 +0000 |
commit | a813c111200f19a0512441f5394395ee3f6770ae (patch) | |
tree | 753b85b3ca471980585369128978b9ba6e133c3a /gcc/sched-ebb.c | |
parent | 2086c099f62cc6d4c7fa4fd0fcbf8350f6c21364 (diff) | |
download | gcc-a813c111200f19a0512441f5394395ee3f6770ae.zip gcc-a813c111200f19a0512441f5394395ee3f6770ae.tar.gz gcc-a813c111200f19a0512441f5394395ee3f6770ae.tar.bz2 |
basic-block.h (BLOCK_HEAD, BLOCK_END): Remove.
2003-12-11 Steven Bosscher <steven@gcc.gnu.org>
* basic-block.h (BLOCK_HEAD, BLOCK_END): Remove.
(BLOCK_HEAD_TREE, BLOCK_END_TREE): Remove.
(basic_block_def): Rename `head' to `head_' and `end' to `end_'.
(BB_HEAD, BB_END): New accessor macros for the `head_' and `end_'
fields of a basic block.
* bb-reorder.c, bt-load.c, caller-save.c, cfg.c, cfganal.c,
cfgbuild.c, cfgcleanup.c, cfglayout.c, cfgloop.c, cfgloopanal.c,
cfgloopmanip.c, cfgrtl.c, combine.c, conflict.c, df.c, emit-rtl.c,
final.c, flow.c, function.c, gcse.c, global.c, graph.c,
haifa-sched.c, ifcvt.c, lcm.c, local-alloc.c, loop-unswitch.c,
loop.c, postreload.c, predict.c, profile.c, ra-build.c, ra-debug.c,
ra-rewrite.c, ra.c, recog.c, reg-stack.c, regclass.c, regmove.c,
regrename.c, reload1.c, resource.c, sched-ebb.c, sched-rgn.c,
sibcall.c, tracer.c, config/frv/frv.c, config/i386/i386.c,
config/ia64/ia64.c: Use the BB_HEAD and BB_END macros instead of
accessing the `head' and `end' fields of a basic block directly.
* gengtype.c: Add missing piece from earlier patch. Dunno what
I was thinking...
From-SVN: r74520
Diffstat (limited to 'gcc/sched-ebb.c')
-rw-r--r-- | gcc/sched-ebb.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/sched-ebb.c b/gcc/sched-ebb.c index e005f74..2d4f125 100644 --- a/gcc/sched-ebb.c +++ b/gcc/sched-ebb.c @@ -218,8 +218,8 @@ add_missing_bbs (rtx before, basic_block first, basic_block last) { before = emit_note_before (NOTE_INSN_BASIC_BLOCK, before); NOTE_BASIC_BLOCK (before) = last; - last->head = before; - last->end = before; + BB_HEAD (last) = before; + BB_END (last) = before; update_bb_for_insn (last); } } @@ -233,10 +233,10 @@ fix_basic_block_boundaries (basic_block bb, basic_block last, rtx head, rtx tail) { rtx insn = head; - rtx last_inside = bb->head; + rtx last_inside = BB_HEAD (bb); rtx aftertail = NEXT_INSN (tail); - head = bb->head; + head = BB_HEAD (bb); for (; insn != aftertail; insn = NEXT_INSN (insn)) { @@ -299,9 +299,9 @@ fix_basic_block_boundaries (basic_block bb, basic_block last, rtx head, if (f) { last = curr_bb = split_edge (f); - h = curr_bb->head; - curr_bb->head = head; - curr_bb->end = insn; + h = BB_HEAD (curr_bb); + BB_HEAD (curr_bb) = head; + BB_END (curr_bb) = insn; /* Edge splitting created misplaced BASIC_BLOCK note, kill it. */ delete_insn (h); @@ -324,9 +324,9 @@ fix_basic_block_boundaries (basic_block bb, basic_block last, rtx head, } else { - curr_bb->head = head; - curr_bb->end = insn; - add_missing_bbs (curr_bb->head, bb, curr_bb->prev_bb); + BB_HEAD (curr_bb) = head; + BB_END (curr_bb) = insn; + add_missing_bbs (BB_HEAD (curr_bb), bb, curr_bb->prev_bb); } note = GET_CODE (head) == CODE_LABEL ? NEXT_INSN (head) : head; NOTE_BASIC_BLOCK (note) = curr_bb; @@ -337,7 +337,7 @@ fix_basic_block_boundaries (basic_block bb, basic_block last, rtx head, break; } } - add_missing_bbs (last->next_bb->head, bb, last); + add_missing_bbs (BB_HEAD (last->next_bb), bb, last); return bb->prev_bb; } @@ -442,7 +442,7 @@ add_deps_for_risky_insns (rtx head, rtx tail) bb = bb->aux; if (!bb) break; - prev = bb->end; + prev = BB_END (bb); } } /* FALLTHRU */ @@ -585,15 +585,15 @@ schedule_ebbs (FILE *dump_file) /* Schedule every region in the subroutine. */ FOR_EACH_BB (bb) { - rtx head = bb->head; + rtx head = BB_HEAD (bb); rtx tail; for (;;) { edge e; - tail = bb->end; + tail = BB_END (bb); if (bb->next_bb == EXIT_BLOCK_PTR - || GET_CODE (bb->next_bb->head) == CODE_LABEL) + || GET_CODE (BB_HEAD (bb->next_bb)) == CODE_LABEL) break; for (e = bb->succ; e; e = e->succ_next) if ((e->flags & EDGE_FALLTHRU) != 0) |