fc93be889fe848cd19033fbfaada42d3b99bf347
[libfirm] / ir / debug / dbginfo.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/debug/dbginfo.h
4  * Purpose:     Implements the Firm interface to debug information.
5  * Author:      Goetz Lindenmaier
6  * Modified by:
7  * Created:     2001
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2001-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14 * @file  dbginfo.h
15 *
16 *  This is the Firm interface to debugging support.
17 *
18 *  @author Goetz Lindenmaier
19 *
20 *  Firm requires a debugging module fulfilling this interface, else no
21 *  debugging information is passed to the backend.
22 *  The interface requires a datatype representing the debugging
23 *  information.  Firm supports administrating a reference to the debug
24 *  information in every firm node.  Further Firm optimizations call
25 *  routines to propagate debug information from old nodes to new nodes
26 *  if the optimization replaces the old ones by the new ones.
27 *
28 */
29
30 # ifndef _DBGINFO_H_
31 # define _DBGINFO_H_
32
33 #include "ident.h"
34
35 #ifndef _IR_NODE_TYPEDEF_
36 #define _IR_NODE_TYPEDEF_
37 typedef struct ir_node ir_node;
38 #endif
39
40 /* to resolve recursion between entity.h and type.h */
41 #ifndef _ENTITY_TYPEDEF_
42 #define _ENTITY_TYPEDEF_
43 typedef struct entity entity;
44 #endif
45
46 #ifndef _TYPE_TYPEDEF_
47 #define _TYPE_TYPEDEF_
48 typedef struct type type;
49 #endif
50
51 /**
52  * @defgroup debug    The Firm interface to debugging support.
53  *
54  * @{
55  */
56
57 /**
58  * An abstract data type containing information for
59  * debugging support.
60  *
61  * This opaque data type is not defined anywhere in the firm library,
62  * but pointers to this type can be stored in firm nodes.
63  */
64 typedef struct dbg_info dbg_info;
65
66 /**
67  * Sets the debug information of a node.
68  */
69 void set_irn_dbg_info(ir_node *n, dbg_info *db);
70
71 /**
72  * Returns the debug information of an node.
73  */
74 dbg_info *get_irn_dbg_info(ir_node *n);
75
76 /**
77  * Sets the debug information of an entity.
78  */
79 void set_entity_dbg_info(entity *ent, dbg_info *db);
80
81 /**
82  * Returns the debug information of an entity.
83  */
84 dbg_info *get_entity_dbg_info(entity *ent);
85
86 /**
87  * Sets the debug information of a type.
88  */
89 void set_type_dbg_info(type *tp, dbg_info *db);
90
91 /**
92  * Returns the debug information of a type.
93  */
94 dbg_info *get_type_dbg_info(type *tp);
95
96 /**
97  * An enumeration indicating the action performed by a transformation.
98  */
99 typedef enum {
100   dbg_error = 0,
101   dbg_opt_ssa,           /**< Optimization of the SSA representation, e.g., removal of superfluent phi nodes. */
102   dbg_opt_auxnode,       /**< Removal of unnecessary auxiliary nodes. */
103   dbg_const_eval,        /**< A Firm subgraph was evaluated to a single constant. */
104   dbg_opt_cse,           /**< A Firm node was replaced due to common subexpression elimination. */
105   dbg_straightening,     /**< A Firm subgraph was replaced by a single, existing block. */
106   dbg_if_simplification, /**< The control flow of an if is changed as either the
107                                     else, the then or both blocks are empty. */
108   dbg_algebraic_simplification, /**< A Firm subgraph was replaced because of an algebraic
109                                      simplification. */
110   dbg_write_after_write,        /**< A Firm subgraph was replaced because of a write
111                                      after write optimization. */
112   dbg_write_after_read,         /**< A Firm subgraph was replaced because of a write
113                                      after read optimization. */
114   dbg_read_after_write,         /**< A Firm subgraph was replaced because of a read
115                                      after write optimization. */
116   dbg_read_after_read,          /**< A Firm subgraph was replaced because of a read
117                                      after read optimization. */
118   dbg_read_a_const,             /**< A Firm subgraph was replaced because of a read
119                                      a constant optimization. */
120   dbg_rem_poly_call,            /**< Remove polymorphic call. */
121   dbg_dead_code,                /**< Removing unreachable code, I.e. blocks that are never executed. */
122   dbg_opt_confirm,              /**< A Firm subgraph was replace because of a Confirmation */
123   dbg_max                       /**< Maximum value. */
124 } dbg_action;
125
126 /**
127  * Converts a debug_action into a string.
128  *
129  * @param a  the debug action
130  */
131 const char *dbg_action_2_str(dbg_action a);
132
133 /**
134  * The type of the debug info merge function.
135  *
136  * @param new_node    the new ir node
137  * @param old_node    the old ir node
138  * @param action      the action that triggers the merge
139  *
140  * @see dbg_init()
141  */
142 typedef void merge_pair_func(ir_node *new_node, ir_node *old_node, dbg_action action);
143
144 /**
145  * The type of the debug info merge sets function.
146  *
147  * @param new_node_array    array of new nodes
148  * @param new_num_entries   number of entries in new_node_array
149  * @param old_node_array    array of old nodes
150  * @param old_num_entries   number of entries in old_node_array
151  * @param action            the action that triggers the merge
152  *
153  * @see dbg_init()
154  */
155 typedef void merge_sets_func(ir_node **new_node_array, int new_num_entries, ir_node **old_node_array, int old_num_entries, dbg_action action);
156
157 /**
158  * The type of the debug info to human readable string function.
159  *
160  * @param buf    pointer to a buffer that will hold the info
161  * @param len    length of the buffer
162  * @param dbg    the debug info
163  *
164  * @return  Number of written characters to the buffer.
165  *
166  * @see dbg_init()
167  */
168 typedef unsigned snprint_dbg_func(char *buf, unsigned len, const dbg_info *dbg);
169
170 /**
171  *  Initializes the debug support.
172  *
173  *  @param dbg_info_merge_pair   see function description
174  *  @param dbg_info_merge_sets   see function description
175  *  @param snprint_dbg           see function description
176  *
177  *  This function takes Pointers to two functions that merge the
178  *  debug information when a
179  *  transformation of a firm graph is performed.
180  *  Firm transformations call one of these functions.
181  *
182  *   - dbg_info_merge_pair() is called in the following situation:
183  *     The optimization replaced the old node by the new one.  The new node
184  *     might be a recent allocated node not containing any debug information,
185  *     or just another node from somewhere in the graph with the same
186  *     semantics.
187  *   - dbg_info_merge_sets() is called in the following situation:
188  *     The optimization replaced a subgraph by another subgraph.  There is no
189  *     obviously mapping between single nodes in both subgraphs.  The optimization
190  *     simply passes two lists to the debug module, one containing the nodes in
191  *     the old subgraph, the other containing the nodes in the new subgraph.
192  *     The same node can be in both lists.
193  *
194  *   Further both functions pass an enumeration indicating the action
195  *   performed by the transformation, e.g. the kind of optimization performed.
196  *
197  * The third argument snprint_dbg is called to convert a debug info into a human readable string.
198  * This string is the dumped in the dumper functions.
199  *
200  * Note that if NULL is passed for dbg_info_merge_pair or dbg_info_merge_sets, the default
201  * implementations default_dbg_info_merge_pair() and default_dbg_info_merge_sets() are used.
202  * NULL passed for snprint_dbg means no output.
203  */
204 void dbg_init(merge_pair_func *dbg_info_merge_pair, merge_sets_func *dbg_info_merge_sets, snprint_dbg_func *snprint_dbg);
205
206 /** @} */
207
208 /**
209  * The default merge_pair_func implementation, simply copies the debug info
210  * from old to new.
211  */
212 void default_dbg_info_merge_pair(ir_node *nw, ir_node *old, dbg_action info);
213
214 /**
215  * The default merge_sets_func implementation, does nothing
216  */
217 void default_dbg_info_merge_sets(ir_node **new_nodes, int n_new_nodes,
218                             ir_node **old_nodes, int n_old_nodes,
219                             dbg_action info);
220
221 #endif /* _DBGINFO_H_ */