Remove the unused parameter const arch_env_t *arch_env from be_liveness_nodes_live_at().
[libfirm] / ir / be / belive.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       Interblock liveness analysis.
23  * @author      Sebastian Hack
24  * @date        06.12.2004
25  * @version     $Id$
26  */
27 #ifndef FIRM_BE_BELIVE_H
28 #define FIRM_BE_BELIVE_H
29
30 #include <stdio.h>
31
32 #include "firm_types.h"
33 #include "pset.h"
34
35 #include "irlivechk.h"
36 #include "bearch.h"
37 #include "irnodeset.h"
38
39 struct be_irg_t;
40
41 typedef enum {
42         be_lv_state_in  = 1,
43         be_lv_state_end = 2,
44         be_lv_state_out = 4,
45 } be_lv_state_t;
46
47 typedef struct _be_lv_t be_lv_t;
48
49 typedef struct _be_lv_info_t be_lv_info_t;
50
51 /**
52  * Compute the inter block liveness for a graph.
53  * @param irg The graph.
54  */
55 be_lv_t *be_liveness(const struct be_irg_t *birg);
56
57 /**
58  * Check the given liveness information against a freshly computed one.
59  */
60 void be_liveness_check(be_lv_t *lv);
61
62 /**
63  * Free the liveness information.
64  */
65 void be_liveness_free(be_lv_t *lv);
66
67 /**
68  * Recompute the complete liveness information.
69  */
70 void be_liveness_recompute(be_lv_t *lv);
71
72 /**
73  * Update the liveness information for a single node.
74  * It is irrelevant if there is liveness information present for the node.
75  * The liveness information for the node is firstly deleted and then recomputed.
76  * If the node is fresh and never recorded inf the liveness information before,
77  * it is more efficient to call be_liveness_introduce().
78  */
79 void be_liveness_update(be_lv_t *lv, ir_node *irn);
80
81 /**
82  * Remove a node from the liveness information.
83  */
84 void be_liveness_remove(be_lv_t *lv, const ir_node *irn);
85
86 /**
87  * Introduce a new node to the liveness information.
88  * The new irn is not deleted from any block's liveness information, so it must be fresh!
89  * @param lv The liveness info.
90  * @param irn The node.
91  */
92 void be_liveness_introduce(be_lv_t *lv, ir_node *irn);
93
94 /**
95  * Add all nodes which are missing in the current liveness data.
96  * The liveness data of the already existing nodes (in the liveness data) is not touched.
97  * @param The liveness info.
98  */
99 void be_liveness_add_missing(be_lv_t *lv);
100
101 /**
102  * Dump the liveness information for a graph.
103  * @param f The output.
104  * @param irg The graph.
105  */
106 void be_liveness_dump(const be_lv_t *lv, FILE *f);
107
108 /**
109  * Dump the liveness information for a graph.
110  * @param irg The graph.
111  * @param cls_name A string used as substring in the filename.
112  */
113 void be_liveness_dumpto(const be_lv_t *lv, const char *cls_name);
114
115 /**
116  * Check, if a node is live in at a block.
117  * @param block The block.
118  * @param irn The node to check for.
119  * @return 1, if @p irn is live at the entrance of @p block, 0 if not.
120  */
121 int (be_is_live_in)(const be_lv_t *lv, const ir_node *block, const ir_node *irn);
122
123 /**
124  * Check, if a node is live out at a block.
125  * @param block The block.
126  * @param irn The node to check for.
127  * @return 1, if @p irn is live at the exit of @p block, 0 if not.
128  */
129 int (be_is_live_out)(const be_lv_t *lv, const ir_node *block, const ir_node *irn);
130
131 /**
132  * Check, if a node is live at the end of a block.
133  * @param block The block.
134  * @param irn The node to check for.
135  * @return 1, if @p irn is live at the end of the block, 0 if not.
136  */
137 int (be_is_live_end)(const be_lv_t *lv, const ir_node *block, const ir_node *irn);
138
139 /**
140  * Check, if the SSA dominance property is fulfilled.
141  * @param irg The graph.
142  * @return   1 if dominance property is fulfilled, 0 otherwise
143  */
144 int be_check_dominance(ir_graph *irg);
145
146 /**
147  * The liveness transfer function.
148  * Updates a live set over a single step from a given node to its predecessor.
149  * Everything defined at the node is removed from the set, the uses of the node get inserted.
150  * @param cls      The register class to consider.
151  * @param irn      The node at which liveness should be computed.
152  * @param live     The set of nodes live before @p irn. This set gets modified by updating it to
153  *                 the nodes live after irn.
154  * @return live.
155  */
156 void be_liveness_transfer(const arch_register_class_t *cls, ir_node *node,
157                           ir_nodeset_t *nodeset);
158
159 /**
160  * Put all node live at the end of a block into a set.
161  * @param cls      The register class to consider.
162  * @param bl       The block.
163  * @param live     The set to put them into.
164  * @return live.
165  */
166 void be_liveness_end_of_block(const be_lv_t *lv,
167                               const arch_register_class_t *cls,
168                               const ir_node *bl, ir_nodeset_t *nodeset);
169
170 /**
171  * Compute a set of nodes which are live at another node.
172  * BEWARE: This is the liveness immediately after the node,
173  *         so the node itself is alive but its operands maybe not.
174  * @param cls      The register class to consider.
175  * @param pos      The node.
176  * @param live     The set to put them into.
177  */
178 void be_liveness_nodes_live_at(const be_lv_t *lv,
179                                const arch_register_class_t *cls,
180                                const ir_node *pos, ir_nodeset_t *live);
181
182 /**
183  * Compute a set of nodes which are live at another node.
184  * BEWARE: This is the liveness immediately before the node,
185  *         so the node itself is not alive but it's operands are.
186  * @param arch_env The architecture environment.
187  * @param cls      The register class to consider.
188  * @param pos      The node.
189  * @param live     The set to put them into.
190  */
191 void be_liveness_nodes_live_at_input(const be_lv_t *lv,
192                                      const arch_env_t *arch_env,
193                                      const arch_register_class_t *cls,
194                                      const ir_node *pos, ir_nodeset_t *live);
195
196 /**
197  * Make sure the live sets are computed.
198  * @param lv The liveness information.
199  */
200 void be_liveness_assure_sets(be_lv_t *lv);
201
202 /**
203  * Make sure all information needed for liveness checks is available.
204  * @param lv The liveness information.
205  */
206 void be_liveness_assure_chk(be_lv_t *lv);
207
208 /**
209  * Invalidate the liveness information.
210  * You must call this if you modify the program and do not
211  * update the liveness with the be_liveness_{update,remove,introduce}
212  * functions.
213  * @param lv The liveness info.
214  */
215 void be_liveness_invalidate(be_lv_t *lv);
216
217 #endif /* FIRM_BE_BELIVE_H */