97542d1582b2625e6f627e4dbfa59baf4a77b6ee
[libfirm] / include / libfirm / irouts.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    Compute and access out edges (also called def-use edges).
23  * @author   Goetz Lindenmaier, Michael Beck
24  * @date     1.2002
25  * @version  $Id$
26  */
27 #ifndef FIRM_ANA_IROUTS_H
28 #define FIRM_ANA_IROUTS_H
29
30 #include "firm_types.h"
31
32 /*------------------------------------------------------------------*/
33 /* Accessing the out datastructures.                                */
34 /* These routines only work properly if the ir_graph is in state    */
35 /* outs_consistent or outs_inconsistent.                            */
36 /*------------------------------------------------------------------*/
37
38 /** To iterate through the successors iterate from 0 to i < get_irn_outs(). No
39    order of successors guaranteed.  Will return edges from block to floating
40    nodes even if irgraph is in state "op_pin_state_floats". */
41 /* returns the number of successors of the node: */
42 int      get_irn_n_outs(const ir_node *node);
43
44 /** Get the User of a node from the Def-Use edge at position pos. */
45 ir_node *get_irn_out(const ir_node *def, int pos);
46
47 /**
48  * Get the User and its input position from the Def-Use edge of def
49  * at position pos.
50  */
51 ir_node *get_irn_out_ex(const ir_node *def, int pos, int *in_pos);
52
53 /**
54  * Set the User at position pos.
55  *
56  * @param def     the Def node
57  * @param pos     the number of the Def-Use edge tat is modified
58  * @param use     the Use node
59  * @param in_pos  the number of the corresponding Use-Def edge in the use node in array
60  */
61 void     set_irn_out(ir_node *def, int pos, ir_node *use, int in_pos);
62
63 /* Methods to iterate through the control flow graph. Iterate from 0 to
64    i < get_Block_cfg_outs(block). No order of successors guaranteed. */
65
66 /** Return the number of control flow successors, ignore keep-alives. */
67 int      get_Block_n_cfg_outs(const ir_node *node);
68
69 /** Return the number of control flow successors, honor keep-alives. */
70 int      get_Block_n_cfg_outs_ka(const ir_node *node);
71
72 /** Access predecessor n, ignore keep-alives. */
73 ir_node *get_Block_cfg_out(const ir_node *node, int pos);
74
75 /** Access predecessor n, honor keep-alives. */
76 ir_node *get_Block_cfg_out_ka(const ir_node *node, int pos);
77
78 /** Walks over the graph starting at node.  Walks also if graph is in state
79    "outs_inconsistent".  Assumes current_ir_graph is set properly. */
80 void irg_out_walk(ir_node *node,
81                   irg_walk_func *pre, irg_walk_func *post,
82                   void *env);
83
84 /** Walks only over Block nodes in the graph.  Has it's own visited
85    flag, so that it can be interleaved with the other walker.
86    node must be either op_Block or mode_X.  */
87 void irg_out_block_walk(ir_node *node,
88                         irg_walk_func *pre, irg_walk_func *post,
89                         void *env);
90
91 /**
92  * returns 1 if outs have been computed for a node, 0 otherwise.
93  *
94  *  this is useful to detect newly created nodes that have no outs set yet
95  */
96 int get_irn_outs_computed(const ir_node *node);
97
98 /*------------------------------------------------------------------*/
99 /* Building and Removing the out datastructure                      */
100 /*------------------------------------------------------------------*/
101
102 /** Computes the out edges.  Sets a flag in irg to "outs_consistent".  If the
103     graph is changed this flag must be set to "outs_inconsistent".  Computes
104     out edges from block to floating nodes even if graph is in state
105    "op_pin_state_floats".   Optimizes Tuple nodes. */
106 void compute_irg_outs(ir_graph *irg);
107 void compute_irp_outs(void);
108
109 void assure_irg_outs(ir_graph *irg);
110
111 #ifdef INTERPROCEDURAL_VIEW
112 /** Computes the out edges in interprocedural view */
113 void compute_ip_outs(void);
114 /** Frees the out datastructures.  Sets the flag in irg to "outs_none". */
115 void free_ip_outs(void);
116 #endif
117
118 void free_irg_outs(ir_graph *irg);
119 void free_irp_outs(void);
120
121 #endif