This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [bitmap memory]: Allocation part 2
- From: Jeffrey A Law <law at redhat dot com>
- To: Nathan Sidwell <nathan at codesourcery dot com>
- Cc: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 15 Feb 2005 12:41:27 -0700
- Subject: Re: [bitmap memory]: Allocation part 2
- Organization: Red Hat, Inc
- References: <41A21524.4050102@codesourcery.com> <1101162070.27318.220.camel@localhost.localdomain> <41A4687C.5000204@codesourcery.com> <1101412983.13475.22.camel@localhost.localdomain> <41A7052C.4020405@codesourcery.com> <1106026735.30575.138.camel@localhost.localdomain> <42078D49.5040900@codesourcery.com>
- Reply-to: law at redhat dot com
On Mon, 2005-02-07 at 15:46 +0000, Nathan Sidwell wrote:
> Jeffrey A Law wrote:
> > On Fri, 2004-11-26 at 10:27 +0000, Nathan Sidwell wrote:
>
> >>This is the final part of the patch series. It removes BITMAP_XMALLOC
> >>and BITMAP_XFREE, which are now only aliases for BITMAP_ALLOC (NULL)
> >>and BITMAP_FREE.
> >>
> >>I've booted and tested earlier incarnations of this patch
> >>(on i686-pc-linux-gnu), but last night's run of this part only dies with
> >>unrelated libjava problems. I was able to run the c testsuite with no
> >>problems.
> >>
>
> > I think this got delayed when we went into regression fix mode only.
> > Now is probably a reasonable time to resubmit and get this last bit of
> > the bitmap memory allocation cleanup finished.
>
> yes, it missed the deadline. Here's an updated one I just booted and
> checked with. ok?
>
> nathan
>
> plain text document attachment (bitmap-memory-6.log)
> 2005-02-07 Nathan Sidwell <nathan@codesourcery.com>
>
> * bitmap.h (BITMAP_XMALLOC, BITMAP_XFREE): Remove.
> * bb-reorder.c (duplicate_computed_gotos): Use BITMAP_ALLOC and
> BITMAP_FREE.
> * bt-load.c (btr_def_live_range, combine_btr_defs,
> migrate_btr_def, migrate_btr_defs): Likewise.
> * cfgcleanup.c (thread_jump): Likewise.
> * cfgloop.c (get_loop_body_in_bfs_order): Likewise.
> * df.c (df_insn_table_realloc, df_bitmaps_alloc, df_bitmaps_free,
> df_alloc, df_free, df_du_chain_create, df_bb_rd_local_compute,
> df_rd_local_compute, df_reg_info_compute): Likewise.
> * dominance.c (init_dom_info, free_dom_info): Likewise.
> * flow.c (init_propagate_block_info,
> free_propagate_block_info): Likewise.
> * gcse.c (alloc_gcse_mem, free_gcse_mem): Likewise.
> * global.c (allocate_bb_info, free_bb_info, calculate_reg_pav,
> modify_reg_pav): Likewise.
> * loop-invariant.c (find_defs, find_invariant_insn,
> find_invariants, free_inv_motion_data): Likewise.
> * predict.c (tree_predict_by_opcode,
> estimate_bb_frequencies): Likewise.
> * stmt.c (expand_case): Likewise.
> * tree-cfg.c (tree_duplicate_sese_region): Likewise.
> * tree-dfa.c (mark_new_vars_to_rename): Likewise.
> * tree-if-conv.c (get_loop_body_in_if_conv_order): Likewise.
> * tree-into-ssa.c (insert_phi_nodes_for, def_blocks_free,
> get_def_blocks_for, mark_def_site_blocks, rewrite_into_ssa,
> rewrite_ssa_into_ssa): Likewise.
> * tree-optimize.c (tree_rest_of_compilation): Likewise.
> * tree-outof-ssa.c (new_temp_expr_table, free_temp_expr_table,
> analyze_edges_for_bb, perform_edge_inserts): Likewise.
> * tree-scalar-evolution.c (scev_initialize, scev_finalize): Likewise.
> * tree-sra.c (tree_sra): Likewise.
> * tree-ssa-alias.c (init_alias_info, delete_alias_info): Likewise.
> * tree-ssa-ccp.c (ccp_fold_builtin): Likewise.
> * tree-ssa-dce.c (tree_dce_init, tree_dce_done): Likewise.
> * tree-ssa-dom.c (tree_ssa_dominator_optimize): Likewise.
> * tree-ssa-dse.c (tree_ssa_dse): Likewise.
> * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_var):
> Likewise.
> * tree-ssa-live.c (new_tree_live_info, delete_tree_live_info,
> calculate_live_on_entry, calculate_live_on_exit,
> build_tree_conflict_graph): Likewise.
> * tree-ssa-loop-ivopts.c (tree_ssa_iv_optimize_init, record_use,
> record_important_candidates, set_use_iv_cost, find_depends,
> determine_use_iv_costs, iv_ca_new, iv_ca_free, free_loop_data,
> tree_ssa_iv_optimize_finalize): Likewise.
> * tree-ssa-loop-manip.c (add_exit_phis_var, get_loops_exit,
> find_uses_to_rename_use, rewrite_into_loop_closed_ssa,
> tree_duplicate_loop_to_header_edge): Likewise.
> * tree-ssa-pre.c (init_pre, fini_pre): Likewise.
> * tree-ssa.c (verify_flow_insensitive_alias_info,
> verify_name_tags, verify_ssa, init_tree_ssa,
> delete_tree_ssa): Likewise.
> * tree-ssanames.c (marked_ssa_names, init_ssanames,
> fini_ssanames): Likewise.
> * tree-vectorizer.c (slpeel_tree_peel_loop_to_edge): Likewise.
This is fine. Note you had a testsuite patch attached that probably
didn't belong. I also wouldn't be terribly surprised if this is already
slightly outdated as bitmaps get removed/added. Consider any changes to
deal with newly added bitmaps or recently removed bitmaps pre-approved.
Jeff