Remove the pointless function firm_init_hooks(). Its only purpose seems to be to...
[libfirm] / include / libfirm / irhooks.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Generic hooks for various libFirm functions.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #ifndef FIRM_IR_IRHOOKS_H
27 #define FIRM_IR_IRHOOKS_H
28
29 #include "irop.h"
30 #include "irnode.h"
31 #include "irgraph.h"
32
33 /**
34  * options for the hook_merge_nodes hook
35  */
36 typedef enum {
37         HOOK_OPT_DEAD_BLOCK,  /**< a block was removed because it's dead */
38         HOOK_OPT_STG,         /**< straightening optimization */
39         HOOK_OPT_IFSIM,       /**< if simplification */
40         HOOK_OPT_CONST_EVAL,  /**< constant evaluation */
41         HOOK_OPT_ALGSIM,      /**< algebraic simplification */
42         HOOK_OPT_PHI,         /**< Phi optimization */
43         HOOK_OPT_SYNC,        /**< Sync optimization */
44         HOOK_OPT_WAW,         /**< Write-After-Write optimization */
45         HOOK_OPT_WAR,         /**< Write-After-Read optimization */
46         HOOK_OPT_RAW,         /**< Read-After-Write optimization */
47         HOOK_OPT_RAR,         /**< Read-After-Read optimization */
48         HOOK_OPT_RC,          /**< Read-a-Const optimization */
49         HOOK_OPT_TUPLE,       /**< Tuple optimization */
50         HOOK_OPT_ID,          /**< ID optimization */
51         HOOK_OPT_CSE,         /**< common subexpression elimination */
52         HOOK_OPT_STRENGTH_RED,/**< strength reduction */
53         HOOK_OPT_ARCH_DEP,    /**< architecture dependent optimization */
54         HOOK_OPT_REASSOC,     /**< reassociation */
55         HOOK_OPT_POLY_CALL,   /**< polymorphic call optimization */
56         HOOK_OPT_IF_CONV,     /**< an if conversion was tried */
57         HOOK_OPT_FUNC_CALL,   /**< a real function call was removed */
58         HOOK_OPT_CONFIRM,     /**< a value was substituted by another due to a Confirm */
59         HOOK_OPT_CONFIRM_C,   /**< a value was substituted by a const due to a Confirm */
60         HOOK_OPT_CONFIRM_E,   /**< a value was evaluated due to a Confirm */
61         HOOK_OPT_EXC_REM,     /**< a exception edge was removed due to a Confirmation prove */
62         HOOK_OPT_NORMALIZE,   /**< a commutative node was normalized */
63         HOOK_LOWERED,         /**< lowered */
64         HOOK_BACKEND,         /**< a backend transformation */
65         HOOK_OPT_LAST
66 } hook_opt_kind;
67
68 typedef enum _if_result_t {
69         IF_RESULT_SUCCESS         = 0,  /**< if conversion could be done */
70         IF_RESULT_SIDE_EFFECT     = 1,  /**< if conversion failed because of side effect */
71         IF_RESULT_SIDE_EFFECT_PHI = 2,  /**< if conversion failed because of Phi node found */
72         IF_RESULT_TOO_DEEP        = 3,  /**< if conversion failed because of to deep DAG's */
73         IF_RESULT_BAD_CF          = 4,  /**< if conversion failed because of bad control flow */
74         IF_RESULT_DENIED          = 5,  /**< if conversion failed because of architecture deny */
75         IF_RESULT_LAST
76 } if_result_t;
77
78 /**
79  * A generic function type.
80  */
81 typedef void (generic_func)(void);
82
83 /**
84  * a hook entry
85  */
86 typedef struct hook_entry {
87         /** A union of all possible hook types. */
88         union {
89                 /** This hook is called, after a new ir_op was created. */
90                 void (*_hook_new_ir_op)(void *context, ir_op *op);
91
92                 /** This hook is called, before am ir_op is destroyed. */
93                 void (*_hook_free_ir_op)(void *context, ir_op *op);
94
95                 /** This hook is called, after a new IR-node was created and before it is optimized. */
96                 void (*_hook_new_node)(void *context, ir_graph *graph, ir_node *node);
97
98                 /** This hook is called, before a node input was changed. */
99                 void (*_hook_set_irn_n)(void *context, ir_node *src,
100                                         int pos, ir_node *tgt, ir_node *old_tgt);
101
102                 /** This hook is called, before a node is replaced (exchange()) by another. */
103                 void (*_hook_replace)(void *context, ir_node *old_node, ir_node *new_node);
104
105                 /** This hook is called, before a node is changed into an Id node. */
106                 void (*_hook_turn_into_id)(void *context, ir_node *node);
107
108                 /** This hook is called, after a commutative node was normalized. */
109                 void (*_hook_normalize)(void *context, ir_node *node);
110
111                 /** This hook is called, after a new graph was created and before the first block
112                 *  on this graph is build. */
113                 void (*_hook_new_graph)(void *context, ir_graph *irg, ir_entity *ent);
114
115                 /** This hook is called before a graph is freed. */
116                 void (*_hook_free_graph)(void *context, ir_graph *irg);
117
118                 /** This hook is called before an irg walk is started. */
119                 void (*_hook_irg_walk)(void *context, ir_graph *irg, generic_func *pre, generic_func *post);
120
121                 /** This hook is called before an block wise irg walk is started. */
122                 void (*_hook_irg_walk_blkwise)(void *context, ir_graph *irg, generic_func *pre, generic_func *post);
123
124                 /** This hook is called before an block walk is started. */
125                 void (*_hook_irg_block_walk)(void *context, ir_graph *irg, ir_node *node, generic_func *pre, generic_func *post);
126
127                 /** This hook is called, when debug info must be merged. */
128                 void (*_hook_merge_nodes)(void *context, ir_node **new_node_array, int new_num_entries,
129                                           ir_node **old_node_array, int old_num_entries, hook_opt_kind opt);
130
131                 /** This hook is called, when reassociation is started/stopped. */
132                 void (*_hook_reassociate)(void *context, int start);
133
134                 /** This hook is called, before a node is lowered. */
135                 void (*_hook_lower)(void *context, ir_node *node);
136
137                 /** This hook is called, before a graph is inlined. */
138                 void (*_hook_inline)(void *context, ir_node *call, ir_graph *irg);
139
140                 /** This hook is called, before tail recursion is applied to a graph. */
141                 void (*_hook_tail_rec)(void *context, ir_graph *irg, int n_calls);
142
143                 /** This hook is called, before a node is replaced due to strength reduction */
144                 void (*_hook_strength_red)(void *context, ir_graph *irg, ir_node *node);
145
146                 /** This hook is called, when dead node elimination is started/stopped. */
147                 void (*_hook_dead_node_elim)(void *context, ir_graph *irg, int start);
148
149                 /** This hook is called, when a node is substituted during dead node elimination. */
150                 void (*_hook_dead_node_elim_subst)(void *context, ir_graph *irg, ir_node *old, ir_node *nw);
151
152                 /** This hook is called after if conversion has run. */
153                 void (*_hook_if_conversion)(void *context, ir_graph *irg, ir_node *phi, int pos, ir_node *mux, if_result_t reason);
154
155                 /** This hook is called after a call was detected as const call */
156                 void (*_hook_func_call)(void *context, ir_graph *irg, ir_node *call);
157
158                 /** This hook is called after a Mul was replaced by a series of Shift and Add/Sub operations. */
159                 void (*_hook_arch_dep_replace_mul_with_shifts)(void *context, ir_node *irn);
160
161                 /** This hook is called after a Div/Mod/DivMod by a constant value was replaced. */
162                 void (*_hook_arch_dep_replace_division_by_const)(void *context, ir_node *irn);
163
164                 /** This hook is called after a new mode was registered. */
165                 void (*_hook_new_mode)(void *context, const ir_mode *tmpl, ir_mode *mode);
166
167                 /** This hook is called after a new entity was created. */
168                 void (*_hook_new_entity)(void *context, ir_entity *ent);
169
170                 /** This hook is called after a new type was created. */
171                 void (*_hook_new_type)(void *context, ir_type *tp);
172
173                 /** This hook is called at the end of the node info dumper to dump additional node info. */
174                 void (*_hook_node_info)(void *context, FILE *f, const ir_node *n);
175         } hook;
176
177         /** the context for every hook */
178         void *context;
179
180         /** needed for chaining */
181         struct hook_entry *next;
182 } hook_entry_t;
183
184 /**
185  * possible hooks
186  */
187 typedef enum {
188         hook_new_ir_op,
189         hook_free_ir_op,
190         hook_new_node,
191         hook_set_irn_n,
192         hook_replace,
193         hook_turn_into_id,
194         hook_normalize,
195         hook_new_graph,
196         hook_free_graph,
197         hook_irg_walk,
198         hook_irg_walk_blkwise,
199         hook_irg_block_walk,
200         hook_merge_nodes,
201         hook_reassociate,
202         hook_lower,
203         hook_inline,
204         hook_tail_rec,
205         hook_strength_red,
206         hook_dead_node_elim,
207         hook_dead_node_elim_subst,
208         hook_if_conversion,
209         hook_func_call,
210         hook_arch_dep_replace_mul_with_shifts,
211         hook_arch_dep_replace_division_by_const,
212         hook_new_mode,
213         hook_new_entity,
214         hook_new_type,
215         hook_node_info,
216         hook_last
217 } hook_type_t;
218
219 /**
220  * register a hook entry.
221  *
222  * @param hook   the hook type
223  * @param entry  the hook entry
224  */
225 void register_hook(hook_type_t hook, hook_entry_t *entry);
226
227 /**
228  * unregister a hook entry.
229  *
230  * @param hook   the hook type
231  * @param entry  the hook entry
232  */
233 void unregister_hook(hook_type_t hook, hook_entry_t *entry);
234
235 extern hook_entry_t *hooks[hook_last];
236
237 /**
238  * execute the hook what with the args args
239  * Do not use this macro directly.
240  */
241 #define hook_exec(what, args) do {           \
242   hook_entry_t *_p;                          \
243   for (_p = hooks[what]; _p; _p = _p->next){ \
244     void *ctx = _p->context;                 \
245     _p->hook._##what args;                   \
246   }                                          \
247 } while (0)
248
249 #define hook_new_ir_op(op)                hook_exec(hook_new_ir_op, (ctx, op))
250 #define hook_free_ir_op(op)               hook_exec(hook_free_ir_op, (ctx, op))
251 #define hook_new_node(graph, node)        hook_exec(hook_new_node, (ctx, graph, node))
252 #define hook_set_irn_n(src, pos, tgt, old_tgt) \
253   hook_exec(hook_set_irn_n, (ctx, src, pos, tgt, old_tgt))
254 #define hook_replace(old, nw)             hook_exec(hook_replace, (ctx, old, nw))
255 #define hook_turn_into_id(node)           hook_exec(hook_turn_into_id, (ctx, node))
256 #define hook_normalize(node)              hook_exec(hook_normalize, (ctx, node))
257 #define hook_new_graph(irg, ent)          hook_exec(hook_new_graph, (ctx, irg, ent))
258 #define hook_free_graph(irg)              hook_exec(hook_free_graph, (ctx, irg))
259 #define hook_irg_walk(irg, pre, post)     hook_exec(hook_irg_walk, (ctx, irg, pre, post))
260 #define hook_irg_walk_blkwise(irg, pre, post) \
261   hook_exec(hook_irg_walk_blkwise, (ctx, irg, pre, post))
262 #define hook_irg_block_walk(irg, node, pre, post) \
263   hook_exec(hook_irg_block_walk, (ctx, irg, node, pre, post))
264 #define hook_merge_nodes(new_node_array, new_num_entries, old_node_array, old_num_entries, opt) \
265   hook_exec(hook_merge_nodes, (ctx, new_node_array, new_num_entries, old_node_array, old_num_entries, opt))
266 #define hook_reassociate(start)           hook_exec(hook_reassociate, (ctx, start))
267 #define hook_lower(node)                  hook_exec(hook_lower, (ctx, node))
268 #define hook_inline(call, irg)            hook_exec(hook_inline, (ctx, call, irg))
269 #define hook_tail_rec(irg, n_calls)       hook_exec(hook_tail_rec, (ctx, irg, n_calls))
270 #define hook_strength_red(irg, node) \
271   hook_exec(hook_strength_red, (ctx, irg, node))
272 #define hook_dead_node_elim(irg, start)   hook_exec(hook_dead_node_elim, (ctx, irg, start))
273 #define hook_dead_node_elim_subst(irg, old, nw) \
274    hook_exec(hook_dead_node_elim_subst, (ctx, irg, old, nw))
275 #define hook_if_conversion(irg, phi, pos, mux, reason) \
276   hook_exec(hook_if_conversion, (ctx, irg, phi, pos, mux, reason))
277 #define hook_func_call(irg, call) \
278   hook_exec(hook_func_call, (ctx, irg, call))
279 #define hook_arch_dep_replace_mul_with_shifts(irn) \
280   hook_exec(hook_arch_dep_replace_mul_with_shifts, (ctx, irn))
281 #define hook_arch_dep_replace_division_by_const(irn) \
282   hook_exec(hook_arch_dep_replace_division_by_const, (ctx, irn))
283 #define hook_new_mode(tmpl, mode)         hook_exec(hook_new_mode, (ctx, tmpl, mode))
284 #define hook_new_entity(ent)              hook_exec(hook_new_entity, (ctx, ent))
285 #define hook_new_type(tp)                 hook_exec(hook_new_type, (ctx, tp))
286 #define hook_node_info(F, node)           hook_exec(hook_node_info, (ctx, F, node))
287
288 #endif