save filename
[libfirm] / ir / debug / dbginfo.h
index fb7ee35..e8f3bc5 100644 (file)
@@ -1,7 +1,14 @@
 /*
-*  Copyright (C) 2001 by Universitaet Karlsruhe
-*  All rights reserved.
-*/
+ * Project:     libFIRM
+ * File name:   ir/debug/dbginfo.h
+ * 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.
+ */
 
 /**
 * @file  dbginfo.h
 *
 *  @author Goetz Lindenmaier
 *
-*  Firm requires
-*  a debugging module fulfilling this interface, else no debugging information
-*  is passed to the backend.
-*  The interface requires a datatype representing the debugging information.
-*  Firm supports administrating a reference to the debug information
-*  in every firm node.  Further Firm optimizations call routines to
-*  propagate debug information from old nodes to new nodes if the optimization
-*  replaces the old ones by the new ones.
+*  Firm requires a debugging module fulfilling this interface, else no
+*  debugging information is passed to the backend.
+*  The interface requires a datatype representing the debugging
+*  information.  Firm supports administrating a reference to the debug
+*  information in every firm node.  Further Firm optimizations call
+*  routines to propagate debug information from old nodes to new nodes
+*  if the optimization replaces the old ones by the new ones.
 *
 */
 
-/* $Id$ */
-
 # ifndef _DBGINFO_H_
 # define _DBGINFO_H_
 
@@ -106,14 +110,20 @@ typedef enum {
                                      after write optimization. */
   dbg_write_after_read,         /**< A Firm subgraph was replaced because of a write
                                      after read optimization. */
+  dbg_rem_poly_call,            /**< Remove polymorphic call. */
   dbg_max                       /**< Maximum value. */
+
 } dbg_action;
 
 
 /**
  * Converts enum values to strings.
  */
-static const char* dbg_action_2_str(dbg_action a) {
+#ifdef __GNUC__
+INLINE static const char* dbg_action_2_str(dbg_action) __attribute__ ((unused));
+#endif
+
+INLINE static const char* dbg_action_2_str(dbg_action a) {
   switch(a) {
   case dbg_error: return "dbg_error"; break;
   case dbg_opt_ssa: return "dbg_opt_ssa"; break;
@@ -125,11 +135,13 @@ static const char* dbg_action_2_str(dbg_action a) {
     return "dbg_algebraic_simplification"; break;
   case dbg_write_after_write: return "dbg_write_after_write"; break;
   case dbg_write_after_read: return "dbg_write_after_read"; break;
+  case dbg_rem_poly_call: return "dbg_rem_poly_call"; break;
   default:
     if (a <= dbg_max)
       return "string conversion not implemented";
     else
       assert(0);
+    return NULL;
   }
 }