X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Firhooks.h;h=c08eb02cf10bb91b2d529496b679fcc090581175;hb=f52c11a6035c213d91740d7a7ac2b3e924b8429b;hp=0f9c840fb8b0dc3b53017f13592ea0c83914e45c;hpb=972eca70744a2c9a0e0d472db4f62250cdeee01c;p=libfirm diff --git a/include/libfirm/irhooks.h b/include/libfirm/irhooks.h index 0f9c840fb..c08eb02cf 100644 --- a/include/libfirm/irhooks.h +++ b/include/libfirm/irhooks.h @@ -59,6 +59,7 @@ typedef enum { HOOK_OPT_CONFIRM_C, /**< a value was substituted by a const due to a Confirm */ HOOK_OPT_CONFIRM_E, /**< a value was evaluated due to a Confirm */ HOOK_OPT_EXC_REM, /**< a exception edge was removed due to a Confirmation prove */ + HOOK_OPT_NORMALIZE, /**< a commutative node was normalized */ HOOK_LOWERED, /**< lowered */ HOOK_BACKEND, /**< a backend transformation */ HOOK_OPT_LAST @@ -104,6 +105,9 @@ typedef struct hook_entry { /** This hook is called, before a node is changed into an Id node. */ void (*_hook_turn_into_id)(void *context, ir_node *node); + /** This hook is called, after a commutative node was normalized. */ + void (*_hook_normalize)(void *context, ir_node *node); + /** This hook is called, after a new graph was created and before the first block * on this graph is build. */ void (*_hook_new_graph)(void *context, ir_graph *irg, ir_entity *ent); @@ -187,6 +191,7 @@ typedef enum { hook_set_irn_n, hook_replace, hook_turn_into_id, + hook_normalize, hook_new_graph, hook_free_graph, hook_irg_walk, @@ -248,6 +253,7 @@ extern hook_entry_t *hooks[hook_last]; hook_exec(hook_set_irn_n, (ctx, src, pos, tgt, old_tgt)) #define hook_replace(old, nw) hook_exec(hook_replace, (ctx, old, nw)) #define hook_turn_into_id(node) hook_exec(hook_turn_into_id, (ctx, node)) +#define hook_normalize(node) hook_exec(hook_normalize, (ctx, node)) #define hook_new_graph(irg, ent) hook_exec(hook_new_graph, (ctx, irg, ent)) #define hook_free_graph(irg) hook_exec(hook_free_graph, (ctx, irg)) #define hook_irg_walk(irg, pre, post) hook_exec(hook_irg_walk, (ctx, irg, pre, post))