code_placement: use iredges, respect dep. edges
[libfirm] / ir / opt / code_placement.c
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    Move nodes to a block where they will be executed the least
23  *           often.
24  * @author   Christian Schaefer, Goetz Lindenmaier, Sebastian Felis,
25  *           Michael Beck
26  *
27  * The idea here is to push nodes as deep into the dominance tree as their
28  * dependencies allow. After pushing them back up out of as many loops as
29  * possible.
30  */
31 #include "config.h"
32
33 #include <stdbool.h>
34
35 #include "iroptimize.h"
36 #include "adt/pdeq.h"
37 #include "irnode_t.h"
38 #include "iredges_t.h"
39 #include "irgopt.h"
40 #include "irpass.h"
41
42 static bool is_block_reachable(ir_node *block)
43 {
44         return get_Block_dom_depth(block) >= 0;
45 }
46
47 /**
48  * Find the earliest correct block for node n.  --- Place n into the
49  * same Block as its dominance-deepest Input.
50  *
51  * move_out_of_loops() expects that place_floats_early() have placed
52  * all "living" nodes into a living block. That's why we must
53  * move nodes in dead block with "live" successors into a valid
54  * block.
55  * We move them just into the same block as its successor (or
56  * in case of a Phi into the effective use block). For Phi successors,
57  * this may still be a dead block, but then there is no real use, as
58  * the control flow will be dead later.
59  */
60 static void place_floats_early(ir_node *n, waitq *worklist)
61 {
62         int       i;
63         int       arity;
64         ir_node  *block;
65         int       new_depth;
66         ir_graph *irg;
67         ir_node  *start_block;
68         ir_node  *new_block;
69
70         /* we must not run into an infinite loop */
71         if (irn_visited_else_mark(n))
72                 return;
73
74         /* The algorithm relies on the fact that all predecessors of a block are
75          * moved up after a call to place_float_early of the predecessors
76          * (see the loop below).
77          * However we have to break cycles somewhere. Relying on the visited flag
78          * will result in nodes not being moved up despite their place_floats_early
79          * call.
80          * Instead we break cycles at pinned nodes which won't move anyway:
81          * This works because in firm each cycle contains a Phi or Block node
82          * (which are pinned)
83          */
84         if (get_irn_pinned(n) != op_pin_state_floats) {
85                 /* we can't move pinned nodes */
86                 arity = get_irn_arity(n);
87                 for (i = 0; i < arity; ++i) {
88                         ir_node *pred = get_irn_n(n, i);
89                         pdeq_putr(worklist, pred);
90                 }
91                 if (!is_Block(n))
92                         pdeq_putr(worklist, get_nodes_block(n));
93                 return;
94         }
95
96         block = get_nodes_block(n);
97
98         /* first move predecessors up */
99         arity = get_irn_arity(n);
100         place_floats_early(block, worklist);
101         for (i = 0; i < arity; ++i) {
102                 ir_node *pred = get_irn_n(n, i);
103                 place_floats_early(pred, worklist);
104         }
105
106         /* determine earliest point */
107         new_block = NULL;
108         new_depth = 0;
109         for (i = 0; i < arity; ++i) {
110                 ir_node *pred       = get_irn_n(n, i);
111                 ir_node *pred_block = get_nodes_block(pred);
112                 int      pred_depth = get_Block_dom_depth(pred_block);
113                 if (pred_depth > new_depth) {
114                         new_depth = pred_depth;
115                         new_block = pred_block;
116                 }
117         }
118
119         /* avoid moving nodes into the start block if we are not in the backend */
120         irg         = get_irn_irg(n);
121         start_block = get_irg_start_block(irg);
122         if (new_block == start_block && block != start_block &&
123             get_irg_phase_state(irg) != phase_backend) {
124                 assert(get_irn_n_edges_kind(start_block, EDGE_KIND_BLOCK) == 1);
125                 const ir_edge_t *edge = get_block_succ_first(start_block);
126                 new_block = get_edge_src_irn(edge);
127         }
128
129         /* Set the new block */
130         if (new_block != NULL)
131                 set_nodes_block(n, new_block);
132 }
133
134 /**
135  * Floating nodes form subgraphs that begin at nodes as Const, Load,
136  * Start, Call and that end at op_pin_state_pinned nodes as Store, Call.
137  * Place_early places all floating nodes reachable from its argument through
138  * floating nodes and adds all beginnings at op_pin_state_pinned nodes to the
139  * worklist.
140  *
141  * @param worklist   a worklist, used for the algorithm, empty on in/output
142  */
143 static void place_early(ir_graph *irg, waitq *worklist)
144 {
145         assert(worklist);
146         inc_irg_visited(irg);
147
148         /* this inits the worklist */
149         place_floats_early(get_irg_end(irg), worklist);
150
151         /* Work the content of the worklist. */
152         while (!waitq_empty(worklist)) {
153                 ir_node *n = (ir_node*)waitq_get(worklist);
154                 if (!irn_visited(n))
155                         place_floats_early(n, worklist);
156         }
157         set_irg_pinned(irg, op_pin_state_pinned);
158 }
159
160 /**
161  * Compute the deepest common dominator tree ancestor of block and dca.
162  *
163  * @param dca    the deepest common dominator tree ancestor so far,
164  *               might be NULL
165  * @param block  a block
166  *
167  * @return  the deepest common dominator tree ancestor of block and dca
168  */
169 static ir_node *calc_dom_dca(ir_node *dca, ir_node *block)
170 {
171         assert(block != NULL);
172
173         /* We found a first legal placement. */
174         if (!dca)
175                 return block;
176
177         /* Find a placement that is dominates both, dca and block. */
178         while (get_Block_dom_depth(block) > get_Block_dom_depth(dca))
179                 block = get_Block_idom(block);
180
181         while (get_Block_dom_depth(dca) > get_Block_dom_depth(block)) {
182                 dca = get_Block_idom(dca);
183         }
184
185         while (block != dca) {
186                 block = get_Block_idom(block); dca = get_Block_idom(dca);
187         }
188         return dca;
189 }
190
191 /**
192  * Deepest common dominance ancestor of DCA and CONSUMER of PRODUCER.
193  * I.e., DCA is the block where we might place PRODUCER.
194  * A data flow edge points from producer to consumer.
195  */
196 static ir_node *consumer_dom_dca(ir_node *dca, ir_node *consumer,
197                                  ir_node *producer)
198 {
199         /* Compute the last block into which we can place a node so that it is
200            before consumer. */
201         if (is_Phi(consumer)) {
202                 /* our consumer is a Phi-node, the effective use is in all those
203                    blocks through which the Phi-node reaches producer */
204                 ir_node *phi_block = get_nodes_block(consumer);
205                 int      arity     = get_irn_arity(consumer);
206                 int      i;
207
208                 for (i = 0;  i < arity; i++) {
209                         if (get_Phi_pred(consumer, i) == producer) {
210                                 ir_node *new_block = get_Block_cfgpred_block(phi_block, i);
211                                 if (is_Bad(new_block))
212                                         continue;
213
214                                 assert(is_block_reachable(new_block));
215                                 dca = calc_dom_dca(dca, new_block);
216                         }
217                 }
218         } else {
219                 dca = calc_dom_dca(dca, get_nodes_block(consumer));
220         }
221         return dca;
222 }
223
224 static inline int get_block_loop_depth(ir_node *block)
225 {
226         return get_loop_depth(get_irn_loop(block));
227 }
228
229 /**
230  * Move n to a block with less loop depth than its current block. The
231  * new block must be dominated by early.
232  *
233  * @param n      the node that should be moved
234  * @param early  the earliest block we can n move to
235  */
236 static void move_out_of_loops(ir_node *n, ir_node *early)
237 {
238         ir_node *block      = get_nodes_block(n);
239         ir_node *best       = block;
240         int      best_depth = get_block_loop_depth(best);
241
242         /* Find the region deepest in the dominator tree dominating
243            dca with the least loop nesting depth, but still dominated
244            by our early placement. */
245         while (block != early) {
246                 ir_node *idom       = get_Block_idom(block);
247                 int      idom_depth = get_block_loop_depth(idom);
248                 if (idom_depth < best_depth) {
249                         best       = idom;
250                         best_depth = idom_depth;
251                 }
252                 block = idom;
253         }
254         if (best != get_nodes_block(n))
255                 set_nodes_block(n, best);
256 }
257
258 /**
259  * Calculate the deepest common ancestor in the dominator tree of all nodes'
260  * blocks depending on node; our final placement has to dominate DCA.
261  *
262  * @param node  the definition node
263  * @param dca   the deepest common ancestor block so far, initially
264  *              NULL
265  *
266  * @return the deepest common dominator ancestor of all blocks of node's users
267  */
268 static ir_node *get_deepest_common_dom_ancestor(ir_node *node, ir_node *dca)
269 {
270         foreach_out_edge(node, edge) {
271                 ir_node *succ = get_edge_src_irn(edge);
272
273                 /* keepalive edges are special and don't respect the dominance */
274                 if (is_End(succ))
275                         continue;
276
277                 if (is_Proj(succ)) {
278                         /* Proj nodes are in the same block as node, so
279                          * the users of Proj are our users. */
280                         dca = get_deepest_common_dom_ancestor(succ, dca);
281                 } else {
282                         assert(is_block_reachable(get_nodes_block(succ)));
283                         dca = consumer_dom_dca(dca, succ, node);
284                 }
285         }
286         foreach_out_edge_kind(node, edge, EDGE_KIND_DEP) {
287                 ir_node *succ = get_edge_src_irn(edge);
288                 assert(is_block_reachable(get_nodes_block(succ)));
289                 dca = consumer_dom_dca(dca, succ, node);
290         }
291         return dca;
292 }
293
294 /**
295  * Put all the Proj nodes of a node into a given block.
296  *
297  * @param node   the mode_T node
298  * @param block  the block to put the Proj nodes to
299  */
300 static void set_projs_block(ir_node *node, ir_node *block)
301 {
302         foreach_out_edge(node, edge) {
303                 ir_node *succ = get_edge_src_irn(edge);
304
305                 if (!is_Proj(succ))
306                         continue;
307
308                 set_nodes_block(succ, block);
309                 if (get_irn_mode(succ) == mode_T) {
310                         set_projs_block(succ, block);
311                 }
312         }
313 }
314
315 /**
316  * Find the latest legal block for N and place N into the
317  * `optimal' Block between the latest and earliest legal block.
318  * The `optimal' block is the dominance-deepest block of those
319  * with the least loop-nesting-depth.  This places N out of as many
320  * loops as possible and then makes it as control dependent as
321  * possible.
322  */
323 static void place_floats_late(ir_node *n, pdeq *worklist)
324 {
325         ir_node *block;
326         ir_node *dca;
327
328         if (irn_visited_else_mark(n))
329                 return;
330
331         /* break cycles at pinned nodes (see place place_floats_early) as to why */
332         if (get_irn_pinned(n) != op_pin_state_floats) {
333                 foreach_out_edge(n, edge) {
334                         ir_node *succ = get_edge_src_irn(edge);
335                         pdeq_putr(worklist, succ);
336                 }
337                 return;
338         }
339
340         /* place our users */
341         foreach_out_edge(n, edge) {
342                 ir_node *succ = get_edge_src_irn(edge);
343                 place_floats_late(succ, worklist);
344         }
345
346         /* no point in moving Projs around, they are moved with their predecessor */
347         if (is_Proj(n))
348                 return;
349         /* some nodes should simply stay in the startblock */
350         if (is_irn_start_block_placed(n)) {
351                 assert(get_nodes_block(n) == get_irg_start_block(get_irn_irg(n)));
352                 return;
353         }
354
355         block = get_nodes_block(n);
356         assert(is_block_reachable(block));
357
358         /* deepest common ancestor in the dominator tree of all nodes'
359            blocks depending on us; our final placement has to dominate
360            DCA. */
361         dca = get_deepest_common_dom_ancestor(n, NULL);
362         if (dca != NULL) {
363                 set_nodes_block(n, dca);
364                 move_out_of_loops(n, block);
365                 if (get_irn_mode(n) == mode_T) {
366                         set_projs_block(n, get_nodes_block(n));
367                 }
368         }
369 }
370
371 /**
372  * Place floating nodes on the given worklist as late as possible using
373  * the dominance tree.
374  *
375  * @param worklist   the worklist containing the nodes to place
376  */
377 static void place_late(ir_graph *irg, waitq *worklist)
378 {
379         assert(worklist);
380         inc_irg_visited(irg);
381
382         /* This fills the worklist initially. */
383         place_floats_late(get_irg_start_block(irg), worklist);
384
385         /* And now empty the worklist again... */
386         while (!waitq_empty(worklist)) {
387                 ir_node *n = (ir_node*)waitq_get(worklist);
388                 if (!irn_visited(n))
389                         place_floats_late(n, worklist);
390         }
391 }
392
393 /* Code Placement. */
394 void place_code(ir_graph *irg)
395 {
396         waitq *worklist;
397
398         /* Handle graph state */
399         assert(get_irg_phase_state(irg) != phase_building);
400         assure_irg_properties(irg,
401                 IR_GRAPH_PROPERTY_NO_CRITICAL_EDGES |
402                 IR_GRAPH_PROPERTY_NO_UNREACHABLE_CODE |
403                 IR_GRAPH_PROPERTY_CONSISTENT_OUT_EDGES |
404                 IR_GRAPH_PROPERTY_CONSISTENT_DOMINANCE |
405                 IR_GRAPH_PROPERTY_CONSISTENT_LOOPINFO);
406
407         /* Place all floating nodes as early as possible. This guarantees
408          a legal code placement. */
409         worklist = new_waitq();
410         place_early(irg, worklist);
411
412         /* While GCSE might place nodes in unreachable blocks,
413          * these are now placed in reachable blocks. */
414
415         /* Note: place_early changes only blocks, no data edges. So, the
416          * data out edges are still valid, no need to recalculate them here. */
417
418         /* Now move the nodes down in the dominator tree. This reduces the
419            unnecessary executions of the node. */
420         place_late(irg, worklist);
421
422         del_waitq(worklist);
423         confirm_irg_properties(irg, IR_GRAPH_PROPERTIES_CONTROL_FLOW);
424 }
425
426 /**
427  * Wrapper for place_code() inside the place_code pass.
428  */
429 static void place_code_wrapper(ir_graph *irg)
430 {
431         set_opt_global_cse(1);
432         optimize_graph_df(irg);
433         place_code(irg);
434         set_opt_global_cse(0);
435 }
436
437 ir_graph_pass_t *place_code_pass(const char *name)
438 {
439         return def_graph_pass(name ? name : "place", place_code_wrapper);
440 }