diff options
author | David Malcolm <dmalcolm@redhat.com> | 2013-12-09 20:17:32 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2013-12-09 20:17:32 +0000 |
commit | c5f05f68b215255ec43de8ddf324b19efaefcd00 (patch) | |
tree | 7336db6c5036647519857a17f07f6a705b857545 | |
parent | 06e28de223648085ab8a265fe5f2b7dafaf22ad4 (diff) | |
download | gcc-c5f05f68b215255ec43de8ddf324b19efaefcd00.zip gcc-c5f05f68b215255ec43de8ddf324b19efaefcd00.tar.gz gcc-c5f05f68b215255ec43de8ddf324b19efaefcd00.tar.bz2 |
Eliminate basic_block_info macro.
gcc/
* basic-block.h (basic_block_info): Eliminate macro.
* cfgrtl.c (rtl_create_basic_block): Replace uses of
basic_block_info with basic_block_info_for_fn, making uses
of cfun be explicit.
* tree-cfg.c (build_gimple_cfg, create_bb): Likewise.
From-SVN: r205823
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/basic-block.h | 1 | ||||
-rw-r--r-- | gcc/cfgrtl.c | 4 | ||||
-rw-r--r-- | gcc/tree-cfg.c | 10 |
4 files changed, 17 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b6ba8e7..3b71595 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,14 @@ 2013-12-09 David Malcolm <dmalcolm@redhat.com> + * basic-block.h (basic_block_info): Eliminate macro. + + * cfgrtl.c (rtl_create_basic_block): Replace uses of + basic_block_info with basic_block_info_for_fn, making uses + of cfun be explicit. + * tree-cfg.c (build_gimple_cfg, create_bb): Likewise. + +2013-12-09 David Malcolm <dmalcolm@redhat.com> + * basic-block.h (BASIC_BLOCK): Eliminate macro. * alias.c (init_alias_analysis): Eliminate BASIC_BLOCK macro in diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 3bd011e..69689f3 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -327,7 +327,6 @@ struct GTY(()) control_flow_graph { ((*basic_block_info_for_fn (FN))[(N)] = (BB)) /* Defines for textual backward source compatibility. */ -#define basic_block_info (cfun->cfg->x_basic_block_info) #define last_basic_block (cfun->cfg->x_last_basic_block) #define label_to_block_map (cfun->cfg->x_label_to_block_map) #define profile_status (cfun->cfg->x_profile_status) diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index de110f4..772d939 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -355,10 +355,10 @@ rtl_create_basic_block (void *headp, void *endp, basic_block after) basic_block bb; /* Grow the basic block array if needed. */ - if ((size_t) last_basic_block >= basic_block_info->length ()) + if ((size_t) last_basic_block >= basic_block_info_for_fn (cfun)->length ()) { size_t new_size = last_basic_block + (last_basic_block + 3) / 4; - vec_safe_grow_cleared (basic_block_info, new_size); + vec_safe_grow_cleared (basic_block_info_for_fn (cfun), new_size); } n_basic_blocks_for_fn (cfun)++; diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index a706730..9558546 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -242,8 +242,10 @@ build_gimple_cfg (gimple_seq seq) create_empty_bb (ENTRY_BLOCK_PTR_FOR_FN (cfun)); /* Adjust the size of the array. */ - if (basic_block_info->length () < (size_t) n_basic_blocks_for_fn (cfun)) - vec_safe_grow_cleared (basic_block_info, n_basic_blocks_for_fn (cfun)); + if (basic_block_info_for_fn (cfun)->length () + < (size_t) n_basic_blocks_for_fn (cfun)) + vec_safe_grow_cleared (basic_block_info_for_fn (cfun), + n_basic_blocks_for_fn (cfun)); /* To speed up statement iterator walks, we first purge dead labels. */ cleanup_dead_labels (); @@ -603,10 +605,10 @@ create_bb (void *h, void *e, basic_block after) link_block (bb, after); /* Grow the basic block array if needed. */ - if ((size_t) last_basic_block == basic_block_info->length ()) + if ((size_t) last_basic_block == basic_block_info_for_fn (cfun)->length ()) { size_t new_size = last_basic_block + (last_basic_block + 3) / 4; - vec_safe_grow_cleared (basic_block_info, new_size); + vec_safe_grow_cleared (basic_block_info_for_fn (cfun), new_size); } /* Add the newly created block to the array. */ |