added CVS Id
[libfirm] / ir / be / besched.c
1 /* $Id$ */
2
3 #ifdef HAVE_CONFIG_H
4 # include "config.h"
5 #endif
6
7 #ifdef HAVE_STDLIB_H
8 # include <stdlib.h>
9 #endif
10
11 #include "impl.h"
12 #include "irprintf.h"
13 #include "irgwalk.h"
14 #include "irnode_t.h"
15 #include "irgraph_t.h"
16 #include "iredges_t.h"
17 #include "debug.h"
18
19 #include "bearch.h"
20 #include "besched_t.h"
21 #include "beutil.h"
22 #include "belistsched.h"
23
24 FIRM_IMPL1(sched_get_time_step, int, const ir_node *)
25 FIRM_IMPL1(sched_has_next, int, const ir_node *)
26 FIRM_IMPL1(sched_has_prev, int, const ir_node *)
27 FIRM_IMPL1(sched_next, ir_node *, const ir_node *)
28 FIRM_IMPL1(sched_prev, ir_node *, const ir_node *)
29 FIRM_IMPL1(sched_first, ir_node *, const ir_node *)
30 FIRM_IMPL1(sched_last, ir_node *, const ir_node *)
31 FIRM_IMPL2(sched_add_after, ir_node *, ir_node *, ir_node *)
32 FIRM_IMPL2(sched_add_before, ir_node *, ir_node *, ir_node *)
33 FIRM_IMPL2(sched_comes_after, int, const ir_node *, const ir_node *)
34 FIRM_IMPL1_VOID(sched_remove, ir_node *)
35
36 size_t sched_irn_data_offset = 0;
37
38 static void block_sched_dumper(ir_node *block, void *env)
39 {
40         FILE *f = env;
41         const ir_node *curr;
42
43         ir_fprintf(f, "%+F:\n", block);
44         sched_foreach(block, curr) {
45     sched_info_t *info = get_irn_sched_info(curr);
46                 ir_fprintf(f, "\t%6d: %+F\n", info->time_step, curr);
47         }
48 }
49
50 void be_sched_dump(FILE *f, ir_graph *irg)
51 {
52         irg_block_walk_graph(irg, block_sched_dumper, NULL, f);
53 }
54
55 /* Init the scheduling stuff. */
56 void be_sched_init(void)
57 {
58         sched_irn_data_offset = register_additional_node_data(sizeof(sched_info_t));
59 }
60
61 void sched_renumber(const ir_node *block)
62 {
63         ir_node *irn;
64         sched_info_t *inf;
65         sched_timestep_t step = 0;
66
67         sched_foreach(block, irn) {
68                 inf = get_irn_sched_info(irn);
69                 inf->time_step = step;
70                 step += SCHED_INITIAL_GRANULARITY;
71         }
72 }
73
74 /* Verify a schedule. */
75 int sched_verify(const ir_node *block)
76 {
77         int res = 1;
78         const ir_node *irn;
79         int i, n;
80         int *save_time_step;
81         const ir_node **save_nodes;
82         const ir_edge_t *edge;
83         pset *scheduled_nodes = pset_new_ptr_default();
84         FIRM_DBG_REGISTER(firm_dbg_module_t *dbg_sched, "firm.be.sched");
85
86         /* Count the number of nodes in the schedule. */
87         n = 0;
88         sched_foreach(block, irn)
89                 n++;
90
91         if(n <= 0)
92                 return 1;
93
94         save_time_step = xmalloc(n * sizeof(save_time_step[0]));
95         save_nodes = xmalloc(n * sizeof(save_nodes[0]));
96
97         i = 0;
98         sched_foreach(block, irn) {
99                 sched_info_t *info = get_irn_sched_info(irn);
100                 save_time_step[i] = info->time_step;
101                 save_nodes[i] = (ir_node *)irn;
102                 info->time_step = i;
103                 pset_insert_ptr(scheduled_nodes, irn);
104
105                 i += 1;
106         }
107
108         /*
109          * Check if each relevant operand of a node is scheduled before
110          * the node itself.
111          */
112         sched_foreach(block, irn) {
113                 int i, n;
114                 int step = sched_get_time_step(irn);
115
116                 for(i = 0, n = get_irn_arity(irn); i < n; i++) {
117                         ir_node *op = get_irn_n(irn, i);
118
119                         if(to_appear_in_schedule(op)
120                                 && !is_Phi(irn)
121                                 && get_nodes_block(op) == block
122                                 && sched_get_time_step(op) > step) {
123
124                                 DBG((dbg_sched, LEVEL_DEFAULT,
125                                         "%+F: %+F is operand of %+F but scheduled after\n", block, op, irn));
126                                 res = 0;
127                         }
128                 }
129         }
130
131         /* Check, if the time steps are correct */
132         for(i = 1; i < n; ++i) {
133                 if(save_time_step[i] - save_time_step[i - 1] <= 0) {
134                         DBG((dbg_sched, LEVEL_DEFAULT,
135                                 "%+F from %+F(%d) -> %+F(%d) step shrinks from %d -> %d\n",
136                                 block, save_nodes[i - 1], i - 1, save_nodes[i], i,
137                                 save_time_step[i - 1], save_time_step[i]));
138                         res = 0;
139                 }
140         }
141
142         /* Restore the old time steps */
143         i = 0;
144         sched_foreach(block, irn) {
145                 sched_info_t *info = get_irn_sched_info(irn);
146                 info->time_step = save_time_step[i++];
147         }
148
149         /* Check for all nodes in the block if they are scheduled. */
150         foreach_out_edge(block, edge) {
151                 ir_node *irn = get_edge_src_irn(edge);
152                 if(to_appear_in_schedule(irn) && !pset_find_ptr(scheduled_nodes, irn)) {
153                         DBG((dbg_sched, LEVEL_DEFAULT,
154                                 "%+F: %+F is in block but not scheduled\n", block, irn));
155                         res = 0;
156                 }
157         }
158
159         del_pset(scheduled_nodes);
160         free(save_time_step);
161         free((void *) save_nodes);
162         return res;
163 }
164
165 /**
166  * Block-Walker: verify the current block and update the status
167  */
168 static void sched_verify_walker(ir_node *block, void *data)
169 {
170         int *res = data;
171         *res &= sched_verify(block);
172 }
173
174 /* Verify the schedules in all blocks of the irg. */
175 int sched_verify_irg(ir_graph *irg)
176 {
177         int res = 1;
178         irg_block_walk_graph(irg, sched_verify_walker, NULL, &res);
179
180         return res;
181 }
182
183 int sched_skip_cf_predicator(const ir_node *irn, void *data) {
184         arch_env_t *ae = data;
185         return arch_irn_classify(ae, irn) == arch_irn_class_branch;
186 }
187
188 int sched_skip_phi_predicator(const ir_node *irn, void *data) {
189         return is_Phi(irn);
190 }
191
192 /* Skip nodes in a schedule. */
193 ir_node *sched_skip(ir_node *from, int forward, sched_predicator_t *predicator, void *data)
194 {
195         const ir_node *bl = get_block(from);
196         ir_node *curr;
197
198         if (is_Block(from))
199                 from = forward ? sched_next(from) : sched_prev(from);
200
201         for(curr = from; curr != bl && predicator(curr, data); curr = forward ? sched_next(curr) : sched_prev(curr));
202
203         return curr;
204 }
205
206 /** A simple forward single linked list. */
207 typedef struct {
208         ir_node *start;   /**< start of the list */
209         ir_node *end;     /**< last block in the list */
210         unsigned n_blks;  /**< number of blocks in the list */
211 } anchor;
212
213 /**
214  * Ext-Block walker: create a block schedule
215  */
216 static void create_block_list(ir_extblk *blk, void *env) {
217         anchor *list = env;
218         int i, n;
219
220         for (i = 0, n = get_extbb_n_blocks(blk); i < n; ++i) {
221                 ir_node *block = get_extbb_block(blk, i);
222
223                 set_irn_link(block, NULL);
224                 if (list->start)
225                         set_irn_link(list->end, block);
226                 else
227                         list->start = block;
228
229                 list->end = block;
230                 ++list->n_blks;
231         }
232 }
233
234 /*
235  * Calculates a block schedule. The schedule is stored as a linked
236  * list starting at the start_block of the irg.
237  */
238 ir_node **sched_create_block_schedule(ir_graph *irg)
239 {
240         anchor list;
241         ir_node **blk_list, *b, *n;
242         unsigned i;
243
244         /* schedule extended basic blocks */
245         compute_extbb(irg);
246
247         list.start  = NULL;
248         list.end    = NULL;
249         list.n_blks = 0;
250         irg_extblock_walk_graph(irg, NULL, create_block_list, &list);
251
252         /** create an array, so we can go forward and backward */
253         blk_list = NEW_ARR_D(ir_node *, irg->obst,list.n_blks);
254
255         for (i = 0, b = list.start; b; b = n, ++i) {
256                 n = get_irn_link(b);
257                 set_irn_link(b, INT_TO_PTR(i));
258
259                 blk_list[i] = b;
260         }
261         return blk_list;
262 }