diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-12 05:56:27 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-12 05:56:27 +0000 |
commit | 1dff614c85d6899e5442a721e03ae0924db542f0 (patch) | |
tree | 40b384a205e08322f34b489f268f42300c96c0bb /gcc/debug.h | |
parent | 037e86757698f1fef8a8b6d4054cc05de488c16f (diff) | |
download | gcc-1dff614c85d6899e5442a721e03ae0924db542f0.tar.gz |
* Makefile.in (final.o): Depend on debug.h.
* dbxout.c (dbxout_begin_block, dbxout_end_block): New.
(dbx_debug_hooks): Add new hooks.
(xcoff_debug_hooks): New.
* debug.c (debug_nothing_file_int_int): New.
(do_nothing_debug_hooks): Update.
* debug.h (gcc_debug_hooks): New hooks begin_block and end_block.
(debug_nothing_file_int_int): New.
* dwarf2out.c (dwarf2out_begin_block, dwarf2out_end_block): Make
static, update prototype.
(dwarf2_debug_hooks): Update.
* dwarf2out.h (dwarf2out_begin_block, dwarf2out_end_block): Remove.
* dwarfout.c (dwarfout_begin_block, dwarfout_end_block): Make
static, update prototype.
(dwarf_debug_hooks): Update.
* dwarfout.h (dwarfout_begin_block, dwarfout_end_block): Remove.
* final.c: Include debug.h.
(final_scan_insn): Use debug hooks when beginning and ending blocks.
* sdbout.c (sdbout_begin_block, sdbout_end_block): Make
static, update prototype.
(sdb_debug_hooks): Update.
* sdbout.h (sdbout_begin_block, sdbout_end_block): Remove.
* toplev.c: Distinguish between xcoff and dbx.
* f/lex.c (ffelex_file_pop_, ffelex_file_push_, ffelex_hash_):
Call all debug hooks, not just dwarf ones.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43959 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/debug.h')
-rw-r--r-- | gcc/debug.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/debug.h b/gcc/debug.h index 9b7e28a5958..755ac0ae9ee 100644 --- a/gcc/debug.h +++ b/gcc/debug.h @@ -43,6 +43,13 @@ struct gcc_debug_hooks /* Record the resumption of a source file. LINE is the line number in the source file we are returning to. */ void (* end_source_file) PARAMS ((unsigned int line)); + + /* Record the beginning of block N, counting from 1 and not + including the function-scope block, at LINE. Output to FILE. */ + void (* begin_block) PARAMS ((FILE *, unsigned int line, unsigned int n)); + + /* Record the end of a block. Arguments as for begin_block. */ + void (* end_block) PARAMS ((FILE *, unsigned int line, unsigned int n)); }; extern struct gcc_debug_hooks *debug_hooks; @@ -54,11 +61,14 @@ extern void debug_nothing_int_charstar PARAMS ((unsigned int, const char *)); extern void debug_nothing_int PARAMS ((unsigned int)); +extern void debug_nothing_file_int_int + PARAMS ((FILE *, unsigned int, unsigned int)); /* Hooks for various debug formats. */ extern struct gcc_debug_hooks do_nothing_debug_hooks; extern struct gcc_debug_hooks dbx_debug_hooks; extern struct gcc_debug_hooks sdb_debug_hooks; +extern struct gcc_debug_hooks xcoff_debug_hooks; extern struct gcc_debug_hooks dwarf_debug_hooks; extern struct gcc_debug_hooks dwarf2_debug_hooks; |