X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbe_dbgout_t.h;h=2a506d33372b71fa6144219a8f6bdcdf6ca4c34a;hb=0c2e8bedc56cb9dba9b2544927a8093ddb7ee614;hp=caf0301556de19f826ba83f71dfc1f1ef6ff1ce8;hpb=9e32caf2e94f99e6d057b69e5b8384e26de2e785;p=libfirm diff --git a/ir/be/be_dbgout_t.h b/ir/be/be_dbgout_t.h index caf030155..2a506d333 100644 --- a/ir/be/be_dbgout_t.h +++ b/ir/be/be_dbgout_t.h @@ -27,9 +27,10 @@ #ifndef FIRM_BE_BE_DBGOUT_T_H #define FIRM_BE_BE_DBGOUT_T_H +#include "be_dbgout.h" #include "obst.h" -#include "beabi_t.h" #include "firm_types.h" +#include "be_types.h" typedef struct dbg_handle dbg_handle; @@ -40,14 +41,14 @@ typedef struct debug_ops { /** close the stabs handler. */ void (*close)(dbg_handle *handle); - /** start a new source object (compilation unit) */ - void (*so)(dbg_handle *handle, const char *filename); + /** start a compilation unit */ + void (*unit_begin)(dbg_handle *handle, const char *filename); - /** Main Program */ - void (*main_program)(dbg_handle *handle); + /** end compilation unit */ + void (*unit_end)(dbg_handle *handle); /** dumps the stabs for a method begin */ - void (*method_begin)(dbg_handle *handle, ir_entity *ent, const be_stack_layout_t *layout); + void (*method_begin)(dbg_handle *handle, const ir_entity *ent); /** dumps the stabs for a method end */ void (*method_end)(dbg_handle *handle); @@ -56,7 +57,7 @@ typedef struct debug_ops { void (*types)(dbg_handle *handle); /** dump a variable in the global type */ - void (*variable)(dbg_handle *h, ir_entity *ent); + void (*variable)(dbg_handle *h, const ir_entity *ent); /** notify debug info about position change */ void (*set_dbg_info)(dbg_handle *h, dbg_info *dbgi);