diff options
author | Richard Guenther <rguenther@suse.de> | 2012-08-13 13:49:54 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-08-13 13:49:54 +0000 |
commit | 391886c8e0153d41b3ab4daf4d2dd1d923d9c50f (patch) | |
tree | c9e7c894d3f7d2eaf1bfddbb370a7e8c883063c2 /gcc/bt-load.c | |
parent | 9006f7f325461dff15a5adaa577b36b789eab2a0 (diff) | |
download | gcc-391886c8e0153d41b3ab4daf4d2dd1d923d9c50f.zip gcc-391886c8e0153d41b3ab4daf4d2dd1d923d9c50f.tar.gz gcc-391886c8e0153d41b3ab4daf4d2dd1d923d9c50f.tar.bz2 |
basic-block.h (struct basic_block): Remove loop_depth member, move flags and index members next to each other.
2012-08-13 Richard Guenther <rguenther@suse.de>
* basic-block.h (struct basic_block): Remove loop_depth
member, move flags and index members next to each other.
* cfgloop.h (bb_loop_depth): New inline function.
* cfghooks.c (split_block): Do not set loop_depth.
(duplicate_block): Likewise.
* cfgloop.c (flow_loop_nodes_find): Likewise.
(flow_loops_find): Likewise.
(add_bb_to_loop): Likewise.
(remove_bb_from_loops): Likewise.
* cfgrtl.c (force_nonfallthru_and_redirect): Likewise.
* gimple-streamer-in.c (input_bb): Do not stream loop_depth.
* gimple-streamer-out.c (output_bb): Likewise.
* bt-load.c: Include cfgloop.h.
(migrate_btr_defs): Use bb_loop_depth.
* cfg.c (dump_bb_info): Likewise.
* final.c (compute_alignments): Likewise.
* ira.c (update_equiv_regs): Likewise.
* tree-ssa-copy.c (init_copy_prop): Likewise.
* tree-ssa-dom.c (loop_depth_of_name): Likewise.
* tree-ssa-forwprop.c: Include cfgloop.h.
(forward_propagate_addr_expr): Use bb_loop_depth.
* tree-ssa-pre.c (insert_into_preds_of_block): Likewise.
* tree-ssa-sink.c (select_best_block): Likewise.
* ipa-inline-analysis.c: Include cfgloop.h.
(estimate_function_body_sizes): Use bb_loop_depth.
* Makefile.in (tree-ssa-forwprop.o): Depend on $(CFGLOOP_H).
(ipa-inline-analysis.o): Likewise.
(bt-load.o): Likewise.
* gcc.dg/tree-prof/update-loopch.c: Adjust.
From-SVN: r190346
Diffstat (limited to 'gcc/bt-load.c')
-rw-r--r-- | gcc/bt-load.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/bt-load.c b/gcc/bt-load.c index 2cab03c..385bc6c 100644 --- a/gcc/bt-load.c +++ b/gcc/bt-load.c @@ -37,6 +37,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-pass.h" #include "recog.h" #include "df.h" +#include "cfgloop.h" /* Target register optimizations - these are performed after reload. */ @@ -1408,7 +1409,7 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save) fprintf(dump_file, "Basic block %d: count = " HOST_WIDEST_INT_PRINT_DEC " loop-depth = %d idom = %d\n", - i, (HOST_WIDEST_INT) bb->count, bb->loop_depth, + i, (HOST_WIDEST_INT) bb->count, bb_loop_depth (bb), get_immediate_dominator (CDI_DOMINATORS, bb)->index); } } |