added missing source files
[libfirm] / ir / be / beirgmod.h
1
2 /**
3  * IRG modifications for be routines.
4  * @date 4.5.2005
5  *
6  * Copyright (C) 2005 Universitaet Karlsruhe.
7  * Released under the GPL.
8  */
9
10 #ifndef _BEIRGMOD_H
11 #define _BEIRGMOD_H
12
13 #include "pset.h"
14
15 /*
16  * Forward type declaration.
17  */
18 typedef struct _dom_front_info_t dom_front_info_t;
19
20 /**
21  * Compute the dominance frontiers for a given graph.
22  * @param  irg The graphs.
23  * @return A pointer to the dominance frontier information.
24  */
25 dom_front_info_t *be_compute_dominance_frontiers(ir_graph *irg);
26
27 /**
28  * Get the dominance frontier of a block.
29  * @param info  A pointer to the dominance frontier information.
30  * @param block The block whose dominance frontier you want.
31  * @return A set containing the all blocks in the dominance frontier of @p block.
32  */
33 pset *be_get_dominance_frontier(dom_front_info_t *info, ir_node *block);
34
35 /**
36  * Free some dominance frontier information.
37  * @param info Some dominance frontier information.
38  */
39 void be_free_dominance_frontiers(dom_front_info_t *info);
40
41 /**
42  * Introduce several copies for one node.
43  *
44  * A copy in this context means, that you want to introduce several new
45  * abstract values (in Firm: nodes) for which you know, that they
46  * represent the same concrete value. This is the case if you
47  * - copy
48  * - spill and reload
49  * - re-materialize
50  * a value.
51  *
52  * This function reroutes all uses of the original value to the copies in the
53  * corresponding dominance subtrees and creates Phi functions if necessary.
54  *
55  * @param info            Dominance frontier information.
56  * @param n_origs     The number of nodes for which the copies are introduced.
57  * @param orig_nodes  The nodes for which you want to introduce copies.
58  * @param n_copies    The number of copies you introduce.
59  * @param copy_nodes  An array of nodes which are copies of @p orig.
60  * @param ignore_uses A set containing uses which shall not be rerouted.
61  */
62 void be_ssa_constr_ignore(dom_front_info_t *info, int n_origs, ir_node *orig_nodes[],
63                                                   int n_copies, ir_node *copy_nodes[], pset *ignore_uses);
64
65 /**
66  * Same as be_ssa_constr_ignore() but with a single original node.
67  */
68 void be_ssa_constr_single_ignore(dom_front_info_t *info, ir_node *orig, int n, ir_node *copies[], pset *ignore_uses);
69
70 /**
71  * Same as be_ssa_constr_single_ignore() but without ignoring nodes.
72  */
73 void be_ssa_constr_single(dom_front_info_t *info, ir_node *orig, int n, ir_node *copy_nodes[]);
74
75 /**
76  * Same as be_ssa_constr_ignore() but without ignoring nodes.
77  */
78 void be_ssa_constr(dom_front_info_t *info, int n_orig, ir_node *orig[], int n, ir_node *copy_nodes[]);
79
80 /**
81  * Same as be_ssa_constr() but with psets.
82  */
83 void be_ssa_constr_sets(dom_front_info_t *info, pset *origs, pset *copies);
84
85 #endif