properly mark symbols in the public API to be exported. This allows us to use -fvisib...
[libfirm] / include / libfirm / irgmod.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    Support for ir graph modification.
23  * @author   Martin Trapp, Christian Schaefer, Goetz Lindenmaier
24  * @version  $Id$
25  */
26 #ifndef FIRM_IR_IRGMOD_H
27 #define FIRM_IR_IRGMOD_H
28
29 #include "firm_types.h"
30 #include "begin.h"
31
32 /** Exchanges two nodes by conserving edges leaving old (i.e.,
33    pointers pointing to old).  Turns the old node into an Id. */
34 FIRM_DLL void exchange(ir_node *old, ir_node *nw);
35
36 /** Turns a node into a "useless" Tuple.
37  *
38  *  Turns a node into a "useless" Tuple.  The Tuple node just forms a tuple
39  *  from several inputs.  The predecessors of the tuple have to be
40  *  set by hand.  The block predecessor automatically remains the same.
41  *  This is useful if a node returning a tuple is removed, but the Projs
42  *  extracting values from the tuple are not available.
43  *
44  *  @param node The node to be turned into a tuple.
45  *  @param arity The number of values formed into a Tuple.
46  */
47 FIRM_DLL void turn_into_tuple(ir_node *node, int arity);
48
49 /** Walks over the passed IR graph and collects all Phi nodes as a
50   * list in their corresponding block (using get_Block_phis() API).
51   * Further it collects all Proj nodes in a list of the node producing
52   * the tuple. In case of nested tuples the Projs are collected in the
53   * node producing the outermost Tuple.
54   * All partBlocks are linked to its macroblock header.
55   * All other link fields are cleared afterwards.
56   */
57 FIRM_DLL void collect_phiprojs(ir_graph *irg);
58
59 /** Parts a block into two.  This is useful to insert other blocks within a
60  *  given block.
61  *
62  * Adds a new block (new_block) in the control flow before the block
63  * (old_block) of node.  Moves node and its predecessors from old_block to
64  * new_block.  Moves all Projs that depend on moved nodes and are in old_block
65  * to new_block. Moves all Phi nodes from old_block to new_block.  To achieve
66  * this the routine assumes that all Phi nodes are in the Phi list (see get_Block_phis())
67  * of old_block.  Further it assumes that all Proj nodes are accessible by the link field
68  * of the nodes producing the Tuple and all partBlocks are linked to its MacroBlock header.
69  * This can be established by collect_phiprojs().  part_block() conserves this property.
70  * Adds a Jmp node to new_block that jumps to old_block.
71  *
72  * @param node   The node were to break the block
73  */
74 FIRM_DLL void part_block(ir_node *node);
75
76 /**
77  * Kill a node by setting its predecessors to Bad and finally
78  * exchange the node by Bad itself.
79  */
80 FIRM_DLL void kill_node(ir_node *node);
81
82 #include "end.h"
83
84 #endif