beifg: Simplify the quite complicated way to divide a number by 2 in be_ifg_stat().
[libfirm] / ir / debug / dbginfo.c
index ef4c96c..afbdebd 100644 (file)
 /*
- * Project:     libFIRM
- * File name:   ir/debug/dbginfo.c
- * Purpose:     Implements the Firm interface to debug information.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:     2001
- * CVS-ID:      $Id$
- * Copyright:   (c) 2001-2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * This file is part of libFirm.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
+/**
+ * @file
+ * @brief    Implements the Firm interface to debug information.
+ * @author   Goetz Lindenmaier, Michael Beck
+ * @date     2001
+ */
+#include "config.h"
 
 #include "dbginfo_t.h"
 #include "irnode_t.h"
 #include "type_t.h"
 #include "entity_t.h"
-
-void
-default_dbg_info_merge_pair(ir_node *nw, ir_node *old, dbg_action info) {
-  set_irn_dbg_info(nw, get_irn_dbg_info(old));
-}
-
-void
-default_dbg_info_merge_sets(ir_node **new_nodes, int n_new_nodes,
-            ir_node **old_nodes, int n_old_nodes,
-            dbg_action info) {
-}
+#include "error.h"
 
 merge_pair_func *__dbg_info_merge_pair = default_dbg_info_merge_pair;
-
 merge_sets_func *__dbg_info_merge_sets = default_dbg_info_merge_sets;
 
-snprint_dbg_func *__dbg_info_snprint   = (snprint_dbg_func *)0;
-
-void dbg_init( merge_pair_func *mpf, merge_sets_func *msf, snprint_dbg_func *snprint_dbg )
+void dbg_init(merge_pair_func *mpf, merge_sets_func *msf)
 {
-  __dbg_info_merge_pair = mpf ? mpf : default_dbg_info_merge_pair;
-  __dbg_info_merge_sets = msf ? msf : default_dbg_info_merge_sets;
-  __dbg_info_snprint    = snprint_dbg;
+       __dbg_info_merge_pair = mpf ? mpf : default_dbg_info_merge_pair;
+       __dbg_info_merge_sets = msf ? msf : default_dbg_info_merge_sets;
 }
 
