X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbe_dbgout.h;h=6d13844e75b3ac8f047de1a2f368d0be6025614c;hb=bdc59608633f59b0541a04883c24d19b1bc0ffae;hp=9bf8faac22c3e50be6d9e28af1c9a444bda8d330;hpb=379fd05b0fb269dd9b9105810de1ce565b18e446;p=libfirm diff --git a/ir/be/be_dbgout.h b/ir/be/be_dbgout.h index 9bf8faac2..6d13844e7 100644 --- a/ir/be/be_dbgout.h +++ b/ir/be/be_dbgout.h @@ -35,14 +35,14 @@ void be_dbg_open(void); /** close a debug handler. */ void be_dbg_close(void); -/** start a new source object (compilation unit) */ -void be_dbg_so(const char *filename); +/** start a compilation unit */ +void be_dbg_unit_begin(const char *filename); -/** Main program */ -void be_dbg_main_program(void); +/** end compilation unit */ +void be_dbg_unit_end(void); /** debug for a method begin */ -void be_dbg_method_begin(ir_entity *ent, const be_stack_layout_t *layout); +void be_dbg_method_begin(const ir_entity *ent); /** debug for a method end */ void be_dbg_method_end(void); @@ -51,7 +51,7 @@ void be_dbg_method_end(void); void be_dbg_types(void); /** dump a variable in the global type */ -void be_dbg_variable(struct obstack *obst, ir_entity *ent); +void be_dbg_variable(const ir_entity *ent); void be_dbg_set_dbg_info(dbg_info *dbgi);