Add be_dep_on_frame() to let a node depend on the frame, so it does not get scheduled...
[libfirm] / ir / be / betranshlp.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       be transform helper extracted from the ia32 backend.
23  * @author      Matthias Braun, Michael Beck
24  * @date        14.06.2007
25  * @version     $Id$
26  */
27 #ifndef FIRM_BE_BETRANSHLP_H
28 #define FIRM_BE_BETRANSHLP_H
29
30 #include "firm_types.h"
31 #include "beirg.h"
32
33 /**
34  * A callback to pre-transform some nodes before the transformation starts.
35  */
36 typedef void (arch_pretrans_nodes)(void);
37
38 /**
39  * The type of a transform function.
40  */
41 typedef ir_node *(be_transform_func)(ir_node *node);
42
43 /** pre-transform a node */
44 ir_node *be_pre_transform_node(ir_node *place);
45
46 /**
47  * Calls transformation function for given node and marks it visited.
48  */
49 ir_node *be_transform_node(ir_node *node);
50
51 /**
52  * Duplicate all dependency edges of a node.
53  */
54 void be_duplicate_deps(ir_node *old_node, ir_node *new_node);
55
56 /**
57  * Depend on the frame if the node is in the start block.  This prevents
58  * nodes being scheduled before they can be spilled.
59  */
60 void be_dep_on_frame(ir_node *node);
61
62 /**
63  * Duplicate a node during transformation.
64  */
65 ir_node *be_duplicate_node(ir_node *node);
66
67 /**
68  * Associate an old node with a transformed node. Uses link field.
69  */
70 void be_set_transformed_node(ir_node *old_node, ir_node *new_node);
71
72 /**
73  * returns 1 if the node is already transformed
74  */
75 int be_is_transformed(const ir_node *node);
76
77 /**
78  * enqueue all inputs into the transform queue.
79  */
80 void be_enqueue_preds(ir_node *node);
81
82 /**
83  * Transform a graph. Transformers must be registered first.
84  */
85 void be_transform_graph(be_irg_t *birg, arch_pretrans_nodes *func);
86
87 #endif /* FIRM_BE_BETRANSHLP_H */