+/*
+ * Converts a debug_action into a string.
+ */
+const char *dbg_action_2_str(dbg_action a)
+{
+#define CASE(a) case a: return #a
 
-void
-set_irn_dbg_info(ir_node *n, struct dbg_info* db) {
-  n->dbi = db;
+       switch (a) {
+       CASE(dbg_error);
+       CASE(dbg_opt_ssa);
+       CASE(dbg_opt_auxnode);
+       CASE(dbg_const_eval);
+       CASE(dbg_opt_cse);
+       CASE(dbg_straightening);
+       CASE(dbg_if_simplification);
+       CASE(dbg_algebraic_simplification);
+       CASE(dbg_write_after_write);
+       CASE(dbg_write_after_read);
+       CASE(dbg_read_after_write);
+       CASE(dbg_read_after_read);
+       CASE(dbg_read_a_const);
+       CASE(dbg_rem_poly_call);
+       CASE(dbg_dead_code);
+       CASE(dbg_opt_confirm);
+       CASE(dbg_gvn_pre);
+       CASE(dbg_combo);
+       CASE(dbg_jumpthreading);
+       CASE(dbg_backend);
+       default:
+               if (a <= dbg_max)
+                       return "string conversion not implemented";
+               else
+                       panic("Missing debug action");
+       }
+#undef CASE
 }
 
-struct dbg_info *
-get_irn_dbg_info(ir_node *n) {
-  return n->dbi;
+void default_dbg_info_merge_pair(ir_node *nw, ir_node *old, dbg_action info)
+{
+       dbg_info *new_db = get_irn_dbg_info(nw);
+       (void) info;
+       if (new_db == NULL)
+               set_irn_dbg_info(nw, get_irn_dbg_info(old));
 }
 
+void default_dbg_info_merge_sets(ir_node **new_nodes, int n_new_nodes,
+                                 ir_node **old_nodes, int n_old_nodes,
+                                 dbg_action info)
+{
+       (void) info;
+       if (n_old_nodes == 1) {
+               dbg_info *old_db = get_irn_dbg_info(old_nodes[0]);
+               int i;
+
+               for (i = 0; i < n_new_nodes; ++i)
+                       if (get_irn_dbg_info(new_nodes[i]) == NULL)
+                               set_irn_dbg_info(new_nodes[i], old_db);
+       }
+}
 
-/* Routines to access the field of an entity containing the
-   debugging information. */
-void set_entity_dbg_info(entity *ent, dbg_info* db) {
-  ent->dbi = db;
+static src_loc_t default_retrieve_dbg(dbg_info const *const dbg)
+{
+       (void)dbg;
+       src_loc_t const loc = { NULL, 0, 0 };
+       return loc;
 }
 
-dbg_info *get_entity_dbg_info(entity *ent) {
-  return ent->dbi;
+/** The debug info retriever function. */
+static retrieve_dbg_func      retrieve_dbg      = default_retrieve_dbg;
+static retrieve_type_dbg_func retrieve_type_dbg = NULL;
+
+void ir_set_debug_retrieve(retrieve_dbg_func func)
+{
+       retrieve_dbg = func ? func : default_retrieve_dbg;
 }
 
-/* Routines to access the field of a type containing the
-   debugging information. */
-void set_type_dbg_info(type *tp, dbg_info* db) {
-  tp->dbi = db;
+src_loc_t ir_retrieve_dbg_info(dbg_info const *const dbg)
+{
+       return retrieve_dbg(dbg);
 }
 
-dbg_info *get_type_dbg_info(type *tp) {
-  return tp->dbi;
+void ir_set_type_debug_retrieve(retrieve_type_dbg_func func)
+{
+       retrieve_type_dbg = func;
 }
 
-/*
- * Converts a debug_action into a string.
- */
-const char *dbg_action_2_str(dbg_action a) {
-#define CASE(a) case a: return #a
+void ir_retrieve_type_dbg_info(char *buffer, size_t buffer_size,
+                               const type_dbg_info *tdbgi)
+{
+       buffer[0] = '\0';
+       if (retrieve_type_dbg)
+               retrieve_type_dbg(buffer, buffer_size, tdbgi);
+       assert(buffer_size > 0);
+       buffer[buffer_size-1] = '\0';
+}
 
-  switch (a) {
-  CASE(dbg_error);
-  CASE(dbg_opt_ssa);
-  CASE(dbg_opt_auxnode);
-  CASE(dbg_const_eval);
-  CASE(dbg_opt_cse);
-  CASE(dbg_straightening);
-  CASE(dbg_if_simplification);
-  CASE(dbg_algebraic_simplification);
-  CASE(dbg_write_after_write);
-  CASE(dbg_write_after_read);
-  CASE(dbg_read_after_write);
-  CASE(dbg_read_after_read);
-  CASE(dbg_read_a_const);
-  CASE(dbg_rem_poly_call);
-  CASE(dbg_opt_confirm);
-  default:
-    if (a <= dbg_max)
-      return "string conversion not implemented";
-    else
-      assert(0);
-    return NULL;
-  }
-#undef CASE
+void ir_dbg_info_snprint(char *buf, size_t bufsize, const dbg_info *dbg)
+{
+       src_loc_t const loc = ir_retrieve_dbg_info(dbg);
+
+       if (!loc.file) {
+               assert(bufsize > 0);
+               buf[0] = 0;
+               return;
+       }
+       if (loc.column == 0) {
+               snprintf(buf, bufsize, "%s:%u", loc.file, loc.line);
+       } else {
+               snprintf(buf, bufsize, "%s:%u:%u", loc.file, loc.line, loc.column);
+       }
 }