*** empty log message ***
[libfirm] / ir / stat / firmstat.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/stat/firmstat.h
4  * Purpose:     Statistics for Firm.
5  * Author:      Michael Beck
6  * Created:
7  * CVS-ID:      $Id$
8  * Copyright:   (c) 2004 Universität Karlsruhe
9  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
10  */
11 #ifndef _FIRMSTAT_H_
12 #define _FIRMSTAT_H_
13
14 /**
15  * @file firmstat.h
16  */
17 #include "irop.h"
18 #include "irnode.h"
19 #include "irgraph.h"
20
21 #ifdef FIRM_STATISTICS
22
23 typedef enum {
24   STAT_OPT_STG        = 0,              /**< straightening optimization */
25   STAT_OPT_IFSIM      = 1,              /**< if simplification */
26   STAT_OPT_ALGSIM     = 2,              /**< algebraic simplification */
27   STAT_OPT_PHI        = 3,              /**< Phi optmization */
28   STAT_OPT_WAW        = 4,              /**< Write-After-Write optimization */
29   STAT_OPT_WAR        = 5,              /**< Write-After-Read optimization */
30   STAT_OPT_TUPLE      = 6,              /**< Tuple optimization */
31   STAT_OPT_ID         = 7,              /**< ID optimization */
32   STAT_OPT_CONST_EVAL = 8,              /**< constant evaluation */
33   STAT_LOWERED        = 9,              /**< lowered */
34
35   STAT_OPT_MAX        = 10
36 }
37 stat_opt_kind;
38
39 /**
40  * initialize the statistics module.
41  */
42 void stat_init(void);
43
44 /**
45  * Finish the statistics.
46  */
47 void stat_finish(void);
48
49 /**
50  * A new IR op is registered.
51  */
52 void stat_new_ir_op(const ir_op *op);
53
54 /**
55  * An IR op is freed.
56  */
57 void stat_free_ir_op(const ir_op *op);
58
59 /**
60  * A new node is created.
61  */
62 void stat_new_node(const ir_node *node);
63
64 /**
65  * A node is changed into a Id node
66  */
67 void stat_turn_into_id(const ir_node *node);
68
69 /**
70  * A new graph was created
71  */
72 void stat_new_graph(ir_graph *irg, entity *ent);
73
74 /**
75  * A graph was deleted
76  */
77 void stat_free_graph(ir_graph *irg);
78
79 /**
80  * A walk over a graph is initiated
81  */
82 void stat_irg_walk(ir_graph *irg, void *pre, void *post);
83
84 /**
85  * A walk over the graph's blocks is initiated
86  */
87 void stat_irg_block_walk(ir_graph *irg, const ir_node *node, void *pre, void *post);
88
89 /**
90  * Some nodes were optimized into some others due to an optimization
91  */
92 void stat_merge_nodes(
93     ir_node **new_node_array, int new_num_entries,
94     ir_node **old_node_array, int old_num_entries,
95     stat_opt_kind opt);
96
97 /**
98  * A node was lowered into other nodes
99  */
100 void stat_lower(ir_node *node);
101
102 /**
103  * A graph was inlined
104  */
105 void stat_inline(ir_node *call, ir_graph *irg);
106
107 /**
108  * A graph with tail-recursions was optimized.
109  */
110 void stat_tail_rec(ir_graph *irg);
111
112 /**
113  * Start the dead node elimination.
114  */
115 void stat_dead_node_elim_start(ir_graph *irg);
116
117 /**
118  * Stops the dead node elimination.
119  */
120 void stat_dead_node_elim_stop(ir_graph *irg);
121
122 #else
123
124 #define stat_init()
125 #define stat_finish()
126 #define stat_new_ir_op(op)
127 #define stat_free_ir_op(op)
128 #define stat_new_node(node)
129 #define stat_turn_into_id(node)
130 #define stat_new_graph(irg, ent)
131 #define stat_free_graph(irg)
132 #define stat_irg_walk(irg, pre, post)
133 #define stat_irg_block_walk(irg, node, pre, post)
134 #define stat_merge_nodes(new_node_array, new_num_entries, old_node_array, old_num_entries, opt)
135 #define stat_lower(node)
136 #define stat_inline(call, irg)
137 #define stat_tail_rec(irg)
138 #define stat_dead_node_elim_start(irg)
139 #define stat_dead_node_elim_stop(irg)
140
141 #endif
142
143 #endif /* _FIRMSTAT_H_ */