1. 18 Jul, 2001 15 commits
  2. 17 Jul, 2001 23 commits
  3. 16 Jul, 2001 2 commits
    • basic-block.h (CLEANUP_PRE_SIBCALL): New constant. · 4793dca1
      	* basic-block.h (CLEANUP_PRE_SIBCALL): New constant.
      	* except.c (finish_eh_generation): Update call of cleanup_cfg;
      	do rebuild_jump_labels instead of jump_optimize
      	* sibcall.c (optimize_sibling_and_tail_recursive_call): Likewise.
      	* toplev.c (rest_of_compulation): Likewise for -Wreturn_type.
      	* flow.c (try_optimize_cfg): Remove unneeded code_labels.
      
      	* flow.c: Include timevar.h
      	(find_basic_block): Push/pop timevar;
      	(cleanup_cfg): Likewise.
      	* timevar.def (TV_CFG, TV_CLEANUP_CFG): New.
      	* Makefile: Add dependencies on timevar.h
      
      	* integrate.c (save_for_inline): Kill all BASIC_BLOCK notes.
      	(copy_insn_list): Avoid killing of BASIC_BLOCK notes.
      
      	* rtl.h (delete_trivially_dead_insns): Add new parameter.
      	* toplev.c (rest_of_compilation): Update calls.
      	* cse.c (set_live_p, insn_live_p, dead_libcall_p): Break out from ...
      	(delete_trivially_dead_insns): ... here; accept new argument
      	preserve_basic_blocks; preserve basic blocks if set.
      
      	* reg-stack.c (stack_regs_mentioned): Return 0 if
      	stack_regs_mentioned_data is not initialized.
      	(reg_to_stack): Make stack_regs_mentioned survive after the
      	reg-stack is completted; do not call cleanup_cfg.
      	* toplev.c (rest_of_compilation): Do cleanup_cfg before bb-reorder;
      	make cleanup_cfg after bb-reorder to output to debug file.
      
      From-SVN: r44056
      Jan Hubicka committed
    • gcse.c: Update comment at top. · ccef9ef5
              * gcse.c: Update comment at top.
              Update comment on mem handling.
              mem_last_set, mem_first_set, mem_set_in_block: gone.
              Declaration of reg_set_info: gone.
              (oprs_unchanged_p): Don't use mem_*set_* anymore. They are
              pointless with load_killed_in_block_p (they are *more*
              conservative then it, not less, and less accurate).
              (oprs_not_set_p): Ditto.
              (alloc_gcse_mem): Don't allocate mem_set_in_block
              (free_gcse_mem): Don't free it, either.
              (record_last_mem_set_info): Update comment in front, remove
              mem_*set_* stuff. Note the reason we don't handle stores directly
              here.
              (compute_hash_table): Update comments to reflect reality. Remove
              mem_*set_* references.
              (reset_opr_set_tables): Remove mem_*set_* references.
              (mark_call): Ditto.
              (mark_set): Ditto.  Also remove double sets of bitmaps for REG's.
              (mark_clobber): Ditto (on both parts, we double set here too).
              (expr_killed_p): Remove mem_set_in_block test.
              (compute_transp): Remove mem_set_in_block test.
      
      From-SVN: r44055
      Daniel Berlin committed