typos fixed
[libfirm] / ir / ir / irhooks.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irhooks.h
4  * Purpose:     Generic hooks for various libFirm functions.
5  * Author:      Michael Beck
6  * Created:
7  * CVS-ID:      $Id$
8  * Copyright:   (C) 1998-2005 Universität Karlsruhe
9  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
10  */
11
12 /**
13  * @file irhooks.h
14  *
15  * Generic hooks for various libFirm functions.
16  *
17  * @author Michael Beck
18  */
19 #ifndef __IRHOOKS_H__
20 #define __IRHOOKS_H__
21
22 #include "firm_config.h"
23 #include "irop.h"
24 #include "irnode.h"
25 #include "irgraph.h"
26
27 /**
28  * options for the hook_merge_nodes hook
29  */
30 typedef enum {
31   HOOK_OPT_STG,         /**< straightening optimization */
32   HOOK_OPT_IFSIM,       /**< if simplification */
33   HOOK_OPT_CONST_EVAL,  /**< constant evaluation */
34   HOOK_OPT_ALGSIM,      /**< algebraic simplification */
35   HOOK_OPT_PHI,         /**< Phi optmization */
36   HOOK_OPT_WAW,         /**< Write-After-Write optimization */
37   HOOK_OPT_WAR,         /**< Write-After-Read optimization */
38   HOOK_OPT_RAW,         /**< Read-After-Write optimization */
39   HOOK_OPT_RAR,         /**< Read-After-Read optimization */
40   HOOK_OPT_RC,          /**< Read-a-Const optimization */
41   HOOK_OPT_TUPLE,       /**< Tuple optimization */
42   HOOK_OPT_ID,          /**< ID optimization */
43   HOOK_OPT_CSE,         /**< common subexpression elimination */
44   HOOK_OPT_STRENGTH_RED,/**< strength reduction */
45   HOOK_OPT_ARCH_DEP,    /**< architecture dependent optimization */
46   HOOK_OPT_REASSOC,     /**< reassociation */
47   HOOK_OPT_POLY_CALL,   /**< polymorphic call optimization */
48   HOOK_OPT_IF_CONV,     /**< an if conversion was tried */
49   HOOK_OPT_FUNC_CALL,   /**< a real function call was removed */
50   HOOK_OPT_CONFIRM,     /**< a value was substituted by a const due to a Confirm */
51   HOOK_LOWERED,         /**< lowered */
52   HOOK_OPT_LAST
53 } hook_opt_kind;
54
55 typedef enum _if_result_t {
56   IF_RESULT_SUCCESS         = 0,  /**< if conversion could be done */
57   IF_RESULT_SIDE_EFFECT     = 1,  /**< if conversion failed because of side effect */
58   IF_RESULT_SIDE_EFFECT_PHI = 2,  /**< if conversion failed because of Phi node found */
59   IF_RESULT_TOO_DEEP        = 3,  /**< if conversion failed because of to deep DAG's */
60   IF_RESULT_BAD_CF          = 4,  /**< if conversion failed because of bad control flow */
61   IF_RESULT_DENIED          = 5,  /**< if conversion failed because of architecture deny */
62   IF_RESULT_LAST
63 } if_result_t;
64
65 /**
66  * a hook entry
67  */
68 typedef struct hook_entry {
69   /** a union of all possible hook types */
70   union {
71     void (*_hook_new_ir_op)(void *context, ir_op *op);
72     void (*_hook_free_ir_op)(void *context, ir_op *op);
73     void (*_hook_new_node)(void *context, ir_graph *graph, ir_node *node);
74     void (*_hook_set_irn_n)(void *context, ir_node *src,
75                             int pos, ir_node *tgt, ir_node *old_tgt);
76     void (*_hook_replaced)(void *context, ir_node *old_node, ir_node *new_node);
77     void (*_hook_turn_into_id)(void *context, ir_node *node);
78     void (*_hook_new_graph)(void *context, ir_graph *irg, entity *ent);
79     void (*_hook_free_graph)(void *context, ir_graph *irg);
80     void (*_hook_irg_walk)(void *context, ir_graph *irg, void *pre, void *post);
81     void (*_hook_irg_walk_blkwise)(void *context, ir_graph *irg, void *pre, void *post);
82     void (*_hook_irg_block_walk)(void *context, ir_graph *irg, ir_node *node, void *pre, void *post);
83     void (*_hook_merge_nodes)(void *context, ir_node **new_node_array, int new_num_entries,
84                               ir_node **old_node_array, int old_num_entries, hook_opt_kind opt);
85     void (*_hook_reassociate)(void *context, int start);
86     void (*_hook_lower)(void *context, ir_node *node);
87     void (*_hook_inline)(void *context, ir_node *call, ir_graph *irg);
88     void (*_hook_tail_rec)(void *context, ir_graph *irg, int n_calls);
89     void (*_hook_strength_red)(void *context, ir_graph *irg, ir_node *strong, ir_node *cmp);
90     void (*_hook_dead_node_elim_start)(void *context, ir_graph *irg);
91     void (*_hook_dead_node_elim_stop)(void *context, ir_graph *irg);
92     void (*_hook_if_conversion)(void *context, ir_graph *irg, ir_node *phi, int pos, ir_node *mux, if_result_t reason);
93     void (*_hook_func_call)(void *context, ir_graph *irg, ir_node *call);
94     void (*_hook_arch_dep_replace_mul_with_shifts)(void *context, ir_node *irn);
95     void (*_hook_arch_dep_replace_div_by_const)(void *context, ir_node *irn);
96     void (*_hook_arch_dep_replace_mod_by_const)(void *context, ir_node *irn);
97     void (*_hook_arch_dep_replace_DivMod_by_const)(void *context, ir_node *irn);
98     void (*_hook_new_mode)(void *context, const ir_mode *tmpl, ir_mode *mode);
99   } hook;
100
101   /** the context for every hook */
102   void *context;
103
104   /** needed for chaining */
105   struct hook_entry *next;
106 } hook_entry_t;
107
108 /**
109  * possible hooks
110  */
111 typedef enum {
112   hook_new_ir_op,
113   hook_free_ir_op,
114   hook_new_node,
115   hook_set_irn_n,
116   hook_replaced,
117   hook_turn_into_id,
118   hook_new_graph,
119   hook_free_graph,
120   hook_irg_walk,
121   hook_irg_walk_blkwise,
122   hook_irg_block_walk,
123   hook_merge_nodes,
124   hook_reassociate,
125   hook_lower,
126   hook_inline,
127   hook_tail_rec,
128   hook_strength_red,
129   hook_dead_node_elim_start,
130   hook_dead_node_elim_stop,
131   hook_if_conversion,
132   hook_func_call,
133   hook_arch_dep_replace_mul_with_shifts,
134   hook_arch_dep_replace_div_by_const,
135   hook_arch_dep_replace_mod_by_const,
136   hook_arch_dep_replace_DivMod_by_const,
137   hook_new_mode,
138   hook_last,
139 } hook_type_t;
140
141 /**
142  * register the hook entry.
143  *
144  * @param hook   the hook type
145  * @rapam entry  the hook entry
146  */
147 void register_hook(hook_type_t hook, hook_entry_t *entry);
148
149 #ifdef FIRM_ENABLE_HOOKS
150
151 extern hook_entry_t *hooks[hook_last];
152
153 /**
154  * execute the hook what with the args args
155  * Do not use this macro directly.
156  */
157 #define hook_exec(what, args) do {       \
158   hook_entry_t *p;                       \
159   for (p = hooks[what]; p; p = p->next){ \
160     void *ctx = p->context;              \
161     p->hook._##what args;                \
162   }                                      \
163 } while (0)
164
165 #else
166
167 #define hook_exec(what, args)
168
169 #endif /* FIRM_ENABLE_HOOKS */
170
171 #define hook_new_ir_op(op)                hook_exec(hook_new_ir_op, (ctx, op))
172 #define hook_free_ir_op(op)               hook_exec(hook_free_ir_op, (ctx, op))
173 #define hook_new_node(graph, node)        hook_exec(hook_new_node, (ctx, graph, node))
174 #define hook_set_irn_n(src, pos, tgt, old_tgt) \
175   hook_exec(hook_set_irn_n, (ctx, src, pos, tgt, old_tgt))
176 #define hook_replaced(old, nw)            hook_exec(hook_replaced, (ctx, old, nw))
177 #define hook_turn_into_id(node)           hook_exec(hook_turn_into_id, (ctx, node))
178 #define hook_new_graph(irg, ent)          hook_exec(hook_new_graph, (ctx, irg, ent))
179 #define hook_free_graph(irg)              hook_exec(hook_free_graph, (ctx, irg))
180 #define hook_irg_walk(irg, pre, post)     hook_exec(hook_irg_walk, (ctx, irg, pre, post))
181 #define hook_irg_walk_blkwise(irg, pre, post) \
182   hook_exec(hook_irg_walk_blkwise, (ctx, irg, pre, post))
183 #define hook_irg_block_walk(irg, node, pre, post) \
184   hook_exec(hook_irg_block_walk, (ctx, irg, node, pre, post))
185 #define hook_merge_nodes(new_node_array, new_num_entries, old_node_array, old_num_entries, opt) \
186   hook_exec(hook_merge_nodes, (ctx, new_node_array, new_num_entries, old_node_array, old_num_entries, opt))
187 #define hook_reassociate(start)           hook_exec(hook_reassociate, (ctx, start))
188 #define hook_lower(node)                  hook_exec(hook_lower, (ctx, node))
189 #define hook_inline(call, irg)            hook_exec(hook_inline, (ctx, call, irg))
190 #define hook_tail_rec(irg, n_calls)       hook_exec(hook_tail_rec, (ctx, irg, n_calls))
191 #define hook_strength_red(irg, strong, cmp) \
192   hook_exec(hook_strength_red, (ctx, irg, strong, cmp))
193 #define hook_dead_node_elim_start(irg)    hook_exec(hook_dead_node_elim_start, (ctx, irg))
194 #define hook_dead_node_elim_stop(irg)     hook_exec(hook_dead_node_elim_stop, (ctx, irg))
195 #define hook_if_conversion(irg, phi, pos, mux, reason) \
196   hook_exec(hook_if_conversion, (ctx, irg, phi, pos, mux, reason))
197 #define hook_func_call(irg, call) \
198   hook_exec(hook_func_call, (ctx, irg, call))
199 #define hook_arch_dep_replace_mul_with_shifts(irn) \
200   hook_exec(hook_arch_dep_replace_mul_with_shifts, (ctx, irn))
201 #define hook_arch_dep_replace_div_by_const(irn) \
202   hook_exec(hook_arch_dep_replace_div_by_const, (ctx, irn))
203 #define hook_arch_dep_replace_mod_by_const(irn) \
204   hook_exec(hook_arch_dep_replace_mod_by_const, (ctx, irn))
205 #define hook_arch_dep_replace_DivMod_by_const(irn) \
206   hook_exec(hook_arch_dep_replace_DivMod_by_const, (ctx, irn))
207 #define hook_new_mode(tmpl, mode)         hook_exec(hook_new_mode, (ctx, tmpl, mode))
208
209 /* the initializer, move to hooks_t.h some day */
210 int init_hooks(void);
211
212 #endif /* __IRHOOKS_H__ */