diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-28 09:51:42 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-28 09:51:42 +0000 |
commit | 5846cb0f7c383a8d45735243e411fb6a5ecb6f70 (patch) | |
tree | c60c5f52d93613b9b8942daef3cae9ee63895c8b /gcc/sdbout.c | |
parent | b36bad98246ccb819e80a8f7b42cc17abd6aff0e (diff) | |
download | gcc-5846cb0f7c383a8d45735243e411fb6a5ecb6f70.tar.gz |
* emit-rtl.c (remove_unncessary_notes): Remove notes for empty
blocks.
* final.c (next_block_index): Remove.
(max_block_depth): Likewise.
(pending_blocks): Likewise.
(init_final): Don't initialize them.
(final_start_function): Don't set next_block_index. Set up
BLOCK_NUMBER.
(final_scan_insn): Use BLOCK_NUMBER, not next_block_index.
* function.h (number_blocks): New function.
* function.c (get_block_vector): New function.
(identify_blocks): Use it.
(reorder_blocks): Set NOTE_BLOCK.
(number_blocks): New function.
* tree.def (BLOCK): Add documentation for TREE_ASM_WRITTEN flag.
* tree.h (BLOCK_NUMBER): New macro.
(tree_block): Add block_num field.
* dbxout.c (next_block_number): Remove.
(dbxout_init): Don't set it.
(dbxout_block): Only output blocks that have TREE_ASM_WRITTEN
set. Use BLOCK_NUMBER, rather than next_block_num, to determine
block numbers.
* toplev.c (rest_of_compilation): Always call
find_loop_tree_blocks. Fix indentation.
* dwarf2out.c (next_block_number): Remove.
(gen_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
to determine block numbers.
(gen_inlined_subroutine_die): Likewise.
(gen_block_die): Only output blocks that have TREE_ASM_WRITTEN set.
(decls_for_scope): Don't increment next_block_number.
* dwarfout.c (next_block_number): Remove.
(output_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
to determine block numbers.
(output_inlined_subroutine_die): Likewise.
(output_block): Only output blocks that have TREE_ASM_WRITTEN set.
(output_decls_for_scope): Don't increment next_block_number.
* sdbout.c (next_block_number): Remove.
(sdbout_block): Use BLOCK_NUMBER.
(sdbout_begin_block): Simplify.
* xcoffout.c (next_block_number): Remove.
(xcoffout_block): Use BLOCK_NUMBER, not next_block_number.
(xcoffout_begin_block): Don't set next_block_number.
(xcoffout_begin_function): Likewise. Use BLOCK_NUMBER, not
next_block_number.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32228 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index de16c0f0939..5f6b01b22a9 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -679,15 +679,12 @@ plain_type_1 (type, level) } /* Output the symbols defined in block number DO_BLOCK. - Set NEXT_BLOCK_NUMBER to 0 before calling. This function works by walking the tree structure of blocks, counting blocks until it finds the desired block. */ static int do_block = 0; -static int next_block_number; - static void sdbout_block (block) register tree block; @@ -698,17 +695,13 @@ sdbout_block (block) if (TREE_USED (block)) { /* When we reach the specified block, output its symbols. */ - if (next_block_number == do_block) - { - sdbout_syms (BLOCK_VARS (block)); - } + if (BLOCK_NUMBER (block) == do_block) + sdbout_syms (BLOCK_VARS (block)); /* If we are past the specified block, stop the scan. */ - if (next_block_number > do_block) + if (BLOCK_NUMBER (block) > do_block) return; - next_block_number++; - /* Scan the blocks within this block. */ sdbout_block (BLOCK_SUBBLOCKS (block)); } @@ -1546,15 +1539,13 @@ sdbout_begin_block (file, line, n) if (n == 1) { /* Include the outermost BLOCK's variables in block 1. */ - next_block_number = 0; - do_block = 0; + do_block = BLOCK_NUMBER (DECL_INITIAL (decl)); sdbout_block (DECL_INITIAL (decl)); } /* If -g1, suppress all the internal symbols of functions except for arguments. */ if (debug_info_level != DINFO_LEVEL_TERSE) { - next_block_number = 0; do_block = n; sdbout_block (DECL_INITIAL (decl)); } |