Fixed function implemenation type
[libfirm] / ir / debug / dbginfo.h
1 /*
2 *  Copyright (C) 2001 by Universitaet Karlsruhe
3 *  All rights reserved.
4 *
5 *  Authors: Goetz Lindenmaier
6 *
7 *  dbginfo: This is the Firm interface to debugging support.  Firm requires
8 *  a debugging module fulfilling this interface, else no debugging information
9 *  is passed to the backend.
10 *  The interface requires a datatype representing the debugging information.
11 *  Firm supports administrating a reference to the debug information
12 *  in every firm node.  Further Firm optimizations call routines to
13 *  propagate debug information from old nodes to new nodes if the optimization
14 *  replaces the old ones by the new ones.
15 *
16 */
17
18 /* $Id$ */
19
20 # ifndef _DBGINFO_H_
21 # define _DBGINFO_H_
22
23 #include "ident.h"
24
25 #ifndef _IR_NODE_TYPEDEF_
26 #define _IR_NODE_TYPEDEF_
27 typedef struct ir_node ir_node;
28 #endif
29
30 /* to resolve recursion between entity.h and type.h */
31 #ifndef _ENTITY_TYPEDEF_
32 #define _ENTITY_TYPEDEF_
33 typedef struct entity entity;
34 #endif
35
36 #ifndef _TYPE_TYPEDEF_
37 #define _TYPE_TYPEDEF_
38 typedef struct type type;
39 #endif
40
41 /**
42  *
43  *   An abstract data type containing information for
44  *   debugging support.
45  *   This datatype is not defined in the firm library, but pointers
46  *   to this type can be stored in firm nodes.
47  */
48 typedef struct dbg_info dbg_info;
49 /* Routines to access the field of an ir node containing the
50    debugging information. */
51 INLINE void set_irn_dbg_info(ir_node *n, dbg_info* db);
52 INLINE dbg_info *get_irn_dbg_info(ir_node *n);
53 /* Routines to access the field of an entity containing the
54    debugging information. */
55 INLINE void set_entity_dbg_info(entity *ent, dbg_info* db);
56 INLINE dbg_info *get_entity_dbg_info(entity *ent);
57 /* Routines to access the field of a type containing the
58    debugging information. */
59 INLINE void set_type_dbg_info(type *tp, dbg_info* db);
60 INLINE dbg_info *get_type_dbg_info(type *tp);
61
62 /**
63  *
64  *   An enumeration indicating the action performed by a
65  *   transformation.
66  */
67 typedef enum {
68   dbg_error = 0,
69   dbg_opt_ssa,        /* Optimization of the SSA representation, e.g., removal
70                          of superfluent phi nodes. */
71   dbg_opt_auxnode,    /* Removal of unnecessary auxilliary nodes. */
72   dbg_const_eval,     /* A Firm subgraph was evaluated to a single constant. */
73   dbg_straightening,  /* A Firm subgraph was replaced by a single, existing
74                          block. */
75   dbg_if_simplification, /* The control flow of an if is changed as either the
76                             else, the then or both blocks are empty. */
77   dbg_algebraic_simplification,
78   dbg_write_after_write,
79   dbg_write_after_read,
80   dbg_max
81 } dbg_action;
82
83
84 /**
85  *
86  *   converts enum to string
87  *
88  */
89 static const char* dbg_action_2_str(dbg_action a) {
90   switch(a) {
91   case dbg_error: return "dbg_error"; break;
92   case dbg_opt_ssa: return "dbg_opt_ssa"; break;
93   case dbg_opt_auxnode: return "dbg_opt_auxnode"; break;
94   case dbg_const_eval: return "dbg_const_eval"; break;
95   case dbg_straightening: return "dbg_straightening"; break;
96   case dbg_if_simplification: return "dbg_if_simplification"; break;
97   case dbg_algebraic_simplification:
98     return "dbg_algebraic_simplification"; break;
99   case dbg_write_after_write: return "dbg_write_after_write"; break;
100   case dbg_write_after_read: return "dbg_write_after_read"; break;
101   default:
102     if (a <= dbg_max)
103       return "string conversion not implemented";
104     else
105       assert(0);
106   }
107 }
108
109
110 /**
111  *
112  *   initializes the debug support.
113  *   @param Pointers to two functions that merge the debug information when a
114  *   @param transformation of a firm graph is performed.
115  *   @param Firm transformations call one of these functions.
116  *   - dbg_info_merge_pair() is called in the following situation:
117  *     @param The optimization replaced the old node by the new one.  The new node
118  *     @param might be a recent allocated node not containing any debug information,
119  *     @param or just another node from somewhere in the graph with the same
120  *     @param semantics.
121  *   - dbg_info_merge_sets() is called in the following situation:
122  *     @param The optimization replaced a subgraph by another subgraph.  There is no
123  *     @param obviouse mapping between single nodes in both subgraphs.  The optimization
124  *     @param simply passes two lists to the debug module, one containing the nodes in
125  *     @param the old subgraph, the other containing the nodes in the new subgraph.
126  *     @param The same node can be in both lists.
127  *   @param Further both functions pass an enumeration indicating the action
128  *   @param performed by the transformation, e.g. the kind of optimization performed.
129  *   @return No result.
130  *
131  */
132
133
134 typedef void (merge_pair_func)(ir_node *, ir_node *, dbg_action);
135 typedef void (merge_sets_func)(ir_node **, int, ir_node **, int, dbg_action);
136
137 void dbg_init(merge_pair_func *mpf, merge_sets_func *msf);
138
139
140 #endif /* _DBGINFO_H_ */