diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-12 21:42:28 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-12 21:42:28 +0000 |
commit | 73ae3ef72f8c419fc963cd401e8cc2ef53d9434b (patch) | |
tree | cfa7bbb13d0bfc85e73ea5724b507a1d241d14d5 /gcc/xcoffout.h | |
parent | cdfbccf4aec52c4f8777f857e7b34e5f0fd24627 (diff) | |
download | gcc-73ae3ef72f8c419fc963cd401e8cc2ef53d9434b.tar.gz |
* debug.h (struct gcc_debug_hooks): Add type_decl field.
(debug_nothing_tree_int): Prototype.
(dwarf_debug_hooks): Delete, unused.
* debug.c (do_nothing_debug_hooks): Update.
(debug_nothing_tree_int): New function.
* langhooks.h (struct lang_hooks_for_decls):
Remove builtin_type_decls field.
* langhooks-def.h (LANG_HOOKS_BUILTIN_TYPE_DECLS): Delete.
(LANG_HOOKS_DECLS): Update.
* toplev.c (rest_of_decl_compilation, rest_of_type_compilation):
Use debug_hooks->type_decl.
* dbxout.c (preinit_symbols): New static.
(dbx_debug_hooks, xcoff_debug_hooks): Update.
(dbxout_init): Don't call DBX_OUTPUT_STANDARD_TYPES or
lang_hooks.decls.builtin_type_decls. Do scan preinit_symbols
for symbols to output.
(dbxout_type_decl): New function.
(dbxout_symbol): If called before dbxout_init has run, queue
the symbol for later. Apply DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER
to TYPE_DECLs before emitting them.
* xcoffout.c (assign_type_number): Delete.
(xcoff_type_numbers): New static table.
(xcoff_assign_fundamental_type_number): New function.
* xcoffout.h: Define DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER, not
DBX_OUTPUT_STANDARD_TYPES. Remove unnecessary #ifdefs.
* sdbout.c: Include varray.h.
(deferred_global_decls): New static.
(sdb_debug_hooks): Update.
(sdbout_global_decl): If we can't emit something right now,
remember it in deferred_global_decls.
(sdbout_finish): Just scan deferred_global_decls; don't call getdecls.
(sdbout_init): Initialize deferred_global_decls.
* Makefile.in: Update dependencies of sdbout.o.
* dwarf2out.c (dwarf2out_type_decl): New function.
(dwarf2_debug_hooks): Update.
* vmsdbgout.c (vmsdbg_debug_hooks): Update.
* c-decl.c (getdecls): Just return 0.
(check_for_loop_decls): Don't use getdecls.
(record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
* c-objc-common.c (c_objc_common_finish_file): Don't use getdecls.
cp:
* cp-lang.c: Don't define LANG_HOOKS_BUILTIN_TYPE_DECLS.
* cp-tree.h: Don't declare cxx_builtin_type_decls.
* decl.c (builtin_type_decls, cxx_builtin_type_decls): Delete.
(record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77730 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/xcoffout.h')
-rw-r--r-- | gcc/xcoffout.h | 25 |
1 files changed, 3 insertions, 22 deletions
diff --git a/gcc/xcoffout.h b/gcc/xcoffout.h index 2b830484feb..1a0cf652c48 100644 --- a/gcc/xcoffout.h +++ b/gcc/xcoffout.h @@ -29,15 +29,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Use the XCOFF predefined type numbers. */ -/* ??? According to metin, typedef stabx must go in text control section, - but he did not make this changes everywhere where such typedef stabx - can be emitted, so it is really needed or not? */ - -#define DBX_OUTPUT_STANDARD_TYPES(SYMS) \ -{ \ - text_section (); \ - xcoff_output_standard_types (SYMS); \ -} +#define DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER(TYPE) \ + xcoff_assign_fundamental_type_number (TYPE) /* Any type with a negative type index has already been output. */ @@ -183,23 +176,11 @@ extern const char *xcoff_lastfile; /* Prototype functions in xcoffout.c. */ extern int stab_to_sclass (int); -#ifdef BUFSIZ extern void xcoffout_begin_prologue (unsigned int, const char *); extern void xcoffout_begin_block (unsigned, unsigned); extern void xcoffout_end_epilogue (unsigned int, const char *); extern void xcoffout_end_function (unsigned int); extern void xcoffout_end_block (unsigned, unsigned); -#endif /* BUFSIZ */ - -#ifdef TREE_CODE -extern void xcoff_output_standard_types (tree); -#ifdef BUFSIZ +extern int xcoff_assign_fundamental_type_number (tree); extern void xcoffout_declare_function (FILE *, tree, const char *); -#endif /* BUFSIZ */ -#endif /* TREE_CODE */ - -#ifdef RTX_CODE -#ifdef BUFSIZ extern void xcoffout_source_line (unsigned int, const char *); -#endif /* BUFSIZ */ -#endif /* RTX_CODE */ |