Comments
[libfirm] / ir / be / becopyopt.h
1 /**
2  * Author:      Daniel Grund
3  * Date:                11.04.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  *
7  * Main file for the optimization reducing the copies needed for:
8  * - Phi coalescing
9  * - Register-constrained nodes
10  * - Two-address code instructions
11  */
12
13 #ifndef _BECOPYOPT_H
14 #define _BECOPYOPT_H
15
16 #include "firm_types.h"
17 #include "bechordal.h"
18
19 /**
20  * Has to be called during the firm init phase
21  */
22 void be_copy_opt_init(void);
23
24 typedef int(*cost_fct_t)(ir_node*, ir_node*, int);
25
26 typedef struct _copy_opt_t copy_opt_t;
27
28 /**
29  * Generate the problem. Collect all information and optimizable nodes.
30  */
31 copy_opt_t *new_copy_opt(be_chordal_env_t *chordal_env, cost_fct_t get_costs);
32
33 /**
34  * Free the space used...
35  */
36 void free_copy_opt(copy_opt_t *co);
37
38 /**
39  * Checks if a node is optimizable, viz. has something to do with coalescing
40  * @param arch The architecture environment
41  * @param irn  The irn to check
42  */
43 int co_is_optimizable_root(const copy_opt_t *co, ir_node *irn);
44
45 /**
46  * Checks if the irn is a non-interfering argument of a node which 'is_optimizable'
47  */
48 int co_is_optimizable_arg(const copy_opt_t *co, ir_node *irn);
49
50 /**
51  * Computes the costs of a copy according to loop depth
52  * @param pos:  the argument position of arg in the root arguments
53  * @return Must be >= 0 in all cases.
54  */
55 int co_get_costs_loop_depth(ir_node *root, ir_node* arg, int pos);
56
57 /**
58  * All costs equal 1. Using this will reduce the _number_ of copies.
59  * @return Must be >= 0 in all cases.
60  */
61 int co_get_costs_all_one(ir_node *root, ir_node* arg, int pos);
62
63
64
65
66 /**
67  * Build internal optimization units structure
68  */
69 void co_build_ou_structure(copy_opt_t *co);
70
71 /**
72  * Frees the space used by the opt unit representation.
73  * Does NOT free the whole copyopt structure
74  */
75 void co_free_ou_structure(copy_opt_t *co);
76
77 /**
78  * Solves the problem using a heuristic approach
79  * Uses the OU data structure
80  */
81 int co_solve_heuristic(copy_opt_t *co);
82
83 /**
84  * Returns the maximal costs possible, i.e. the costs if all
85  * pairs would be assigned different registers.
86  * Uses the OU data structure
87  */
88 int co_get_max_copy_costs(const copy_opt_t *co);
89
90 /**
91  * Returns the inevitable costs, i.e. the costs of
92  * all copy pairs which interfere.
93  * Uses the OU data structure
94  */
95 int co_get_inevit_copy_costs(const copy_opt_t *co);
96
97 /**
98  * Returns the current costs the copies are causing.
99  * The result includes inevitable costs and the costs
100  * of the copies regarding the current register allocation
101  * Uses the OU data structure
102  */
103 int co_get_copy_costs(const copy_opt_t *co);
104
105 /**
106  * Returns a lower bound for the costs of copies in this ou.
107  * The result includes inevitable costs and the costs of a
108  * minimal costs caused by the nodes of the ou.
109  * Uses the OU data structure
110  */
111 int co_get_lower_bound(const copy_opt_t *co);
112
113
114
115
116
117 /**
118  * Constructs another internal representation of the affinity edges
119  */
120 void co_build_graph_structure(copy_opt_t *co);
121
122 /**
123  * Frees the space used by the graph representation.
124  * Does NOT free the whole copyopt structure
125  */
126 void co_free_graph_structure(copy_opt_t *co);
127
128 /**
129  * Solves the problem using mixed integer programming
130  * @returns 1 iff solution state was optimal
131  * NYI
132  */
133 int co_solve_ilp1(copy_opt_t *co, double time_limit);
134
135 /**
136  * Solves the problem using mixed integer programming
137  * @returns 1 iff solution state was optimal
138  * Uses the OU and the GRAPH data structure
139  */
140 int co_solve_ilp2(copy_opt_t *co, double time_limit);
141
142 /**
143  * Checks if a node is optimizable, viz. has somthing to do with coalescing.
144  * Uses the GRAPH data structure
145  */
146 int co_gs_is_optimizable(copy_opt_t *co, ir_node *irn);
147
148 #endif /* _BECOPYOPT_H */