differentiate between Bad and Deleted (because of exchange) nodes, this avoid some...
[libfirm] / ir / be / bedbgout.c
index cb5591d..a585c8c 100644 (file)
@@ -24,9 +24,7 @@
  * @date    11.9.2006
  * @version $Id: bestabs.c 17143 2008-01-02 20:56:33Z beck $
  */
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
+#include "config.h"
 
 #include "be_dbgout_t.h"
 #include "bemodule.h"
 
 static dbg_handle *handle = NULL;
 
-void be_dbg_close(void) {
+void be_dbg_close(void)
+{
        if (handle->ops->close)
                handle->ops->close(handle);
 }
 
-void be_dbg_so(const char *filename) {
+void be_dbg_so(const char *filename)
+{
        if (handle->ops->so)
                handle->ops->so(handle, filename);
 }
 
-void be_dbg_main_program(void) {
+void be_dbg_main_program(void)
+{
        if (handle->ops->main_program)
                handle->ops->main_program(handle);
 }
 
-void be_dbg_method_begin(ir_entity *ent, const be_stack_layout_t *layout) {
+void be_dbg_method_begin(const ir_entity *ent)
+{
        if (handle->ops->method_begin)
-               handle->ops->method_begin(handle, ent, layout);
+               handle->ops->method_begin(handle, ent);
 }
 
-void be_dbg_method_end(void) {
+void be_dbg_method_end(void)
+{
        if (handle->ops->method_end)
                handle->ops->method_end(handle);
 }
 
-void be_dbg_types(void) {
+void be_dbg_types(void)
+{
        if (handle->ops->types)
                handle->ops->types(handle);
 }
 
-void be_dbg_variable(ir_entity *ent) {
+void be_dbg_variable(const ir_entity *ent)
+{
        if (handle->ops->variable)
                handle->ops->variable(handle, ent);
 }
 
-void be_dbg_set_dbg_info(dbg_info *dbgi) {
+void be_dbg_set_dbg_info(dbg_info *dbgi)
+{
        if (handle->ops->set_dbg_info)
                handle->ops->set_dbg_info(handle, dbgi);
 }
@@ -77,13 +83,11 @@ void be_dbg_set_dbg_info(dbg_info *dbgi) {
 static be_module_list_entry_t       *dbgout_modules         = NULL;
 static be_create_dbgout_module_func  selected_dbgout_module = NULL;
 
-void be_dbg_open(void) {
+void be_dbg_open(void)
+{
        handle = selected_dbgout_module();
 }
 
-void be_register_dbgout_module(const char *name,
-                               be_create_dbgout_module_func func);
-
 void be_register_dbgout_module(const char *name,
                                be_create_dbgout_module_func func)
 {
@@ -99,12 +103,12 @@ static dbg_handle *create_null_dbgout_module(void)
        return &null_handle;
 }
 
-void be_init_dbgout(void) {
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_dbgout);
+void be_init_dbgout(void)
+{
        lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
 
        be_add_module_list_opt(be_grp, "debuginfo", "debug info format",
                               &dbgout_modules, (void**) &selected_dbgout_module);
-       be_register_dbgout_module("null", create_null_dbgout_module);
+       be_register_dbgout_module("none", create_null_dbgout_module);
 }
-
-BE_REGISTER_MODULE_CONSTRUCTOR(be_init_dbgout);