diff options
author | Neil Booth <neil@cat.daikokuya.demon.co.uk> | 2001-07-22 09:42:47 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-07-22 09:42:47 +0000 |
commit | 65ecca65ce6cc9170fb391bae7a07e82e1924440 (patch) | |
tree | 0d61bab33e60b3549c399f005e84779f8586b060 /gcc/sdbout.c | |
parent | 665e329311df8096714c918b5fe2da3d349c485f (diff) | |
download | gcc-65ecca65ce6cc9170fb391bae7a07e82e1924440.zip gcc-65ecca65ce6cc9170fb391bae7a07e82e1924440.tar.gz gcc-65ecca65ce6cc9170fb391bae7a07e82e1924440.tar.bz2 |
* dbxout.c, sdbout.c, varasm.c: Revert most recent patch.
From-SVN: r44237
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 74 |
1 files changed, 21 insertions, 53 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 5ec4b23..accd9ed 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -93,7 +93,6 @@ extern tree current_function_decl; #include "sdbout.h" static void sdbout_init PARAMS ((const char *)); -static void sdbout_finish PARAMS ((const char *)); static void sdbout_start_source_file PARAMS ((unsigned, const char *)); static void sdbout_end_source_file PARAMS ((unsigned)); static void sdbout_begin_block PARAMS ((unsigned, unsigned)); @@ -125,7 +124,6 @@ static void sdbout_field_types PARAMS ((tree)); static void sdbout_one_type PARAMS ((tree)); static void sdbout_parms PARAMS ((tree)); static void sdbout_reg_parms PARAMS ((tree)); -static void sdbout_global_decl PARAMS ((tree)); /* Random macros describing parts of SDB data. */ @@ -300,16 +298,16 @@ static struct sdb_file *current_file; /* The debug hooks structure. */ struct gcc_debug_hooks sdb_debug_hooks = { - sdbout_init, /* init */ - sdbout_finish, /* finish */ - debug_nothing_int_charstar, /* define */ - debug_nothing_int_charstar, /* undef */ - sdbout_start_source_file, /* start_source_file */ - sdbout_end_source_file, /* end_source_file */ - sdbout_begin_block, /* begin_block */ - sdbout_end_block, /* end_block */ + sdbout_init, + debug_nothing_charstar, + debug_nothing_int_charstar, + debug_nothing_int_charstar, + sdbout_start_source_file, + sdbout_end_source_file, + sdbout_begin_block, + sdbout_end_block, debug_true_tree, /* ignore_block */ - sdbout_source_line, /* source_line */ + sdbout_source_line, #ifdef MIPS_DEBUGGING_INFO /* Defer on MIPS systems so that parameter descriptions follow function entry. */ @@ -319,11 +317,11 @@ struct gcc_debug_hooks sdb_debug_hooks = sdbout_begin_prologue, /* begin_prologue */ debug_nothing_int, /* end_prologue */ #endif - sdbout_end_epilogue, /* end_epilogue */ - sdbout_begin_function, /* begin_function */ - sdbout_end_function, /* end_function */ + sdbout_end_epilogue, + sdbout_begin_function, + sdbout_end_function, debug_nothing_tree, /* function_decl */ - sdbout_global_decl, /* global_decl */ + sdbout_global_decl, debug_nothing_tree, /* deferred_inline_function */ debug_nothing_tree, /* outlining_inline_function */ sdbout_label @@ -1491,53 +1489,23 @@ sdbout_global_decl (decl) tree decl; { if (TREE_CODE (decl) == VAR_DECL - && !DECL_EXTERNAL (decl) - && DECL_RTL_SET_P (decl)) + && DECL_INITIAL (decl) + && ! DECL_EXTERNAL (decl) + && DECL_RTL (decl) != 0) { /* The COFF linker can move initialized global vars to the end. - And that can screw up the symbol ordering. Defer those for - sdbout_finish (). */ - if (!DECL_INITIAL (decl) || !TREE_PUBLIC (decl)) + And that can screw up the symbol ordering. By putting the + symbols in that order to begin with, we avoid a problem. + mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */ + if (TREE_PUBLIC (decl)) sdbout_symbol (decl, 0); /* Output COFF information for non-global file-scope initialized variables. */ - if (DECL_INITIAL (decl) && GET_CODE (DECL_RTL (decl)) == MEM) + if (GET_CODE (DECL_RTL (decl)) == MEM) sdbout_toplevel_data (decl); } } - -/* Output initialized global vars at the end, in the order of - definition. See comment in sdbout_global_decl. */ - -static void -sdbout_finish (main_filename) - const char *main_filename ATTRIBUTE_UNUSED; -{ - tree decl = getdecls (); - unsigned int len = list_length (decl); - tree *vec = (tree *) xmalloc (sizeof (tree) * len); - unsigned int i; - - /* Process the decls in reverse order--earliest first. Put them - into VEC from back to front, then take out from front. */ - - for (i = 0; i < len; i++, decl = TREE_CHAIN (decl)) - vec[len - i - 1] = decl; - - for (i = 0; i < len; i++) - { - decl = vec[i]; - if (TREE_CODE (decl) == VAR_DECL - && ! DECL_EXTERNAL (decl) - && DECL_INITIAL (decl) - && TREE_PUBLIC (decl) - && DECL_RTL_SET_P (decl)) - sdbout_symbol (decl, 0); - } - - free (vec); -} /* Describe the beginning of an internal block within a function. Also output descriptions of variables defined in this block. |