fix wrong usage of ircons functions
[libfirm] / ir / opt / loop.c
1 /*
2  * Copyright (C) 1995-2011 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  * @author   Christian Helmer
23  * @brief    loop inversion and loop unrolling
24  *
25  * @version  $Id$
26  */
27 #include "config.h"
28
29 #include "iroptimize.h"
30 #include "opt_init.h"
31 #include "irnode.h"
32 #include "debug.h"
33 #include "error.h"
34
35 #include "ircons.h"
36 #include "irgopt.h"
37 #include "irgmod.h"
38 #include "irgwalk.h"
39 #include "irouts.h"
40 #include "iredges.h"
41 #include "irtools.h"
42 #include "array_t.h"
43 #include "beutil.h"
44 #include "irpass.h"
45 #include "irdom.h"
46
47 #include <math.h>
48 #include "irbackedge_t.h"
49 #include "irphase_t.h"
50 #include "irloop_t.h"
51
52
53 DEBUG_ONLY(static firm_dbg_module_t *dbg);
54
55 /* DBG print stats for every procedure.  */
56 #define LOOP_OPT_STATS 1
57
58 /* DBG: Ignore node limits and process every possible loop. */
59 #define LOOP_IGNORE_NODE_LIMITS 0
60
61 /**
62  * Convenience macro for iterating over every phi node of the given block.
63  * Requires phi list per block.
64  */
65 #define for_each_phi(block, phi) \
66         for ((phi) = get_Block_phis( (block) ); (phi) ; (phi) = get_Phi_next((phi)))
67
68 #define for_each_phi_safe(head, phi, next) \
69         for ((phi) = (head), (next) = (head) ? get_Phi_next((head)) : NULL; \
70                         (phi) ; (phi) = (next), (next) = (next) ? get_Phi_next((next)) : NULL)
71
72 /* Currently processed loop. */
73 static ir_loop *cur_loop;
74
75 /* Flag for kind of unrolling. */
76 typedef enum {
77         constant,
78         invariant
79 } unrolling_kind_flag;
80
81 /* Condition for performing visiting a node during copy_walk. */
82 typedef unsigned walker_condition(ir_node *);
83
84 /* Node and position of a predecessor. */
85 typedef struct entry_edge {
86         ir_node *node;
87         int pos;
88         ir_node *pred;
89 } entry_edge;
90
91 /* Node info for unrolling. */
92 typedef struct unrolling_node_info {
93         ir_node **copies;
94 } unrolling_node_info;
95
96 /* Outs of the nodes head. */
97 static entry_edge *cur_head_outs;
98
99 /* Information about the loop head */
100 static ir_node *loop_head = NULL;
101 static unsigned loop_head_valid = 1;
102
103 /* List of all inner loops, that are processed. */
104 static ir_loop **loops;
105
106 #if LOOP_OPT_STATS
107
108 #define count_stats(val) (++val)
109 #define print_stats() (do_print_stats())
110 #define reset_stats() (do_reset_stats())
111
112 /* Stats */
113 typedef struct loop_stats_t {
114         unsigned loops;
115         unsigned inverted;
116         unsigned too_large;
117         unsigned too_large_adapted;
118         unsigned cc_limit_reached;
119         unsigned calls_limit;
120
121         unsigned u_simple_counting_loop;
122         unsigned constant_unroll;
123         unsigned invariant_unroll;
124
125         unsigned unhandled;
126 } loop_stats_t;
127
128 static loop_stats_t stats;
129
130 /* Set stats to sero */
131 static void do_reset_stats(void)
132 {
133         memset(&stats, 0, sizeof(loop_stats_t));
134 }
135
136 /* Print stats */
137 static void do_print_stats(void)
138 {
139         DB((dbg, LEVEL_2, "---------------------------------------\n"));
140         DB((dbg, LEVEL_2, "loops             :   %d\n",stats.loops));
141         DB((dbg, LEVEL_2, "inverted          :   %d\n",stats.inverted));
142         DB((dbg, LEVEL_2, "too_large         :   %d\n",stats.too_large));
143         DB((dbg, LEVEL_2, "too_large_adapted :   %d\n",stats.too_large_adapted));
144         DB((dbg, LEVEL_2, "cc_limit_reached  :   %d\n",stats.cc_limit_reached));
145         DB((dbg, LEVEL_2, "calls_limit       :   %d\n",stats.calls_limit));
146         DB((dbg, LEVEL_2, "u_simple_counting :   %d\n",stats.u_simple_counting_loop));
147         DB((dbg, LEVEL_2, "constant_unroll   :   %d\n",stats.constant_unroll));
148         DB((dbg, LEVEL_2, "invariant_unroll  :   %d\n",stats.invariant_unroll));
149         DB((dbg, LEVEL_2, "=======================================\n"));
150 }
151 #else
152 /* No stats */
153 #define count_stats(val) ((void)0)
154 #define print_stats() ((void)0)
155 #define reset_stats() ((void)0)
156
157 #endif
158
159 /* Commandline parameters */
160 typedef struct loop_opt_params_t {
161 unsigned max_loop_size;     /* Maximum number of nodes  [nodes]*/
162 int      depth_adaption;    /* Loop nest depth adaption [percent] */
163 unsigned allowed_calls;     /* Number of calls allowed [number] */
164 unsigned count_phi:1;       /* Count phi nodes */
165 unsigned count_proj:1;      /* Count projections */
166
167 unsigned max_cc_size;       /* Maximum condition chain size [nodes] */
168 unsigned max_branches;
169
170 unsigned max_unrolled_loop_size;    /* [nodes] */
171 unsigned allow_const_unrolling:1;
172 unsigned allow_invar_unrolling:1;
173 unsigned invar_unrolling_min_size;  /* [nodes] */
174
175 } loop_opt_params_t;
176
177 static loop_opt_params_t opt_params;
178
179 /* Loop analysis informations */
180 typedef struct loop_info_t {
181         unsigned nodes;        /* node count */
182         unsigned ld_st;        /* load and store nodes */
183         unsigned branches;     /* number of conditions */
184         unsigned calls;        /* number of calls */
185         unsigned cf_outs;      /* number of cf edges which leave the loop */
186         entry_edge cf_out;     /* single loop leaving cf edge */
187         int be_src_pos;        /* position of the single own backedge in the head */
188
189         /* for inversion */
190         unsigned cc_size;      /* nodes in the condition chain */
191
192         /* for unrolling */
193         unsigned max_unroll;   /* Number of unrolls satisfying max_loop_size */
194         unsigned exit_cond;    /* 1 if condition==true exits the loop.  */
195         unsigned latest_value:1;    /* 1 if condition is checked against latest counter value */
196         unsigned needs_backedge:1;  /* 0 if loop is completely unrolled */
197         unsigned decreasing:1;      /* Step operation is_Sub, or step is<0 */
198
199         /* IV informations of a simple loop */
200         ir_node *start_val;
201         ir_node *step;
202         ir_node *end_val;
203         ir_node *iteration_phi;
204         ir_node *add;
205
206         ir_tarval *count_tar;               /* Number of loop iterations */
207
208         ir_node *duff_cond;                 /* Duff mod */
209         unrolling_kind_flag unroll_kind;    /* constant or invariant unrolling */
210 } loop_info_t;
211
212 /* Information about the current loop */
213 static loop_info_t loop_info;
214
215 /* Outs of the condition chain (loop inversion). */
216 static ir_node **cc_blocks;
217 /* df/cf edges with def in the condition chain */
218 static entry_edge *cond_chain_entries;
219 /* Array of df loops found in the condition chain. */
220 static entry_edge *head_df_loop;
221 /* Number of blocks in cc */
222 static unsigned inversion_blocks_in_cc;
223
224
225 /* Cf/df edges leaving the loop.
226  * Called entries here, as they are used to enter the loop with walkers. */
227 static entry_edge *loop_entries;
228 /* Number of unrolls to perform */
229 static int unroll_nr;
230 /* Phase is used to keep copies of nodes. */
231 static ir_phase *phase;
232
233 /* Loop operations.  */
234 typedef enum loop_op_t {
235         loop_op_inversion,
236         loop_op_unrolling,
237         loop_op_peeling
238 } loop_op_t;
239
240 /* Saves which loop operation to do until after basic tests. */
241 static loop_op_t loop_op;
242
243 /* Returns the maximum nodes for the given nest depth */
244 static unsigned get_max_nodes_adapted(unsigned depth)
245 {
246         double perc = 100.0 + (double)opt_params.depth_adaption;
247         double factor = pow(perc / 100.0, depth);
248
249         return (int)((double)opt_params.max_loop_size * factor);
250 }
251
252 /* Reset nodes link. For use with a walker. */
253 static void reset_link(ir_node *node, void *env)
254 {
255         (void)env;
256         set_irn_link(node, NULL);
257 }
258
259 /* Returns 0 if the node or block is not in cur_loop. */
260 static unsigned is_in_loop(ir_node *node)
261 {
262         return (get_irn_loop(get_block(node)) == cur_loop);
263 }
264
265 /* Returns 0 if the given edge is not a backedge
266  * with its pred in the cur_loop. */
267 static unsigned is_own_backedge(ir_node *n, int pos)
268 {
269         return (is_backedge(n, pos) && is_in_loop(get_irn_n(n, pos)));
270 }
271
272 /* Finds loop head and some loop_info as calls or else if necessary. */
273 static void get_loop_info(ir_node *node, void *env)
274 {
275         unsigned node_in_loop, pred_in_loop;
276         int i, arity;
277         (void)env;
278
279         arity = get_irn_arity(node);
280         for (i = 0; i < arity; i++) {
281                 ir_node *pred = get_irn_n(node, i);
282
283                 pred_in_loop = is_in_loop(pred);
284                 node_in_loop = is_in_loop(node);
285
286                 if (!node_in_loop && pred_in_loop && is_Block(node))
287                 {
288                         entry_edge entry;
289                         entry.node = node;
290                         entry.pos = i;
291                         entry.pred = pred;
292                         /* Count cf outs */
293                         ++loop_info.cf_outs;
294                         loop_info.cf_out = entry;
295                 }
296
297                 /* collect some loop information */
298                 if (node_in_loop) {
299                         if (is_Phi(node) && opt_params.count_phi)
300                                 ++loop_info.nodes;
301                         else if (is_Proj(node) && opt_params.count_proj)
302                                 ++loop_info.nodes;
303                         else if (!is_Confirm(node) && !is_Const(node) && !is_SymConst(node))
304                                 ++loop_info.nodes;
305
306                         if (is_Load(node) || is_Store(node))
307                                 ++loop_info.ld_st;
308
309                         if (is_Call(node))
310                                 ++loop_info.calls;
311
312                 }
313
314                 /* Find the loops head/the blocks with cfpred outside of the loop */
315                 if (is_Block(node)) {
316                         const ir_edge_t *edge;
317                         unsigned outs_n = 0;
318
319                         /* Count innerloop branches */
320                         foreach_out_edge_kind(node, edge, EDGE_KIND_NORMAL) {
321                                 if (is_Block(get_edge_src_irn(edge)) && is_in_loop(get_edge_src_irn(edge)))
322                                         ++outs_n;
323                         }
324                         if (outs_n > 1)
325                                 ++loop_info.branches;
326
327                         if (node_in_loop && !pred_in_loop && loop_head_valid) {
328                                 ir_node *cfgpred = get_Block_cfgpred(node, i);
329
330                                 if (!is_in_loop(cfgpred)) {
331                                         DB((dbg, LEVEL_5, "potential head %+F because inloop and pred %+F not inloop\n",
332                                                                 node, pred));
333                                         /* another head? We do not touch this. */
334                                         if (loop_head && loop_head != node) {
335                                                 loop_head_valid = 0;
336                                         } else {
337                                                 loop_head = node;
338                                         }
339                                 }
340                         }
341                 }
342         }
343 }
344
345 /* Finds all edges with users outside of the loop
346  * and definition inside the loop. */
347 static void get_loop_entries(ir_node *node, void *env)
348 {
349         unsigned node_in_loop, pred_in_loop;
350         int i, arity;
351         (void) env;
352
353         arity = get_irn_arity(node);
354         for (i = 0; i < arity; ++i) {
355                 ir_node *pred = get_irn_n(node, i);
356
357                 pred_in_loop = is_in_loop(pred);
358                 node_in_loop = is_in_loop(node);
359
360                 if (pred_in_loop && !node_in_loop) {
361                         entry_edge entry;
362                         entry.node = node;
363                         entry.pos = i;
364                         entry.pred = pred;
365                         ARR_APP1(entry_edge, loop_entries, entry);
366                 }
367         }
368 }
369
370 /* ssa */
371 static ir_node *ssa_second_def;
372 static ir_node *ssa_second_def_block;
373
374 /**
375  * Walks the graph bottom up, searching for definitions and creates phis.
376  */
377 static ir_node *search_def_and_create_phis(ir_node *block, ir_mode *mode, int first)
378 {
379         int i;
380         int n_cfgpreds;
381         ir_graph *irg;
382         ir_node *phi;
383         ir_node **in;
384
385         DB((dbg, LEVEL_5, "ssa search_def_and_create_phis: block %N\n", block));
386
387         /* Prevents creation of phi that would be bad anyway.
388          * Dead and bad blocks. */
389         if (get_irn_arity(block) < 1 || is_Bad(block)) {
390                 DB((dbg, LEVEL_5, "ssa bad %N\n", block));
391                 return new_Bad();
392         }
393
394         if (block == ssa_second_def_block && !first) {
395                 DB((dbg, LEVEL_5, "ssa found second definition: use second def %N\n", ssa_second_def));
396                 return ssa_second_def;
397         }
398
399         /* already processed this block? */
400         if (irn_visited(block)) {
401                 ir_node *value = (ir_node *) get_irn_link(block);
402                 DB((dbg, LEVEL_5, "ssa already visited: use linked %N\n", value));
403                 return value;
404         }
405
406         irg = get_irn_irg(block);
407         assert(block != get_irg_start_block(irg));
408
409         /* a Block with only 1 predecessor needs no Phi */
410         n_cfgpreds = get_Block_n_cfgpreds(block);
411         if (n_cfgpreds == 1) {
412                 ir_node *pred_block = get_Block_cfgpred_block(block, 0);
413                 ir_node *value;
414
415                 DB((dbg, LEVEL_5, "ssa 1 pred: walk pred %N\n", pred_block));
416
417                 value = search_def_and_create_phis(pred_block, mode, 0);
418                 set_irn_link(block, value);
419                 mark_irn_visited(block);
420
421                 return value;
422         }
423
424         /* create a new Phi */
425         NEW_ARR_A(ir_node*, in, n_cfgpreds);
426         for (i = 0; i < n_cfgpreds; ++i)
427                 in[i] = new_r_Dummy(irg, mode);
428
429         phi = new_r_Phi(block, n_cfgpreds, in, mode);
430         /* Important: always keep block phi list up to date. */
431         add_Block_phi(block, phi);
432         DB((dbg, LEVEL_5, "ssa phi creation: link new phi %N to block %N\n", phi, block));
433         set_irn_link(block, phi);
434         mark_irn_visited(block);
435
436         /* set Phi predecessors */
437         for (i = 0; i < n_cfgpreds; ++i) {
438                 ir_node *pred_val;
439                 ir_node *pred_block = get_Block_cfgpred_block(block, i);
440                 assert(pred_block != NULL);
441                 pred_val = search_def_and_create_phis(pred_block, mode, 0);
442
443                 assert(pred_val != NULL);
444
445                 DB((dbg, LEVEL_5, "ssa phi pred:phi %N, pred %N\n", phi, pred_val));
446                 set_irn_n(phi, i, pred_val);
447         }
448
449         return phi;
450 }
451
452
453 /**
454  * Given a set of values this function constructs SSA-form for the users of the
455  * first value (the users are determined through the out-edges of the value).
456  * Works without using the dominance tree.
457  */
458 static void construct_ssa(ir_node *orig_block, ir_node *orig_val,
459                 ir_node *second_block, ir_node *second_val)
460 {
461         ir_graph *irg;
462         ir_mode *mode;
463         const ir_edge_t *edge;
464         const ir_edge_t *next;
465
466         assert(orig_block && orig_val && second_block && second_val &&
467                         "no parameter of construct_ssa may be NULL");
468
469         if (orig_val == second_val)
470                 return;
471
472         irg = get_irn_irg(orig_val);
473
474         ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
475         inc_irg_visited(irg);
476
477         mode = get_irn_mode(orig_val);
478         set_irn_link(orig_block, orig_val);
479         mark_irn_visited(orig_block);
480
481         ssa_second_def_block = second_block;
482         ssa_second_def       = second_val;
483
484         /* Only fix the users of the first, i.e. the original node */
485         foreach_out_edge_safe(orig_val, edge, next) {
486                 ir_node *user = get_edge_src_irn(edge);
487                 int j = get_edge_src_pos(edge);
488                 ir_node *user_block = get_nodes_block(user);
489                 ir_node *newval;
490
491                 /* ignore keeps */
492                 if (is_End(user))
493                         continue;
494
495                 DB((dbg, LEVEL_5, "original user %N\n", user));
496
497                 if (is_Phi(user)) {
498                         ir_node *pred_block = get_Block_cfgpred_block(user_block, j);
499                         newval = search_def_and_create_phis(pred_block, mode, 1);
500                 } else {
501                         newval = search_def_and_create_phis(user_block, mode, 1);
502                 }
503                 if (newval != user && !is_Bad(newval))
504                         set_irn_n(user, j, newval);
505         }
506
507         ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
508 }
509
510
511 /***** Unrolling Helper Functions *****/
512
513 /* Assign the copy with index nr to node n */
514 static void set_unroll_copy(ir_node *n, int nr, ir_node *cp)
515 {
516         unrolling_node_info *info;
517         assert(nr != 0 && "0 reserved");
518
519         info = (unrolling_node_info *)phase_get_irn_data(phase, n);
520         if (! info) {
521                 ir_node **arr;
522
523                 info = XMALLOCZ(unrolling_node_info);
524                 arr = NEW_ARR_F(ir_node *, unroll_nr);
525                 info->copies = arr;
526                 memset(info->copies, 0, (unroll_nr) * sizeof(ir_node *));
527
528                 phase_set_irn_data(phase, n, info);
529         }
530         /* Original node */
531         info->copies[0] = n;
532
533         info->copies[nr] = cp;
534 }
535
536 /* Returns a nodes copy if it exists, else NULL. */
537 static ir_node *get_unroll_copy(ir_node *n, int nr)
538 {
539         ir_node             *cp;
540         unrolling_node_info *info = (unrolling_node_info *)phase_get_irn_data(phase, n);
541         if (! info)
542                 return NULL;
543
544         cp = info->copies[nr];
545         return cp;
546 }
547
548
549 /***** Inversion Helper Functions *****/
550
551 /* Sets copy cp of node n. */
552 static void set_inversion_copy(ir_node *n, ir_node *cp)
553 {
554         phase_set_irn_data(phase, n, cp);
555 }
556
557 /* Getter of copy of n for inversion */
558 static ir_node *get_inversion_copy(ir_node *n)
559 {
560         ir_node *cp = (ir_node *)phase_get_irn_data(phase, n);
561         return cp;
562 }
563
564 /* Resets block mark for given node. For use with walker */
565 static void reset_block_mark(ir_node *node, void * env)
566 {
567         (void) env;
568
569         if (is_Block(node))
570                 set_Block_mark(node, 0);
571 }
572
573 /* Returns mark of node, or its block if node is not a block.
574  * Used in this context to determine if node is in the condition chain. */
575 static unsigned is_nodes_block_marked(ir_node* node)
576 {
577         if (is_Block(node))
578                 return get_Block_mark(node);
579         else
580                 return get_Block_mark(get_block(node));
581 }
582
583 /* Extends a nodes ins by node new.
584  * NOTE: This is slow if a node n needs to be extended more than once. */
585 static void extend_irn(ir_node *n, ir_node *newnode, int new_is_backedge)
586 {
587         ir_node **ins;
588         int i;
589         int arity = get_irn_arity(n);
590         int new_arity = arity + 1;
591         int *bes;
592
593         NEW_ARR_A(int, bes, new_arity);
594         NEW_ARR_A(ir_node *, ins, new_arity);
595
596         /* save bes */
597         /* Bes are important!
598          * Another way would be recreating the looptree,
599          * but after that we cannot distinguish already processed loops
600          * from not yet processed ones. */
601         if (is_Block(n)) {
602                 for(i = 0; i < arity; ++i) {
603                         bes[i] = is_backedge(n, i);
604                 }
605                 bes[i] = new_is_backedge;
606         }
607
608         for(i = 0; i < arity; ++i) {
609                 ins[i] = get_irn_n(n, i);
610         }
611         ins[i] = newnode;
612
613         set_irn_in(n, new_arity, ins);
614
615         /* restore bes  */
616         if (is_Block(n)) {
617                 for(i = 0; i < new_arity; ++i) {
618                         if (bes[i])
619                                 set_backedge(n, i);
620                 }
621         }
622 }
623
624 /* Extends a block by a copy of its pred at pos,
625  * fixing also the phis in the same way. */
626 static void extend_ins_by_copy(ir_node *block, int pos)
627 {
628         ir_node *new_in;
629         ir_node *phi;
630         ir_node *pred;
631         assert(is_Block(block));
632
633         /* Extend block by copy of definition at pos */
634         pred = get_irn_n(block, pos);
635         new_in = get_inversion_copy(pred);
636         DB((dbg, LEVEL_5, "Extend block %N by %N cp of %N\n", block, new_in, pred));
637         extend_irn(block, new_in, 0);
638
639         /* Extend block phis by copy of definition at pos */
640         for_each_phi(block, phi) {
641                 ir_node *pred, *cp;
642
643                 pred = get_irn_n(phi, pos);
644                 cp = get_inversion_copy(pred);
645                 /* If the phis in is not in the condition chain (eg. a constant),
646                  * there is no copy. */
647                 if (cp == NULL)
648                         new_in = pred;
649                 else
650                         new_in = cp;
651
652                 DB((dbg, LEVEL_5, "Extend phi %N by %N cp of %N\n", phi, new_in, pred));
653                 extend_irn(phi, new_in, 0);
654         }
655 }
656
657 /* Returns the number of blocks backedges. With or without alien bes. */
658 static int get_backedge_n(ir_node *block, unsigned with_alien)
659 {
660         int i;
661         int be_n = 0;
662         int arity = get_irn_arity(block);
663
664         assert(is_Block(block));
665
666         for (i = 0; i < arity; ++i) {
667                 ir_node *pred = get_irn_n(block, i);
668                 if (is_backedge(block, i) && (with_alien || is_in_loop(pred)))
669                         ++be_n;
670         }
671         return be_n;
672 }
673
674 /* Returns a raw copy of the given node.
675  * Attributes are kept/set according to the needs of loop inversion. */
676 static ir_node *copy_node(ir_node *node)
677 {
678         int i, arity;
679         ir_node *cp;
680
681         cp = exact_copy(node);
682         arity = get_irn_arity(node);
683
684         /* Keep backedge info */
685         for (i = 0; i < arity; ++i) {
686                 if (is_backedge(node, i))
687                         set_backedge(cp, i);
688         }
689
690         if (is_Block(cp)) {
691                 set_Block_mark(cp, 0);
692         }
693
694         return cp;
695 }
696
697
698 /**
699  * This walker copies all walked nodes.
700  * If the walk_condition is true for a node, it is copied.
701  * All nodes node_info->copy have to be NULL prior to every walk.
702  * Order of ins is important for later usage.
703  */
704 static void copy_walk(ir_node *node, walker_condition *walk_condition,
705                       ir_loop *set_loop)
706 {
707         int i;
708         int arity;
709         ir_node *cp;
710         ir_node **cpin;
711         ir_graph *irg = current_ir_graph;
712
713         /**
714          * break condition and cycle resolver, creating temporary node copies
715          */
716         if (get_irn_visited(node) >= get_irg_visited(irg)) {
717                 /* Here we rely on nodestate's copy being initialized with NULL */
718                 DB((dbg, LEVEL_5, "copy_walk: We have already visited %N\n", node));
719                 if (get_inversion_copy(node) == NULL) {
720                         cp = copy_node(node);
721                         set_inversion_copy(node, cp);
722
723                         DB((dbg, LEVEL_5, "The TEMP copy of %N is created %N\n", node, cp));
724                 }
725                 return;
726         }
727
728         /* Walk */
729         mark_irn_visited(node);
730
731         if (!is_Block(node)) {
732                 ir_node *pred = get_nodes_block(node);
733                 if (walk_condition(pred))
734                         DB((dbg, LEVEL_5, "walk block %N\n", pred));
735                 copy_walk(pred, walk_condition, set_loop);
736         }
737
738         arity = get_irn_arity(node);
739
740         NEW_ARR_A(ir_node *, cpin, arity);
741
742         for (i = 0; i < arity; ++i) {
743                 ir_node *pred = get_irn_n(node, i);
744
745                 if (walk_condition(pred)) {
746                         DB((dbg, LEVEL_5, "walk node %N\n", pred));
747                         copy_walk(pred, walk_condition, set_loop);
748                         cpin[i] = get_inversion_copy(pred);
749                         DB((dbg, LEVEL_5, "copy of %N gets new in %N which is copy of %N\n",
750                                                 node, get_inversion_copy(pred), pred));
751                 } else {
752                         cpin[i] = pred;
753                 }
754         }
755
756         /* copy node / finalize temp node */
757         if (get_inversion_copy(node) == NULL) {
758                 /* No temporary copy existent */
759                 cp = copy_node(node);
760                 set_inversion_copy(node, cp);
761                 DB((dbg, LEVEL_5, "The FINAL copy of %N is CREATED %N\n", node, cp));
762         } else {
763                 /* temporary copy is existent but without correct ins */
764                 cp = get_inversion_copy(node);
765                 DB((dbg, LEVEL_5, "The FINAL copy of %N is EXISTENT %N\n", node, cp));
766         }
767
768         if (!is_Block(node)) {
769                 ir_node *cpblock = get_inversion_copy(get_nodes_block(node));
770
771                 set_nodes_block(cp, cpblock );
772                 if (is_Phi(cp))
773                         add_Block_phi(cpblock, cp);
774         }
775
776         /* Keeps phi list of temporary node. */
777         set_irn_in(cp, ARR_LEN(cpin), cpin);
778 }
779
780 /**
781  * This walker copies all walked nodes.
782  * If the walk_condition is true for a node, it is copied.
783  * All nodes node_info->copy have to be NULL prior to every walk.
784  * Order of ins is important for later usage.
785  * Takes copy_index, to phase-link copy at specific index.
786  */
787 static void copy_walk_n(ir_node *node, walker_condition *walk_condition,
788                         int copy_index)
789 {
790         int i;
791         int arity;
792         ir_node *cp;
793         ir_node **cpin;
794
795         /**
796          * break condition and cycle resolver, creating temporary node copies
797          */
798         if (irn_visited(node)) {
799                 /* Here we rely on nodestate's copy being initialized with NULL */
800                 DB((dbg, LEVEL_5, "copy_walk: We have already visited %N\n", node));
801                 if (get_unroll_copy(node, copy_index) == NULL) {
802                         ir_node *u;
803                         u = copy_node(node);
804                         set_unroll_copy(node, copy_index, u);
805                         DB((dbg, LEVEL_5, "The TEMP unknown of %N is created %N\n", node, u));
806                 }
807                 return;
808         }
809
810         /* Walk */
811         mark_irn_visited(node);
812
813         if (!is_Block(node)) {
814                 ir_node *block = get_nodes_block(node);
815                 if (walk_condition(block))
816                         DB((dbg, LEVEL_5, "walk block %N\n", block));
817                 copy_walk_n(block, walk_condition, copy_index);
818         }
819
820         arity = get_irn_arity(node);
821         NEW_ARR_A(ir_node *, cpin, arity);
822
823         for (i = 0; i < arity; ++i) {
824                 ir_node *pred = get_irn_n(node, i);
825
826                 if (walk_condition(pred)) {
827                         DB((dbg, LEVEL_5, "walk node %N\n", pred));
828                         copy_walk_n(pred, walk_condition, copy_index);
829                         cpin[i] = get_unroll_copy(pred, copy_index);
830                 } else {
831                         cpin[i] = pred;
832                 }
833         }
834
835         /* copy node / finalize temp node */
836         cp = get_unroll_copy(node, copy_index);
837         if (cp == NULL || is_Unknown(cp)) {
838                 cp = copy_node(node);
839                 set_unroll_copy(node, copy_index, cp);
840                 DB((dbg, LEVEL_5, "The FINAL copy of %N is CREATED %N\n", node, cp));
841         } else {
842                 /* temporary copy is existent but without correct ins */
843                 cp = get_unroll_copy(node, copy_index);
844                 DB((dbg, LEVEL_5, "The FINAL copy of %N is EXISTENT %N\n", node, cp));
845         }
846
847         if (!is_Block(node)) {
848                 ir_node *cpblock = get_unroll_copy(get_nodes_block(node), copy_index);
849
850                 set_nodes_block(cp, cpblock );
851                 if (is_Phi(cp))
852                         add_Block_phi(cpblock, cp);
853         }
854
855         /* Keeps phi list of temporary node. */
856         set_irn_in(cp, ARR_LEN(cpin), cpin);
857 }
858
859 /* Removes alle Blocks with non marked predecessors from the condition chain. */
860 static void unmark_not_allowed_cc_blocks(void)
861 {
862         size_t blocks = ARR_LEN(cc_blocks);
863         size_t i;
864
865         for(i = 0; i < blocks; ++i) {
866                 ir_node *block = cc_blocks[i];
867                 int a;
868                 int arity = get_irn_arity(block);
869
870                 /* Head is an exception. */
871                 if (block == loop_head)
872                         continue;
873
874                 for(a = 0; a < arity; ++a) {
875                         if (! is_nodes_block_marked(get_irn_n(block, a))) {
876                                 set_Block_mark(block, 0);
877                                 --inversion_blocks_in_cc;
878                                 DB((dbg, LEVEL_5, "Removed %N from cc (blocks in cc %d)\n",
879                                                 block, inversion_blocks_in_cc));
880
881                                 break;
882                         }
883                 }
884         }
885 }
886
887 /* Unmarks all cc blocks using cc_blocks except head.
888  * TODO: invert head for unrolling? */
889 static void unmark_cc_blocks(void)
890 {
891         size_t blocks = ARR_LEN(cc_blocks);
892         size_t i;
893
894         for(i = 0; i < blocks; ++i) {
895                 ir_node *block = cc_blocks[i];
896
897                 /* TODO Head is an exception. */
898                 /*if (block != loop_head)*/
899                 set_Block_mark(block, 0);
900         }
901         /*inversion_blocks_in_cc = 1;*/
902         inversion_blocks_in_cc = 0;
903
904         /* invalidate */
905         loop_info.cc_size = 0;
906 }
907
908 /**
909  * Populates head_entries with (node, pred_pos) tuple
910  * whereas the node's pred at pred_pos is in the cc but not the node itself.
911  * Also finds df loops inside the cc.
912  * Head and condition chain blocks have been marked previously.
913  */
914 static void get_head_outs(ir_node *node, void *env)
915 {
916         int i;
917         int arity = get_irn_arity(node);
918         (void) env;
919
920         for (i = 0; i < arity; ++i) {
921                 if (!is_nodes_block_marked(node) && is_nodes_block_marked(get_irn_n(node, i))) {
922                         entry_edge entry;
923                         entry.node = node;
924                         entry.pos = i;
925                         /* Saving also predecessor seems redundant, but becomes
926                          * necessary when changing position of it, before
927                          * dereferencing it.*/
928                         entry.pred = get_irn_n(node, i);
929                         ARR_APP1(entry_edge, cur_head_outs, entry);
930                 }
931         }
932
933         arity = get_irn_arity(loop_head);
934
935         /* Find df loops inside the cc */
936         if (is_Phi(node) && get_nodes_block(node) == loop_head) {
937                 for (i = 0; i < arity; ++i) {
938                         if (is_own_backedge(loop_head, i)) {
939                                 if (is_nodes_block_marked(get_irn_n(node, i))) {
940                                         entry_edge entry;
941                                         entry.node = node;
942                                         entry.pos = i;
943                                         entry.pred = get_irn_n(node, i);
944                                         ARR_APP1(entry_edge, head_df_loop, entry);
945                                         DB((dbg, LEVEL_5, "Found incc assignment node %N @%d is pred %N, graph %N %N\n",
946                                                         node, i, entry.pred, current_ir_graph, get_irg_start_block(current_ir_graph)));
947                                 }
948                         }
949                 }
950         }
951 }
952
953 /**
954  * Find condition chains, and add them to be inverted.
955  * A block belongs to the chain if a condition branches out of the loop.
956  * (Some blocks need to be removed once again.)
957  * Returns 1 if the given block belongs to the condition chain.
958  */
959 static unsigned find_condition_chain(ir_node *block)
960 {
961         const    ir_edge_t *edge;
962         unsigned mark = 0;
963         unsigned has_be = 0;
964         unsigned jmp_only;
965         unsigned nodes_n = 0;
966
967         mark_irn_visited(block);
968
969         DB((dbg, LEVEL_5, "condition_chains for block %N\n", block));
970
971         /* Get node count */
972         foreach_out_edge_kind(block, edge, EDGE_KIND_NORMAL) {
973                 ++nodes_n;
974         }
975
976         /* Check if node count would exceed maximum cc size.
977          * TODO
978          * This is not optimal, as we search depth-first and break here,
979          * continuing with another subtree. */
980         if (loop_info.cc_size + nodes_n > opt_params.max_cc_size) {
981                 set_Block_mark(block, 0);
982                 return 0;
983         }
984
985         /* Check if block only has a jmp instruction. */
986         jmp_only = 1;
987         foreach_out_edge(block, edge) {
988                 ir_node *src = get_edge_src_irn(edge);
989
990                 if (! is_Block(src) && ! is_Jmp(src)) {
991                         jmp_only = 0;
992                 }
993         }
994
995         /* Check cf outs if one is leaving the loop,
996          * or if this node has a backedge. */
997         foreach_block_succ(block, edge) {
998                 ir_node *src = get_edge_src_irn(edge);
999                 int pos = get_edge_src_pos(edge);
1000
1001                 if (! is_in_loop(src))
1002                         mark = 1;
1003
1004                 /* Inverting blocks with backedge outs leads to a cf edge
1005                  * from the inverted head, into the inverted head (skipping the body).
1006                  * As the body becomes the new loop head,
1007                  * this would introduce another loop in the existing loop.
1008                  * This loop inversion cannot cope with this case. */
1009                 if (is_backedge(src, pos)) {
1010                         has_be = 1;
1011                         break;
1012                 }
1013         }
1014
1015         /* We need all predecessors to already belong to the condition chain.
1016          * Example of wrong case:  * == in cc
1017          *
1018          *     Head*             ,--.
1019          *    /|   \            B   |
1020          *   / A*  B           /    |
1021          *  / /\   /          ?     |
1022          *   /   C*      =>      D  |
1023          *      /  D           Head |
1024          *     /               A  \_|
1025          *                      C
1026          */
1027         /* Collect blocks containing only a Jmp.
1028          * Do not collect blocks with backedge outs. */
1029         if ((jmp_only == 1 || mark == 1) && has_be == 0) {
1030                 set_Block_mark(block, 1);
1031                 ++inversion_blocks_in_cc;
1032                 loop_info.cc_size += nodes_n;
1033                 DB((dbg, LEVEL_5, "block %N is part of condition chain\n", block));
1034                 ARR_APP1(ir_node *, cc_blocks, block);
1035         } else {
1036                 set_Block_mark(block, 0);
1037         }
1038
1039         foreach_block_succ(block, edge) {
1040                 ir_node *src = get_edge_src_irn( edge );
1041
1042                 if (is_in_loop(src) && ! irn_visited(src))
1043                         find_condition_chain(src);
1044         }
1045
1046         return mark;
1047 }
1048
1049 /**
1050  * Rewires the copied condition chain. Removes backedges
1051  * as this condition chain is prior to the loop.
1052  * Copy of loop_head must have phi list and old (unfixed) backedge info of the loop head.
1053  * (loop_head is already fixed, we cannot rely on it.)
1054  */
1055 static void fix_copy_inversion(void)
1056 {
1057         ir_node *new_head;
1058         ir_node **ins;
1059         ir_node **phis;
1060         ir_node *phi, *next;
1061         ir_node *head_cp = get_inversion_copy(loop_head);
1062         ir_graph *irg    = get_irn_irg(head_cp);
1063         int arity        = get_irn_arity(head_cp);
1064         int backedges    = get_backedge_n(head_cp, 0);
1065         int new_arity    = arity - backedges;
1066         int pos;
1067         int i;
1068
1069         NEW_ARR_A(ir_node *, ins, new_arity);
1070
1071         pos = 0;
1072         /* Remove block backedges */
1073         for(i = 0; i < arity; ++i) {
1074                 if (!is_backedge(head_cp, i))
1075                         ins[pos++] = get_irn_n(head_cp, i);
1076         }
1077
1078         new_head = new_r_Block(irg, new_arity, ins);
1079
1080         phis = NEW_ARR_F(ir_node *, 0);
1081
1082         for_each_phi_safe(get_Block_phis(head_cp), phi, next) {
1083                 ir_node *new_phi;
1084                 NEW_ARR_A(ir_node *, ins, new_arity);
1085                 pos = 0;
1086                 for(i = 0; i < arity; ++i) {
1087                         if (!is_backedge(head_cp, i))
1088                                 ins[pos++] = get_irn_n(phi, i);
1089                 }
1090                 new_phi = new_rd_Phi(get_irn_dbg_info(phi),
1091                                 new_head, new_arity, ins,
1092                                 get_irn_mode(phi));
1093                 ARR_APP1(ir_node *, phis, new_phi);
1094         }
1095
1096         pos = 0;
1097         for_each_phi_safe(get_Block_phis(head_cp), phi, next) {
1098                 exchange(phi, phis[pos++]);
1099         }
1100
1101         exchange(head_cp, new_head);
1102
1103         DEL_ARR_F(phis);
1104 }
1105
1106
1107 /* Puts the original condition chain at the end of the loop,
1108  * subsequently to the body.
1109  * Relies on block phi list and correct backedges.
1110  */
1111 static void fix_head_inversion(void)
1112 {
1113         ir_node *new_head;
1114         ir_node **ins;
1115         ir_node *phi, *next;
1116         ir_node **phis;
1117         ir_graph *irg = get_irn_irg(loop_head);
1118         int arity     = get_irn_arity(loop_head);
1119         int backedges = get_backedge_n(loop_head, 0);
1120         int new_arity = backedges;
1121         int pos;
1122         int i;
1123
1124         NEW_ARR_A(ir_node *, ins, new_arity);
1125
1126         pos = 0;
1127         /* Keep only backedges */
1128         for(i = 0; i < arity; ++i) {
1129                 if (is_own_backedge(loop_head, i))
1130                         ins[pos++] = get_irn_n(loop_head, i);
1131         }
1132
1133         new_head = new_r_Block(irg, new_arity, ins);
1134
1135         phis = NEW_ARR_F(ir_node *, 0);
1136
1137         for_each_phi(loop_head, phi) {
1138                 ir_node *new_phi;
1139                 DB((dbg, LEVEL_5, "Fixing phi %N of loop head\n", phi));
1140
1141                 NEW_ARR_A(ir_node *, ins, new_arity);
1142
1143                 pos = 0;
1144                 for (i = 0; i < arity; ++i) {
1145                         ir_node *pred = get_irn_n(phi, i);
1146
1147                         if (is_own_backedge(loop_head, i)) {
1148                                 /* If assignment is in the condition chain,
1149                                  * we need to create a phi in the new loop head.
1150                                  * This can only happen for df, not cf. See find_condition_chains. */
1151                                 /*if (is_nodes_block_marked(pred)) {
1152                                         ins[pos++] = pred;
1153                                 } else {*/
1154                                 ins[pos++] = pred;
1155
1156                         }
1157                 }
1158
1159                 new_phi = new_rd_Phi(get_irn_dbg_info(phi),
1160                         new_head, new_arity, ins,
1161                         get_irn_mode(phi));
1162
1163                 ARR_APP1(ir_node *, phis, new_phi);
1164
1165                 DB((dbg, LEVEL_5, "fix inverted head should exch %N by %N (pos %d)\n", phi, new_phi, pos ));
1166         }
1167
1168         pos = 0;
1169         for_each_phi_safe(get_Block_phis(loop_head), phi, next) {
1170                 DB((dbg, LEVEL_5, "fix inverted exch phi %N by %N\n", phi, phis[pos]));
1171                 if (phis[pos] != phi)
1172                         exchange(phi, phis[pos++]);
1173         }
1174
1175         DEL_ARR_F(phis);
1176
1177         DB((dbg, LEVEL_5, "fix inverted head exch head block %N by %N\n", loop_head, new_head));
1178         exchange(loop_head, new_head);
1179 }
1180
1181 /* Does the loop inversion.  */
1182 static void inversion_walk(entry_edge *head_entries)
1183 {
1184         size_t i;
1185
1186         /*
1187          * The order of rewiring bottom-up is crucial.
1188          * Any change of the order leads to lost information that would be needed later.
1189          */
1190
1191         ir_reserve_resources(current_ir_graph, IR_RESOURCE_IRN_VISITED);
1192
1193         /* 1. clone condition chain */
1194         inc_irg_visited(current_ir_graph);
1195
1196         for (i = 0; i < ARR_LEN(head_entries); ++i) {
1197                 entry_edge entry = head_entries[i];
1198                 ir_node *pred = get_irn_n(entry.node, entry.pos);
1199
1200                 DB((dbg, LEVEL_5, "\nInit walk block %N\n", pred));
1201
1202                 copy_walk(pred, is_nodes_block_marked, cur_loop);
1203         }
1204
1205         ir_free_resources(current_ir_graph, IR_RESOURCE_IRN_VISITED);
1206
1207         /* 2. Extends the head control flow successors ins
1208          *    with the definitions of the copied head node. */
1209         for (i = 0; i < ARR_LEN(head_entries); ++i) {
1210                 entry_edge head_out = head_entries[i];
1211
1212                 if (is_Block(head_out.node))
1213                         extend_ins_by_copy(head_out.node, head_out.pos);
1214         }
1215
1216         /* 3. construct_ssa for users of definitions in the condition chain,
1217          *    as there is now a second definition. */
1218         for (i = 0; i < ARR_LEN(head_entries); ++i) {
1219                 entry_edge head_out = head_entries[i];
1220
1221                 /* Ignore keepalives */
1222                 if (is_End(head_out.node))
1223                         continue;
1224
1225                 /* Construct ssa for assignments in the condition chain. */
1226                 if (!is_Block(head_out.node)) {
1227                         ir_node *pred, *cppred, *block, *cpblock;
1228
1229                         pred = head_out.pred;
1230                         cppred = get_inversion_copy(pred);
1231                         block = get_nodes_block(pred);
1232                         cpblock = get_nodes_block(cppred);
1233                         construct_ssa(block, pred, cpblock, cppred);
1234                 }
1235         }
1236
1237         /*
1238          * If there is an assignment in the condition chain
1239          * with a user also in the condition chain,
1240          * the dominance frontier is in the new loop head.
1241          * The dataflow loop is completely in the condition chain.
1242          * Goal:
1243          *  To be wired: >|
1244          *
1245          *  | ,--.   |
1246          * Phi_cp |  | copied condition chain
1247          * >| |   |  |
1248          * >| ?__/   |
1249          * >| ,-.
1250          *  Phi* |   | new loop head with newly created phi.
1251          *   |   |
1252          *  Phi  |   | original, inverted condition chain
1253          *   |   |   |
1254          *   ?__/    |
1255          *
1256          */
1257         for (i = 0; i < ARR_LEN(head_df_loop); ++i) {
1258                 entry_edge head_out = head_df_loop[i];
1259
1260                 /* Construct ssa for assignments in the condition chain. */
1261                 ir_node *pred, *cppred, *block, *cpblock;
1262
1263                 pred = head_out.pred;
1264                 cppred = get_inversion_copy(pred);
1265                 assert(cppred && pred);
1266                 block = get_nodes_block(pred);
1267                 cpblock = get_nodes_block(cppred);
1268                 construct_ssa(block, pred, cpblock, cppred);
1269         }
1270
1271         /* 4. Remove the ins which are no backedges from the original condition chain
1272          *    as the cc is now subsequent to the body. */
1273         fix_head_inversion();
1274
1275         /* 5. Remove the backedges of the copied condition chain,
1276          *    because it is going to be the new 'head' in advance to the loop. */
1277         fix_copy_inversion();
1278
1279 }
1280
1281 /* Performs loop inversion of cur_loop if possible and reasonable. */
1282 static void loop_inversion(void)
1283 {
1284         int      loop_depth;
1285         unsigned max_loop_nodes = opt_params.max_loop_size;
1286         unsigned max_loop_nodes_adapted;
1287         int      depth_adaption = opt_params.depth_adaption;
1288
1289         unsigned do_inversion = 1;
1290         unsigned has_cc = 0;
1291
1292         /* Depth of 0 is the procedure and 1 a topmost loop. */
1293         loop_depth = get_loop_depth(cur_loop) - 1;
1294
1295         /* Calculating in per mil. */
1296         max_loop_nodes_adapted = get_max_nodes_adapted(loop_depth);
1297
1298         DB((dbg, LEVEL_1, "max_nodes: %d\nmax_nodes_adapted %d at depth of %d (adaption %d)\n",
1299                         max_loop_nodes, max_loop_nodes_adapted, loop_depth, depth_adaption));
1300
1301         if (! (loop_info.nodes > 0))
1302                 return;
1303
1304 #if LOOP_IGNORE_NODE_LIMITS
1305         DB((dbg, LEVEL_1, "WARNING: Loop node limitations ignored."));
1306 #else
1307         if (loop_info.nodes > max_loop_nodes) {
1308                 /* Only for stats */
1309                 DB((dbg, LEVEL_1, "Nodes %d > allowed nodes %d\n",
1310                         loop_info.nodes, loop_depth, max_loop_nodes));
1311                 count_stats(stats.too_large);
1312                 /* no RETURN */
1313                 /* Adaption might change it */
1314         }
1315
1316         /* Limit processing to loops smaller than given parameter. */
1317         if (loop_info.nodes > max_loop_nodes_adapted) {
1318                 DB((dbg, LEVEL_1, "Nodes %d > allowed nodes (depth %d adapted) %d\n",
1319                         loop_info.nodes, loop_depth, max_loop_nodes_adapted));
1320                 count_stats(stats.too_large_adapted);
1321                 return;
1322         }
1323
1324         if (loop_info.calls > opt_params.allowed_calls) {
1325                 DB((dbg, LEVEL_1, "Calls %d > allowed calls %d\n",
1326                         loop_info.calls, opt_params.allowed_calls));
1327                 count_stats(stats.calls_limit);
1328                 return;
1329         }
1330 #endif
1331
1332         /*inversion_head_node_limit = INT_MAX;*/
1333         ir_reserve_resources(current_ir_graph, IR_RESOURCE_BLOCK_MARK);
1334
1335         /* Reset block marks.
1336          * We use block marks to flag blocks of the original condition chain. */
1337         irg_walk_graph(current_ir_graph, reset_block_mark, NULL, NULL);
1338
1339         /*loop_info.blocks = get_loop_n_blocks(cur_loop);*/
1340         cond_chain_entries = NEW_ARR_F(entry_edge, 0);
1341         head_df_loop = NEW_ARR_F(entry_edge, 0);
1342
1343         /*head_inversion_node_count = 0;*/
1344         inversion_blocks_in_cc = 0;
1345
1346         /* Use phase to keep copy of nodes from the condition chain. */
1347         phase = new_phase(current_ir_graph, phase_irn_init_default);
1348
1349         /* Search for condition chains and temporarily save the blocks in an array. */
1350         cc_blocks = NEW_ARR_F(ir_node *, 0);
1351         inc_irg_visited(current_ir_graph);
1352         has_cc = find_condition_chain(loop_head);
1353
1354         unmark_not_allowed_cc_blocks();
1355         DEL_ARR_F(cc_blocks);
1356
1357 #if LOOP_IGNORE_NODE_LIMITS
1358         (void) unmark_cc_blocks;
1359 #else
1360         /* Condition chain too large.
1361          * Loop should better be small enough to fit into the cache. */
1362         /* TODO Of course, we should take a small enough cc in the first place,
1363          * which is not that simple. (bin packing)  */
1364         if (loop_info.cc_size > opt_params.max_cc_size) {
1365                 count_stats(stats.cc_limit_reached);
1366
1367                 do_inversion = 0;
1368
1369                 /* Unmark cc blocks except the head.
1370                  * Invert head only for possible unrolling. */
1371                 unmark_cc_blocks();
1372
1373         }
1374 #endif
1375
1376         /* We also catch endless loops here,
1377          * because they do not have a condition chain. */
1378         if (inversion_blocks_in_cc < 1) {
1379                 do_inversion = 0;
1380                 DB((dbg, LEVEL_3,
1381                         "Loop contains %d (less than 1) invertible blocks => No Inversion done.\n",
1382                         inversion_blocks_in_cc));
1383         }
1384
1385         if (do_inversion) {
1386                 cur_head_outs = NEW_ARR_F(entry_edge, 0);
1387
1388                 /* Get all edges pointing into the condition chain. */
1389                 irg_walk_graph(current_ir_graph, get_head_outs, NULL, NULL);
1390
1391                 /* Do the inversion */
1392                 inversion_walk(cur_head_outs);
1393
1394                 DEL_ARR_F(cur_head_outs);
1395
1396                 /* Duplicated blocks changed doms */
1397                 set_irg_doms_inconsistent(current_ir_graph);
1398                 /* Loop content changed */
1399                 set_irg_loopinfo_inconsistent(current_ir_graph);
1400                 /* TODO are they? Depends on set_irn_in and set_irn_n exchange and new_node. */
1401                 set_irg_outs_inconsistent(current_ir_graph);
1402
1403                 count_stats(stats.inverted);
1404         }
1405
1406         /* free */
1407         phase_free(phase);
1408         DEL_ARR_F(cond_chain_entries);
1409         DEL_ARR_F(head_df_loop);
1410
1411         ir_free_resources(current_ir_graph, IR_RESOURCE_BLOCK_MARK);
1412 }
1413
1414 /* Fix the original loop_heads ins for invariant unrolling case. */
1415 static void unrolling_fix_loop_head_inv(void)
1416 {
1417         ir_node *ins[2];
1418         ir_node *phi;
1419         ir_node *proj = new_Proj(loop_info.duff_cond, mode_X, 0);
1420         ir_node *head_pred = get_irn_n(loop_head, loop_info.be_src_pos);
1421         ir_node *loop_condition = get_unroll_copy(head_pred, unroll_nr - 1);
1422
1423         /* Original loop_heads ins are:
1424          * duff block and the own backedge */
1425
1426         ins[0] = loop_condition;
1427         ins[1] = proj;
1428         set_irn_in(loop_head, 2, ins);
1429         DB((dbg, LEVEL_4, "Rewire ins of block loophead %N to pred %N and duffs entry %N \n" , loop_head, ins[0], ins[1]));
1430
1431         for_each_phi(loop_head, phi) {
1432                 ir_node *pred = get_irn_n(phi, loop_info.be_src_pos);
1433                 /* TODO we think it is a phi, but for Mergesort it is not the case.*/
1434
1435                 ir_node *last_pred = get_unroll_copy(pred, unroll_nr - 1);
1436
1437                 ins[0] = last_pred;
1438                 ins[1] = (ir_node*)get_irn_link(phi);
1439                 set_irn_in(phi, 2, ins);
1440                 DB((dbg, LEVEL_4, "Rewire ins of loophead phi %N to pred %N and duffs entry %N \n" , phi, ins[0], ins[1]));
1441         }
1442 }
1443
1444 /* Removes previously created phis with only 1 in. */
1445 static void correct_phis(ir_node *node, void *env)
1446 {
1447         (void)env;
1448
1449         if (is_Phi(node) && get_irn_arity(node) == 1) {
1450                 ir_node *exch;
1451                 ir_node *in[1];
1452
1453                 in[0] = get_irn_n(node, 0);
1454
1455                 exch = new_rd_Phi(get_irn_dbg_info(node),
1456                     get_nodes_block(node), 1, in,
1457                         get_irn_mode(node));
1458
1459                 exchange(node, exch);
1460         }
1461 }
1462
1463 /* Unrolling: Rewire floating copies. */
1464 static void place_copies(int copies)
1465 {
1466         ir_node *loophead = loop_head;
1467         size_t i;
1468         int c;
1469         int be_src_pos = loop_info.be_src_pos;
1470
1471         /* Serialize loops by fixing their head ins.
1472          * Processed are the copies.
1473          * The original loop is done after that, to keep backedge infos. */
1474         for (c = 0; c < copies; ++c) {
1475                 ir_node *upper = get_unroll_copy(loophead, c);
1476                 ir_node *lower = get_unroll_copy(loophead, c + 1);
1477                 ir_node *phi;
1478                 ir_node *topmost_be_block = get_nodes_block(get_irn_n(loophead, be_src_pos));
1479
1480                 /* Important: get the preds first and then their copy. */
1481                 ir_node *upper_be_block = get_unroll_copy(topmost_be_block, c);
1482                 ir_node *new_jmp = new_r_Jmp(upper_be_block);
1483                 DB((dbg, LEVEL_5, " place_copies upper %N lower %N\n", upper, lower));
1484
1485                 DB((dbg, LEVEL_5, "topmost be block %N \n", topmost_be_block));
1486
1487                 if (loop_info.unroll_kind == constant) {
1488                         ir_node *ins[1];
1489                         ins[0] = new_jmp;
1490                         set_irn_in(lower, 1, ins);
1491
1492                         for_each_phi(loophead, phi) {
1493                                 ir_node *topmost_def = get_irn_n(phi, be_src_pos);
1494                                 ir_node *upper_def = get_unroll_copy(topmost_def, c);
1495                                 ir_node *lower_phi = get_unroll_copy(phi, c + 1);
1496
1497                                 /* It is possible, that the value used
1498                                  * in the OWN backedge path is NOT defined in this loop. */
1499                                 if (is_in_loop(topmost_def))
1500                                         ins[0] = upper_def;
1501                                 else
1502                                         ins[0] = topmost_def;
1503
1504                                 set_irn_in(lower_phi, 1, ins);
1505                                 /* Need to replace phis with 1 in later. */
1506                         }
1507                 } else {
1508                         /* Invariant case */
1509                         /* Every node has 2 ins. One from the duff blocks
1510                          * and one from the previously unrolled loop. */
1511                         ir_node *ins[2];
1512                         /* Calculate corresponding projection of mod result for this copy c */
1513                         ir_node *proj = new_Proj(loop_info.duff_cond, mode_X, unroll_nr - c - 1);
1514                         DB((dbg, LEVEL_4, "New duff proj %N\n" , proj));
1515
1516                         ins[0] = new_jmp;
1517                         ins[1] = proj;
1518                         set_irn_in(lower, 2, ins);
1519                         DB((dbg, LEVEL_4, "Rewire ins of Block %N to pred %N and duffs entry %N \n" , lower, ins[0], ins[1]));
1520
1521                         for_each_phi(loophead, phi) {
1522                                 ir_node *topmost_phi_pred = get_irn_n(phi, be_src_pos);
1523                                 ir_node *upper_phi_pred;
1524                                 ir_node *lower_phi;
1525                                 ir_node *duff_phi;
1526
1527                                 lower_phi = get_unroll_copy(phi, c + 1);
1528                                 duff_phi = (ir_node*)get_irn_link(phi);
1529                                 DB((dbg, LEVEL_4, "DD Link of %N is %N\n" , phi, duff_phi));
1530
1531                                 /*  */
1532                                 if (is_in_loop(topmost_phi_pred)) {
1533                                         upper_phi_pred = get_unroll_copy(topmost_phi_pred, c);
1534                                 } else {
1535                                         upper_phi_pred = topmost_phi_pred;
1536                                 }
1537
1538                                 ins[0] = upper_phi_pred;
1539                                 ins[1] = duff_phi;
1540                                 set_irn_in(lower_phi, 2, ins);
1541                                 DB((dbg, LEVEL_4, "Rewire ins of %N to pred %N and duffs entry %N \n" , lower_phi, ins[0], ins[1]));
1542                         }
1543                 }
1544         }
1545
1546         /* Reconnect last copy. */
1547         for (i = 0; i < ARR_LEN(loop_entries); ++i) {
1548                 entry_edge edge = loop_entries[i];
1549                 /* Last copy is at the bottom */
1550                 ir_node *new_pred = get_unroll_copy(edge.pred, copies);
1551                 set_irn_n(edge.node, edge.pos, new_pred);
1552         }
1553
1554         /* Fix original loops head.
1555          * Done in the end, as ins and be info were needed before. */
1556         if (loop_info.unroll_kind == constant) {
1557                 ir_node *phi;
1558                 ir_node *head_pred = get_irn_n(loop_head, be_src_pos);
1559                 ir_node *loop_condition = get_unroll_copy(head_pred, unroll_nr - 1);
1560
1561                 set_irn_n(loop_head, loop_info.be_src_pos, loop_condition);
1562
1563                 for_each_phi(loop_head, phi) {
1564                         ir_node *pred = get_irn_n(phi, be_src_pos);
1565                         ir_node *last_pred;
1566
1567                         /* It is possible, that the value used
1568                          * in the OWN backedge path is NOT assigned in this loop. */
1569                         if (is_in_loop(pred))
1570                                 last_pred = get_unroll_copy(pred, copies);
1571                         else
1572                                 last_pred = pred;
1573                         set_irn_n(phi, be_src_pos, last_pred);
1574                 }
1575
1576         } else {
1577                 unrolling_fix_loop_head_inv();
1578         }
1579 }
1580
1581 /* Copies the cur_loop several times. */
1582 static void copy_loop(entry_edge *cur_loop_outs, int copies)
1583 {
1584         int c;
1585
1586         ir_reserve_resources(current_ir_graph, IR_RESOURCE_IRN_VISITED);
1587
1588         for (c = 0; c < copies; ++c) {
1589                 size_t i;
1590
1591                 inc_irg_visited(current_ir_graph);
1592
1593                 DB((dbg, LEVEL_5, "         ### Copy_loop  copy nr: %d ###\n", c));
1594                 for (i = 0; i < ARR_LEN(cur_loop_outs); ++i) {
1595                         entry_edge entry = cur_loop_outs[i];
1596                         ir_node *pred = get_irn_n(entry.node, entry.pos);
1597
1598                         copy_walk_n(pred, is_in_loop, c + 1);
1599                 }
1600         }
1601
1602         ir_free_resources(current_ir_graph, IR_RESOURCE_IRN_VISITED);
1603 }
1604
1605
1606 /* Creates a new phi from the given phi node omitting own bes,
1607  * using be_block as supplier of backedge informations. */
1608 static ir_node *clone_phis_sans_bes(ir_node *phi, ir_node *be_block, ir_node *dest_block)
1609 {
1610         ir_node **ins;
1611         int arity = get_irn_arity(phi);
1612         int i, c = 0;
1613         ir_node *newphi;
1614
1615         assert(get_irn_arity(phi) == get_irn_arity(be_block));
1616         assert(is_Phi(phi));
1617
1618         ins = NEW_ARR_F(ir_node *, arity);
1619         for (i = 0; i < arity; ++i) {
1620                 if (! is_own_backedge(be_block, i)) {
1621                         ins[c] = get_irn_n(phi, i);
1622                         ++c;
1623                 }
1624         }
1625
1626         newphi = new_r_Phi(dest_block, c, ins, get_irn_mode(phi));
1627
1628         set_irn_link(phi, newphi);
1629         DB((dbg, LEVEL_4, "Linking for duffs device %N to %N\n", phi, newphi));
1630
1631         return newphi;
1632 }
1633
1634 /* Creates a new block from the given block node omitting own bes,
1635  * using be_block as supplier of backedge informations. */
1636 static ir_node *clone_block_sans_bes(ir_node *node, ir_node *be_block)
1637 {
1638         ir_node **ins;
1639         int arity = get_irn_arity(node);
1640         int i, c = 0;
1641
1642         assert(get_irn_arity(node) == get_irn_arity(be_block));
1643         assert(is_Block(node));
1644
1645         NEW_ARR_A(ir_node *, ins, arity);
1646         for (i = 0; i < arity; ++i) {
1647                 if (! is_own_backedge(be_block, i)) {
1648                         ins[c] = get_irn_n(node, i);
1649                         ++c;
1650                 }
1651         }
1652
1653         return new_Block(c, ins);
1654 }
1655
1656 /* Creates a structure to calculate absolute value of node op.
1657  * Returns mux node with absolute value. */
1658 static ir_node *new_Abs(ir_node *op, ir_mode *mode)
1659 {
1660   ir_graph *irg      = get_irn_irg(op);
1661   ir_node  *block    = get_nodes_block(op);
1662   ir_node  *zero     = new_r_Const(irg, get_mode_null(mode));
1663   ir_node  *cmp      = new_r_Cmp(block, op, zero);
1664   ir_node  *cond     = new_r_Proj(cmp, mode_b, pn_Cmp_Lt);
1665   ir_node  *minus_op = new_r_Minus(block, op, mode);
1666   ir_node  *mux      = new_r_Mux(block, cond, op, minus_op, mode);
1667
1668   return mux;
1669 }
1670
1671
1672 /* Creates blocks for duffs device, using previously obtained
1673  * informations about the iv.
1674  * TODO split */
1675 static void create_duffs_block(void)
1676 {
1677         ir_mode *mode;
1678
1679         ir_node *block1, *count_block, *duff_block;
1680         ir_node *ems, *ems_mod, *ems_div, *ems_mod_proj, *cmp_null,
1681                 *cmp_proj, *ems_mode_cond, *x_true, *x_false, *const_null;
1682         ir_node *true_val, *false_val;
1683         ir_node *ins[2];
1684
1685         ir_node *duff_mod, *proj, *cond;
1686
1687         ir_node *count, *correction, *unroll_c;
1688         ir_node *cmp_bad_count, *good_count, *bad_count, *count_phi, *bad_count_neg;
1689         ir_node *phi;
1690
1691         mode = get_irn_mode(loop_info.end_val);
1692         const_null = new_Const(get_mode_null(mode));
1693
1694         /* TODO naming
1695          * 1. Calculate first approach to count.
1696          *    Condition: (end - start) % step == 0 */
1697         block1 = clone_block_sans_bes(loop_head, loop_head);
1698         DB((dbg, LEVEL_4, "Duff block 1 %N\n", block1));
1699
1700         /* Create loop entry phis in first duff block
1701          * as it becomes the loops preheader */
1702         for_each_phi(loop_head, phi) {
1703                 /* Returns phis pred if phi would have arity 1*/
1704                 ir_node *new_phi = clone_phis_sans_bes(phi, loop_head, block1);
1705
1706                 DB((dbg, LEVEL_4, "HEAD %N phi %N\n", loop_head, phi));
1707                 DB((dbg, LEVEL_4, "BLOCK1 %N phi %N\n", block1, new_phi));
1708         }
1709
1710         ems = new_r_Sub(block1, loop_info.end_val, loop_info.start_val,
1711                 get_irn_mode(loop_info.end_val));
1712                 DB((dbg, LEVEL_4, "BLOCK1 sub %N\n", ems));
1713
1714
1715         ems = new_Sub(loop_info.end_val, loop_info.start_val,
1716                 get_irn_mode(loop_info.end_val));
1717
1718         DB((dbg, LEVEL_4, "mod ins %N %N\n", ems, loop_info.step));
1719         ems_mod = new_r_Mod(block1,
1720                 new_NoMem(),
1721                 ems,
1722                 loop_info.step,
1723                 mode,
1724                 op_pin_state_pinned);
1725         ems_div = new_r_Div(block1,
1726                 new_NoMem(),
1727                 ems,
1728                 loop_info.step,
1729                 mode,
1730                 op_pin_state_pinned);
1731
1732         DB((dbg, LEVEL_4, "New module node %N\n", ems_mod));
1733
1734         ems_mod_proj = new_r_Proj(ems_mod, mode_Iu, pn_Mod_res);
1735         cmp_null = new_r_Cmp(block1, ems_mod_proj, const_null);
1736         cmp_proj = new_r_Proj(cmp_null, mode_b, pn_Cmp_Eq);
1737         ems_mode_cond = new_r_Cond(block1, cmp_proj);
1738
1739
1740         /* ems % step == 0 */
1741         x_true = new_r_Proj(ems_mode_cond, mode_X, pn_Cond_true);
1742         /* ems % step != 0 */
1743         x_false = new_r_Proj(ems_mode_cond, mode_X, pn_Cond_false);
1744
1745         /* 2. Second block.
1746          * Assures, duffs device receives a valid count.
1747          * Condition:
1748          *     decreasing: count < 0
1749          *     increasing: count > 0
1750          */
1751         ins[0] = x_true;
1752         ins[1] = x_false;
1753
1754         count_block = new_Block(2, ins);
1755         DB((dbg, LEVEL_4, "Duff block 2 %N\n", count_block));
1756
1757
1758         /* Increase loop-taken-count depending on the loop condition
1759          * uses the latest iv to compare to. */
1760         if (loop_info.latest_value == 1) {
1761                 /* ems % step == 0 :  +0 */
1762                 true_val = new_Const(get_mode_null(mode));
1763                 /* ems % step != 0 :  +1 */
1764                 false_val = new_Const(get_mode_one(mode));
1765         } else {
1766                 ir_tarval *tv_two = new_tarval_from_long(2, mode);
1767                 /* ems % step == 0 :  +1 */
1768                 true_val = new_Const(get_mode_one(mode));
1769                 /* ems % step != 0 :  +2 */
1770                 false_val = new_Const(tv_two);
1771         }
1772
1773         ins[0] = true_val;
1774         ins[1] = false_val;
1775
1776         correction = new_r_Phi(count_block, 2, ins, mode);
1777
1778         count = new_r_Proj(ems_div, mode, pn_Div_res);
1779
1780         /* (end - start) / step  +  correction */
1781         count = new_Add(count, correction, mode);
1782
1783         cmp_bad_count = new_r_Cmp(count_block, count, const_null);
1784
1785         /* We preconditioned the loop to be tail-controlled.
1786          * So, if count is something 'wrong' like 0,
1787          * negative/positive (depending on step direction),
1788          * we may take the loop once (tail-contr.) and leave it
1789          * to the existing condition, to break; */
1790
1791         /* Depending on step direction, we have to check for > or < 0 */
1792         if (loop_info.decreasing == 1) {
1793                 bad_count_neg = new_r_Proj(cmp_bad_count, mode_b, pn_Cmp_Lt);
1794         } else {
1795                 bad_count_neg = new_r_Proj(cmp_bad_count, mode_b, pn_Cmp_Gt);
1796         }
1797
1798         bad_count_neg = new_r_Cond(count_block, bad_count_neg);
1799         good_count = new_Proj(bad_count_neg, mode_X, pn_Cond_true);
1800         bad_count = new_Proj(ems_mode_cond, mode_X, pn_Cond_false);
1801
1802         /* 3. Duff Block
1803          *    Contains module to decide which loop to start from. */
1804
1805         ins[0] = good_count;
1806         ins[1] = bad_count;
1807         duff_block = new_Block(2, ins);
1808         DB((dbg, LEVEL_4, "Duff block 3 %N\n", duff_block));
1809
1810         /* Get absolute value */
1811         ins[0] = new_Abs(count, mode);
1812         /* Manually feed the aforementioned count = 1 (bad case)*/
1813         ins[1] = new_Const(get_mode_one(mode));
1814         count_phi = new_r_Phi(duff_block, 2, ins, mode);
1815
1816         unroll_c = new_Const(new_tarval_from_long((long)unroll_nr, mode));
1817
1818         /* count % unroll_nr */
1819         duff_mod = new_r_Mod(duff_block,
1820                 new_NoMem(),
1821                 count_phi,
1822                 unroll_c,
1823                 mode,
1824                 op_pin_state_pinned);
1825
1826
1827         proj = new_Proj(duff_mod, mode, pn_Mod_res);
1828         /* condition does NOT create itself in the block of the proj! */
1829         cond = new_r_Cond(duff_block, proj);
1830
1831         loop_info.duff_cond = cond;
1832 }
1833
1834 /* Returns 1 if given node is not in loop,
1835  * or if it is a phi of the loop head with only loop invariant defs.
1836  */
1837 static unsigned is_loop_invariant_def(ir_node *node)
1838 {
1839         int i;
1840
1841         if (! is_in_loop(node)) {
1842                 DB((dbg, LEVEL_4, "Not in loop %N\n", node));
1843                 /* || is_Const(node) || is_SymConst(node)) {*/
1844                 return 1;
1845         }
1846
1847         /* If this is a phi of the loophead shared by more than 1 loop,
1848          * we need to check if all defs are not in the loop.  */
1849         if (is_Phi(node)) {
1850                 ir_node *block;
1851                 block = get_nodes_block(node);
1852
1853                 /* To prevent unexpected situations. */
1854                 if (block != loop_head) {
1855                         return 0;
1856                 }
1857
1858                 for (i = 0; i < get_irn_arity(node); ++i) {
1859                         /* Check if all bes are just loopbacks. */
1860                         if (is_own_backedge(block, i) && get_irn_n(node, i) != node)
1861                                 return 0;
1862                 }
1863                 DB((dbg, LEVEL_4, "invar %N\n", node));
1864                 return 1;
1865         }
1866         DB((dbg, LEVEL_4, "Not invar %N\n", node));
1867
1868         return 0;
1869 }
1870
1871 /* Returns 1 if one pred of node is invariant and the other is not.
1872  * invar_pred and other are set analogously. */
1873 static unsigned get_invariant_pred(ir_node *node, ir_node **invar_pred, ir_node **other)
1874 {
1875         ir_node *pred0 = get_irn_n(node, 0);
1876         ir_node *pred1 = get_irn_n(node, 1);
1877
1878         *invar_pred = NULL;
1879         *other = NULL;
1880
1881         if (is_loop_invariant_def(pred0)) {
1882                 DB((dbg, LEVEL_4, "pred0 invar %N\n", pred0));
1883                 *invar_pred = pred0;
1884                 *other = pred1;
1885         }
1886
1887         if (is_loop_invariant_def(pred1)) {
1888                 DB((dbg, LEVEL_4, "pred1 invar %N\n", pred1));
1889
1890                 if (*invar_pred != NULL) {
1891                         /* RETURN. We do not want both preds to be invariant. */
1892                         return 0;
1893                 }
1894
1895                 *other = pred0;
1896                 *invar_pred = pred1;
1897                 return 1;
1898         } else {
1899                 DB((dbg, LEVEL_4, "pred1 not invar %N\n", pred1));
1900
1901                 if (*invar_pred != NULL)
1902                         return 1;
1903                 else
1904                         return 0;
1905         }
1906 }
1907
1908 /* Starts from a phi that may belong to an iv.
1909  * If an add forms a loop with iteration_phi,
1910  * and add uses a constant, 1 is returned
1911  * and 'start' as well as 'add' are sane. */
1912 static unsigned get_start_and_add(ir_node *iteration_phi, unrolling_kind_flag role)
1913 {
1914         int i;
1915         ir_node *found_add = loop_info.add;
1916         int arity = get_irn_arity(iteration_phi);
1917
1918         DB((dbg, LEVEL_4, "Find start and add from %N\n", iteration_phi));
1919
1920         for (i = 0; i < arity; ++i) {
1921
1922                 /* Find start_val which needs to be pred of the iteration_phi.
1923                  * If start_val already known, sanity check. */
1924                 if (!is_backedge(get_nodes_block(loop_info.iteration_phi), i)) {
1925                         ir_node *found_start_val = get_irn_n(loop_info.iteration_phi, i);
1926
1927                         DB((dbg, LEVEL_4, "found_start_val %N\n", found_start_val));
1928
1929                         /* We already found a start_val it has to be always the same. */
1930                         if (loop_info.start_val && found_start_val != loop_info.start_val)
1931                                 return 0;
1932
1933                         if ((role == constant) && !(is_SymConst(found_start_val) || is_Const(found_start_val)))
1934                                         return 0;
1935                         else if((role == constant) && !(is_loop_invariant_def(found_start_val)))
1936                                         return 0;
1937
1938                         loop_info.start_val = found_start_val;
1939                 }
1940
1941                 /* The phi has to be in the loop head.
1942                  * Follow all own backedges. Every value supplied from these preds of the phi
1943                  * needs to origin from the same add. */
1944                 if (is_own_backedge(get_nodes_block(loop_info.iteration_phi), i)) {
1945                         ir_node *new_found = get_irn_n(loop_info.iteration_phi,i);
1946
1947                         DB((dbg, LEVEL_4, "is add? %N\n", new_found));
1948
1949                         if (! (is_Add(new_found) || is_Sub(new_found)) || (found_add && found_add != new_found))
1950                                 return 0;
1951                         else
1952                                 found_add = new_found;
1953                 }
1954         }
1955
1956         loop_info.add = found_add;
1957
1958         return 1;
1959 }
1960
1961
1962 /* Returns 1 if one pred of node is a const value and the other is not.
1963  * const_pred and other are set analogously. */
1964 static unsigned get_const_pred(ir_node *node, ir_node **const_pred, ir_node **other)
1965 {
1966         ir_node *pred0 = get_irn_n(node, 0);
1967         ir_node *pred1 = get_irn_n(node, 1);
1968
1969         DB((dbg, LEVEL_4, "Checking for constant pred of %N\n", node));
1970
1971         *const_pred = NULL;
1972         *other = NULL;
1973
1974         /*DB((dbg, LEVEL_4, "is %N const\n", pred0));*/
1975         if (is_Const(pred0) || is_SymConst(pred0)) {
1976                 *const_pred = pred0;
1977                 *other = pred1;
1978         }
1979
1980         /*DB((dbg, LEVEL_4, "is %N const\n", pred1));*/
1981         if (is_Const(pred1) || is_SymConst(pred1)) {
1982                 if (*const_pred != NULL) {
1983                         /* RETURN. We do not want both preds to be constant. */
1984                         return 0;
1985                 }
1986
1987                 *other = pred0;
1988                 *const_pred = pred1;
1989         }
1990
1991         if (*const_pred == NULL)
1992                 return 0;
1993         else
1994                 return 1;
1995 }
1996
1997 /* Returns the mathematically inverted pn_Cmp. */
1998 static pn_Cmp get_math_inverted_case(pn_Cmp proj)
1999 {
2000         switch(proj) {
2001                 case pn_Cmp_Eq:
2002                         return pn_Cmp_Lg;
2003                 case pn_Cmp_Lg:
2004                         return pn_Cmp_Eq;
2005                 case pn_Cmp_Lt:
2006                         return pn_Cmp_Ge;
2007                 case pn_Cmp_Le:
2008                         return pn_Cmp_Gt;
2009                 case pn_Cmp_Gt:
2010                         return pn_Cmp_Le;
2011                 case pn_Cmp_Ge:
2012                         return pn_Cmp_Lt;
2013                 default:
2014                         panic("Unhandled pn_Cmp.");
2015         }
2016 }
2017
2018 /* Returns 1 if loop exits within 2 steps of the iv.
2019  * Norm_proj means we do not exit the loop.*/
2020 static unsigned simulate_next(ir_tarval **count_tar,
2021                 ir_tarval *stepped, ir_tarval *step_tar, ir_tarval *end_tar,
2022                 pn_Cmp norm_proj)
2023 {
2024         ir_tarval *next;
2025
2026         DB((dbg, LEVEL_4, "Loop taken if (stepped)%ld %s (end)%ld ",
2027                                 get_tarval_long(stepped),
2028                                 get_pnc_string((norm_proj)),
2029                                 get_tarval_long(end_tar)));
2030         DB((dbg, LEVEL_4, "comparing latest value %d\n", loop_info.latest_value));
2031
2032         /* If current iv does not stay in the loop,
2033          * this run satisfied the exit condition. */
2034         if (! (tarval_cmp(stepped, end_tar) & norm_proj))
2035                 return 1;
2036
2037         DB((dbg, LEVEL_4, "Result: (stepped)%ld IS %s (end)%ld\n",
2038                                 get_tarval_long(stepped),
2039                                 get_pnc_string(tarval_cmp(stepped, end_tar)),
2040                                 get_tarval_long(end_tar)));
2041
2042         /* next step */
2043         if (is_Add(loop_info.add))
2044                 next = tarval_add(stepped, step_tar);
2045         else
2046                 /* sub */
2047                 next = tarval_sub(stepped, step_tar, get_irn_mode(loop_info.end_val));
2048
2049         DB((dbg, LEVEL_4, "Loop taken if %ld %s %ld ",
2050                                 get_tarval_long(next),
2051                                 get_pnc_string(norm_proj),
2052                                 get_tarval_long(end_tar)));
2053         DB((dbg, LEVEL_4, "comparing latest value %d\n", loop_info.latest_value));
2054
2055         /* Increase steps. */
2056         *count_tar = tarval_add(*count_tar, get_tarval_one(get_tarval_mode(*count_tar)));
2057
2058         /* Next has to fail the loop condition, or we will never exit. */
2059         if (! (tarval_cmp(next, end_tar) & norm_proj))
2060                 return 1;
2061         else
2062                 return 0;
2063 }
2064
2065 /* Check if loop meets requirements for a 'simple loop':
2066  * - Exactly one cf out
2067  * - Allowed calls
2068  * - Max nodes after unrolling
2069  * - tail-controlled
2070  * - exactly one be
2071  * - cmp
2072  * Returns Projection of cmp node or NULL; */
2073 static ir_node *is_simple_loop(void)
2074 {
2075         int arity, i;
2076         ir_node *loop_block, *exit_block, *projx, *cond, *projres, *loop_condition;
2077
2078         /* Maximum of one condition, and no endless loops. */
2079         if (loop_info.cf_outs != 1)
2080                 return NULL;
2081
2082         DB((dbg, LEVEL_4, "1 loop exit\n"));
2083
2084 #if LOOP_IGNORE_NODE_LIMITS
2085         /* Ignore loop size. Probably not wise in other than testcases. */
2086         loop_info.max_unroll = 40;
2087 #else
2088         /* Calculate maximum unroll_nr keeping node count below limit. */
2089         loop_info.max_unroll = (int)((double)opt_params.max_unrolled_loop_size / (double)loop_info.nodes);
2090         if (loop_info.max_unroll < 2) {
2091                 count_stats(stats.too_large);
2092                 return NULL;
2093         }
2094 #endif
2095
2096
2097         DB((dbg, LEVEL_4, "maximum unroll factor %u, to not exceed node limit \n",
2098                 opt_params.max_unrolled_loop_size));
2099
2100         arity = get_irn_arity(loop_head);
2101         /* RETURN if we have more than 1 be. */
2102         /* Get my backedges without alien bes. */
2103         loop_block = NULL;
2104         for (i = 0; i < arity; ++i) {
2105                 ir_node *pred = get_irn_n(loop_head, i);
2106                 if (is_own_backedge(loop_head, i)) {
2107                         if (loop_block)
2108                                 /* Our simple loops may have only one backedge. */
2109                                 return NULL;
2110                         else {
2111                                 loop_block = get_nodes_block(pred);
2112                                 loop_info.be_src_pos = i;
2113                         }
2114                 }
2115         }
2116
2117         DB((dbg, LEVEL_4, "loop has 1 own backedge.\n"));
2118
2119         exit_block = get_nodes_block(loop_info.cf_out.pred);
2120         /* The loop has to be tail-controlled.
2121          * This can be changed/improved,
2122          * but we would need a duff iv. */
2123         if (exit_block != loop_block)
2124                 return NULL;
2125
2126         DB((dbg, LEVEL_4, "tail-controlled loop.\n"));
2127
2128         /* find value on which loop exit depends */
2129         projx = loop_info.cf_out.pred;
2130         cond = get_irn_n(projx, 0);
2131         projres = get_irn_n(cond, 0);
2132         loop_condition = get_irn_n(projres, 0);
2133
2134         if (!is_Cmp(loop_condition))
2135                 return NULL;
2136
2137         DB((dbg, LEVEL_5, "projection is %s\n", get_pnc_string(get_Proj_proj(projx))));
2138
2139         switch(get_Proj_proj(projx)) {
2140                 case pn_Cond_false:
2141                         loop_info.exit_cond = 0;
2142                         break;
2143                 case pn_Cond_true:
2144                         loop_info.exit_cond = 1;
2145                         break;
2146                 default:
2147                         panic("Cond Proj_proj other than true/false");
2148         }
2149
2150         DB((dbg, LEVEL_4, "Valid Cmp.\n"));
2151
2152         return projres;
2153 }
2154
2155 /* Returns 1 if all nodes are mode_Iu or mode_Is. */
2156 static unsigned are_mode_I(ir_node *n1, ir_node* n2, ir_node *n3)
2157 {
2158         ir_mode *m1 = get_irn_mode(n1);
2159         ir_mode *m2 = get_irn_mode(n2);
2160         ir_mode *m3 = get_irn_mode(n3);
2161
2162         if ((m1 == mode_Iu && m2 == mode_Iu && m3 == mode_Iu) ||
2163             (m1 == mode_Is && m2 == mode_Is && m3 == mode_Is))
2164                 return 1;
2165         else
2166                 return 0;
2167 }
2168
2169 /* Checks if cur_loop is a simple tail-controlled counting loop
2170  * with start and end value loop invariant, step constant. */
2171 static unsigned get_unroll_decision_invariant(void)
2172 {
2173
2174         ir_node   *projres, *loop_condition, *iteration_path;
2175         unsigned   success, is_latest_val;
2176         ir_tarval *step_tar;
2177         ir_mode   *mode;
2178
2179
2180         /* RETURN if loop is not 'simple' */
2181         projres = is_simple_loop();
2182         if (projres == NULL)
2183                 return 0;
2184
2185         /* Use a minimal size for the invariant unrolled loop,
2186      * as duffs device produces overhead */
2187         if (loop_info.nodes < opt_params.invar_unrolling_min_size)
2188                 return 0;
2189
2190         loop_condition = get_irn_n(projres, 0);
2191
2192         success = get_invariant_pred(loop_condition, &loop_info.end_val, &iteration_path);
2193         DB((dbg, LEVEL_4, "pred invar %d\n", success));
2194
2195         if (! success)
2196                 return 0;
2197
2198         DB((dbg, LEVEL_4, "Invariant End_val %N, other %N\n", loop_info.end_val, iteration_path));
2199
2200         /* We may find the add or the phi first.
2201          * Until now we only have end_val. */
2202         if (is_Add(iteration_path) || is_Sub(iteration_path)) {
2203
2204                 /* We test against the latest value of the iv. */
2205                 is_latest_val = 1;
2206
2207                 loop_info.add = iteration_path;
2208                 DB((dbg, LEVEL_4, "Case 1: Got add %N (maybe not sane)\n", loop_info.add));
2209
2210                 /* Preds of the add should be step and the iteration_phi */
2211                 success = get_const_pred(loop_info.add, &loop_info.step, &loop_info.iteration_phi);
2212                 if (! success)
2213                         return 0;
2214
2215                 DB((dbg, LEVEL_4, "Got step %N\n", loop_info.step));
2216
2217                 if (! is_Phi(loop_info.iteration_phi))
2218                         return 0;
2219
2220                 DB((dbg, LEVEL_4, "Got phi %N\n", loop_info.iteration_phi));
2221
2222                 /* Find start_val.
2223                  * Does necessary sanity check of add, if it is already set.  */
2224                 success = get_start_and_add(loop_info.iteration_phi, invariant);
2225                 if (! success)
2226                         return 0;
2227
2228                 DB((dbg, LEVEL_4, "Got start A  %N\n", loop_info.start_val));
2229
2230         } else if (is_Phi(iteration_path)) {
2231                 ir_node *new_iteration_phi;
2232
2233                 /* We compare with the value the iv had entering this run. */
2234                 is_latest_val = 0;
2235
2236                 loop_info.iteration_phi = iteration_path;
2237                 DB((dbg, LEVEL_4, "Case 2: Got phi %N\n", loop_info.iteration_phi));
2238
2239                 /* Find start_val and add-node.
2240                  * Does necessary sanity check of add, if it is already set.  */
2241                 success = get_start_and_add(loop_info.iteration_phi, invariant);
2242                 if (! success)
2243                         return 0;
2244
2245                 DB((dbg, LEVEL_4, "Got start B %N\n", loop_info.start_val));
2246                 DB((dbg, LEVEL_4, "Got add or sub %N\n", loop_info.add));
2247
2248                 success = get_const_pred(loop_info.add, &loop_info.step, &new_iteration_phi);
2249                 if (! success)
2250                         return 0;
2251
2252                 DB((dbg, LEVEL_4, "Got step (B) %N\n", loop_info.step));
2253
2254                 if (loop_info.iteration_phi != new_iteration_phi)
2255                         return 0;
2256
2257         } else {
2258                 return 0;
2259         }
2260
2261         mode = get_irn_mode(loop_info.end_val);
2262
2263         DB((dbg, LEVEL_4, "start %N, end %N, step %N\n",
2264                                 loop_info.start_val, loop_info.end_val, loop_info.step));
2265
2266         if (mode != mode_Is && mode != mode_Iu)
2267                 return 0;
2268
2269         /* TODO necessary? */
2270         if (!are_mode_I(loop_info.start_val, loop_info.step, loop_info.end_val))
2271                 return 0;
2272
2273         DB((dbg, LEVEL_4, "mode integer\n"));
2274
2275         step_tar = get_Const_tarval(loop_info.step);
2276
2277         if (tarval_is_null(step_tar)) {
2278                 /* TODO Might be worth a warning. */
2279                 return 0;
2280         }
2281
2282         DB((dbg, LEVEL_4, "step is not 0\n"));
2283
2284         create_duffs_block();
2285
2286         return loop_info.max_unroll;
2287 }
2288
2289 /* Returns unroll factor,
2290  * given maximum unroll factor and number of loop passes. */
2291 static unsigned get_preferred_factor_constant(ir_tarval *count_tar)
2292 {
2293         ir_tarval *tar_6, *tar_5, *tar_4, *tar_3, *tar_2;
2294         unsigned prefer;
2295         ir_mode *mode = get_irn_mode(loop_info.end_val);
2296
2297         tar_6 = new_tarval_from_long(6, mode);
2298         tar_5 = new_tarval_from_long(5, mode);
2299         tar_4 = new_tarval_from_long(4, mode);
2300         tar_3 = new_tarval_from_long(3, mode);
2301         tar_2 = new_tarval_from_long(2, mode);
2302
2303         /* loop passes % {6, 5, 4, 3, 2} == 0  */
2304         if (tarval_is_null(tarval_mod(count_tar, tar_6)))
2305                 prefer = 6;
2306         else if (tarval_is_null(tarval_mod(count_tar, tar_5)))
2307                 prefer = 5;
2308         else if (tarval_is_null(tarval_mod(count_tar, tar_4)))
2309                 prefer = 4;
2310         else if (tarval_is_null(tarval_mod(count_tar, tar_3)))
2311                 prefer = 3;
2312         else if (tarval_is_null(tarval_mod(count_tar, tar_2)))
2313                 prefer = 2;
2314         else {
2315                 /* gcd(max_unroll, count_tar) */
2316                 int a = loop_info.max_unroll;
2317                 int b = (int)get_tarval_long(count_tar);
2318                 int c;
2319
2320                 DB((dbg, LEVEL_4, "gcd of max_unroll %d and count_tar %d: ", a, b));
2321
2322                 do {
2323                 c = a % b;
2324                 a = b; b = c;
2325                 } while( c != 0);
2326
2327                 DB((dbg, LEVEL_4, "%d\n", a));
2328                 return a;
2329         }
2330
2331         DB((dbg, LEVEL_4, "preferred unroll factor %d\n", prefer));
2332
2333         /*
2334          * If our preference is greater than the allowed unroll factor
2335          * we either might reduce the preferred factor and prevent a duffs device block,
2336          * or create a duffs device block, from which in this case (constants only)
2337          * we know the startloop at compiletime.
2338          * The latter yields the following graphs.
2339          * but for code generation we would want to use graph A.
2340          * The graphs are equivalent. So, we can only reduce the preferred factor.
2341          * A)                   B)
2342          *     PreHead             PreHead
2343          *        |      ,--.         |   ,--.
2344          *         \ Loop1   \        Loop2   \
2345          *          \  |     |       /  |     |
2346          *           Loop2   /      / Loop1   /
2347          *           |   `--'      |      `--'
2348          */
2349
2350         if (prefer <= loop_info.max_unroll)
2351                 return prefer;
2352         else {
2353                 switch(prefer) {
2354                         case 6:
2355                                 if (loop_info.max_unroll >= 3)
2356                                         return 3;
2357                                 else if (loop_info.max_unroll >= 2)
2358                                         return 2;
2359                                 else
2360                                         return 0;
2361
2362                         case 4:
2363                                 if (loop_info.max_unroll >= 2)
2364                                         return 2;
2365                                 else
2366                                         return 0;
2367
2368                         default:
2369                                 return 0;
2370                 }
2371         }
2372 }
2373
2374 /* Check if cur_loop is a simple counting loop.
2375  * Start, step and end are constants.
2376  * TODO The whole constant case should use procedures similar to
2377  * the invariant case, as they are more versatile. */
2378 /* TODO split. */
2379 static unsigned get_unroll_decision_constant(void)
2380 {
2381         ir_node   *projres, *loop_condition, *iteration_path;
2382         unsigned   success, is_latest_val;
2383         ir_tarval *start_tar, *end_tar, *step_tar, *diff_tar, *count_tar, *stepped;
2384         pn_Cmp     proj_proj, norm_proj;
2385         ir_mode   *mode;
2386
2387         /* RETURN if loop is not 'simple' */
2388         projres = is_simple_loop();
2389         if (projres == NULL)
2390                 return 0;
2391
2392         /* One in of the loop condition needs to be loop invariant. => end_val
2393          * The other in is assigned by an add. => add
2394          * The add uses a loop invariant value => step
2395          * and a phi with a loop invariant start_val and the add node as ins.
2396
2397            ^   ^
2398            |   | .-,
2399            |   Phi |
2400                 \  |   |
2401           ^  Add   |
2402            \  | \__|
2403             cond
2404              /\
2405         */
2406
2407         loop_condition = get_irn_n(projres, 0);
2408
2409         success = get_const_pred(loop_condition, &loop_info.end_val, &iteration_path);
2410         if (! success)
2411                 return 0;
2412
2413         DB((dbg, LEVEL_4, "End_val %N, other %N\n", loop_info.end_val, iteration_path));
2414
2415         /* We may find the add or the phi first.
2416          * Until now we only have end_val. */
2417         if (is_Add(iteration_path) || is_Sub(iteration_path)) {
2418
2419                 /* We test against the latest value of the iv. */
2420                 is_latest_val = 1;
2421
2422                 loop_info.add = iteration_path;
2423                 DB((dbg, LEVEL_4, "Case 2: Got add %N (maybe not sane)\n", loop_info.add));
2424
2425                 /* Preds of the add should be step and the iteration_phi */
2426                 success = get_const_pred(loop_info.add, &loop_info.step, &loop_info.iteration_phi);
2427                 if (! success)
2428                         return 0;
2429
2430                 DB((dbg, LEVEL_4, "Got step %N\n", loop_info.step));
2431
2432                 if (! is_Phi(loop_info.iteration_phi))
2433                         return 0;
2434
2435                 DB((dbg, LEVEL_4, "Got phi %N\n", loop_info.iteration_phi));
2436
2437                 /* Find start_val.
2438                  * Does necessary sanity check of add, if it is already set.  */
2439                 success = get_start_and_add(loop_info.iteration_phi, constant);
2440                 if (! success)
2441                         return 0;
2442
2443                 DB((dbg, LEVEL_4, "Got start %N\n", loop_info.start_val));
2444
2445         } else if (is_Phi(iteration_path)) {
2446                 ir_node *new_iteration_phi;
2447
2448                 /* We compare with the value the iv had entering this run. */
2449                 is_latest_val = 0;
2450
2451                 loop_info.iteration_phi = iteration_path;
2452                 DB((dbg, LEVEL_4, "Case 1: Got phi %N \n", loop_info.iteration_phi));
2453
2454                 /* Find start_val and add-node.
2455                  * Does necessary sanity check of add, if it is already set.  */
2456                 success = get_start_and_add(loop_info.iteration_phi, constant);
2457                 if (! success)
2458                         return 0;
2459
2460                 DB((dbg, LEVEL_4, "Got start %N\n", loop_info.start_val));
2461                 DB((dbg, LEVEL_4, "Got add or sub %N\n", loop_info.add));
2462
2463                 success = get_const_pred(loop_info.add, &loop_info.step, &new_iteration_phi);
2464                 if (! success)
2465                         return 0;
2466
2467                 DB((dbg, LEVEL_4, "Got step %N\n", loop_info.step));
2468
2469                 if (loop_info.iteration_phi != new_iteration_phi)
2470                         return 0;
2471
2472         } else {
2473                 /* RETURN */
2474                 return 0;
2475         }
2476
2477         mode = get_irn_mode(loop_info.end_val);
2478
2479         DB((dbg, LEVEL_4, "start %N, end %N, step %N\n",
2480                                 loop_info.start_val, loop_info.end_val, loop_info.step));
2481
2482         if (mode != mode_Is && mode != mode_Iu)
2483                 return 0;
2484
2485         /* TODO necessary? */
2486         if (!are_mode_I(loop_info.start_val, loop_info.step, loop_info.end_val))
2487                 return 0;
2488
2489         DB((dbg, LEVEL_4, "mode integer\n"));
2490
2491         end_tar = get_Const_tarval(loop_info.end_val);
2492         start_tar = get_Const_tarval(loop_info.start_val);
2493         step_tar = get_Const_tarval(loop_info.step);
2494
2495         if (tarval_is_null(step_tar))
2496                 /* TODO Might be worth a warning. */
2497                 return 0;
2498
2499         DB((dbg, LEVEL_4, "step is not 0\n"));
2500
2501         if ((!tarval_is_negative(step_tar)) ^ (!is_Sub(loop_info.add)))
2502                 loop_info.decreasing = 1;
2503
2504         diff_tar = tarval_sub(end_tar, start_tar, mode);
2505
2506         /* We need at least count_tar steps to be close to end_val, maybe more.
2507          * No way, that we have gone too many steps.
2508          * This represents the 'latest value'.
2509          * (If condition checks against latest value, is checked later) */
2510         count_tar = tarval_div(diff_tar, step_tar);
2511
2512         /* Iv will not pass end_val (except overflows).
2513          * Nothing done, as it would yield to no advantage. */
2514         if (tarval_is_negative(count_tar)) {
2515                 DB((dbg, LEVEL_4, "Loop is endless or never taken."));
2516                 /* TODO Might be worth a warning. */
2517                 return 0;
2518         }
2519
2520         count_stats(stats.u_simple_counting_loop);
2521
2522         loop_info.latest_value = is_latest_val;
2523
2524         /* TODO split here
2525         if (! is_simple_counting_loop(&count_tar))
2526                 return 0;
2527         */
2528
2529         /* stepped can be negative, if step < 0 */
2530         stepped = tarval_mul(count_tar, step_tar);
2531
2532         /* step as close to end_val as possible, */
2533         /* |stepped| <= |end_tar|, and dist(stepped, end_tar) is smaller than a step. */
2534         if (is_Sub(loop_info.add))
2535                 stepped = tarval_sub(start_tar, stepped, mode_Is);
2536         else
2537                 stepped = tarval_add(start_tar, stepped);
2538
2539         DB((dbg, LEVEL_4, "stepped to %ld\n", get_tarval_long(stepped)));
2540
2541         proj_proj = get_Proj_pn_cmp(projres);
2542         /* Assure that norm_proj is the stay-in-loop case. */
2543         if (loop_info.exit_cond == 1)
2544                 norm_proj = get_math_inverted_case(proj_proj);
2545         else
2546                 norm_proj = proj_proj;
2547
2548         DB((dbg, LEVEL_4, "normalized projection %s\n", get_pnc_string(norm_proj)));
2549
2550         /* Executed at most once (stay in counting loop if a Eq b) */
2551         if (norm_proj == pn_Cmp_Eq)
2552                 /* TODO Might be worth a warning. */
2553                 return 0;
2554
2555         /* calculates next values and increases count_tar according to it */
2556         success = simulate_next(&count_tar, stepped, step_tar, end_tar, norm_proj);
2557         if (! success)
2558                 return 0;
2559
2560         /* We run loop once more, if we compare to the
2561          * not yet in-/decreased iv. */
2562         if (is_latest_val == 0) {
2563                 DB((dbg, LEVEL_4, "condition uses not latest iv value\n"));
2564                 count_tar = tarval_add(count_tar, get_tarval_one(mode));
2565         }
2566
2567         DB((dbg, LEVEL_4, "loop taken %ld times\n", get_tarval_long(count_tar)));
2568
2569         /* Assure the loop is taken at least 1 time. */
2570         if (tarval_is_null(count_tar)) {
2571                 /* TODO Might be worth a warning. */
2572                 return 0;
2573         }
2574
2575         loop_info.count_tar = count_tar;
2576         return get_preferred_factor_constant(count_tar);
2577 }
2578
2579 /**
2580  * Loop unrolling
2581  */
2582 static void unroll_loop(void)
2583 {
2584
2585         if (! (loop_info.nodes > 0))
2586                 return;
2587
2588 #if LOOP_IGNORE_NODE_LIMITS
2589         DB((dbg, LEVEL_1, "WARNING: Loop node limitations ignored."));
2590 #else
2591         if (loop_info.nodes > opt_params.max_unrolled_loop_size) {
2592                 DB((dbg, LEVEL_2, "Nodes %d > allowed nodes %d\n",
2593                         loop_info.nodes, opt_params.max_unrolled_loop_size));
2594                 count_stats(stats.too_large);
2595                 return;
2596         }
2597
2598         if (loop_info.calls > 0) {
2599                 DB((dbg, LEVEL_2, "Calls %d > allowed calls 0\n",
2600                         loop_info.calls));
2601                 count_stats(stats.calls_limit);
2602                 return;
2603         }
2604 #endif
2605
2606         unroll_nr = 0;
2607
2608         /* get_unroll_decision_constant and invariant are completely
2609          * independent for flexibility.
2610          * Some checks may be performed twice. */
2611
2612         /* constant case? */
2613         if (opt_params.allow_const_unrolling)
2614                 unroll_nr = get_unroll_decision_constant();
2615         if (unroll_nr > 1) {
2616                 loop_info.unroll_kind = constant;
2617
2618         } else {
2619                 /* invariant case? */
2620                 if (opt_params.allow_invar_unrolling)
2621                         unroll_nr = get_unroll_decision_invariant();
2622                 if (unroll_nr > 1)
2623                         loop_info.unroll_kind = invariant;
2624         }
2625
2626         DB((dbg, LEVEL_2, " *** Unrolling %d times ***\n", unroll_nr));
2627
2628         if (unroll_nr > 1) {
2629                 loop_entries = NEW_ARR_F(entry_edge, 0);
2630
2631                 /* Get loop outs */
2632                 irg_walk_graph(current_ir_graph, get_loop_entries, NULL, NULL);
2633
2634                 if (loop_info.unroll_kind == constant) {
2635                         if ((int)get_tarval_long(loop_info.count_tar) == unroll_nr)
2636                                 loop_info.needs_backedge = 0;
2637                         else
2638                                 loop_info.needs_backedge = 1;
2639                 } else {
2640                         loop_info.needs_backedge = 1;
2641                 }
2642
2643                 /* Use phase to keep copy of nodes from the condition chain. */
2644                 phase = new_phase(current_ir_graph, phase_irn_init_default);
2645
2646                 /* Copies the loop */
2647                 copy_loop(loop_entries, unroll_nr - 1);
2648
2649                 /* Line up the floating copies. */
2650                 place_copies(unroll_nr - 1);
2651
2652                 /* Remove phis with 1 in
2653                  * If there were no nested phis, this would not be necessary.
2654                  * Avoiding the creation in the first place
2655                  * leads to complex special cases. */
2656                 irg_walk_graph(current_ir_graph, correct_phis, NULL, NULL);
2657
2658                 if (loop_info.unroll_kind == constant)
2659                         count_stats(stats.constant_unroll);
2660                 else
2661                         count_stats(stats.invariant_unroll);
2662
2663                 set_irg_doms_inconsistent(current_ir_graph);
2664                 set_irg_loopinfo_inconsistent(current_ir_graph);
2665                 /* TODO is it? */
2666                 set_irg_outs_inconsistent(current_ir_graph);
2667
2668                 DEL_ARR_F(loop_entries);
2669         }
2670
2671 }
2672
2673 /* Analyzes the loop, and checks if size is within allowed range.
2674  * Decides if loop will be processed. */
2675 static void init_analyze(ir_loop *loop)
2676 {
2677         cur_loop = loop;
2678
2679         loop_head = NULL;
2680         loop_head_valid = 1;
2681
2682         /* Reset loop info */
2683         memset(&loop_info, 0, sizeof(loop_info_t));
2684
2685         DB((dbg, LEVEL_1, "    >>>> current loop includes node %N <<<\n",
2686                 get_loop_node(loop, 0)));
2687
2688         /* Collect loop informations: head, node counts. */
2689         irg_walk_graph(current_ir_graph, get_loop_info, NULL, NULL);
2690
2691         /* RETURN if there is no valid head */
2692         if (!loop_head || !loop_head_valid) {
2693                 DB((dbg, LEVEL_1,   "No valid loop head. Nothing done.\n"));
2694                 return;
2695         } else {
2696                 DB((dbg, LEVEL_1,   "Loophead: %N\n", loop_head));
2697         }
2698
2699         if (loop_info.branches > opt_params.max_branches) {
2700                 DB((dbg, LEVEL_1, "Branches %d > allowed branches %d\n",
2701                         loop_info.branches, opt_params.max_branches));
2702                 count_stats(stats.calls_limit);
2703                 return;
2704         }
2705
2706         switch (loop_op) {
2707                 case loop_op_inversion:
2708                         loop_inversion();
2709                         break;
2710
2711                 case loop_op_unrolling:
2712                         unroll_loop();
2713                         break;
2714
2715                 default:
2716                         panic("Loop optimization not implemented.");
2717         }
2718         DB((dbg, LEVEL_1, "       <<<< end of loop with node %N >>>>\n",
2719                 get_loop_node(loop, 0)));
2720 }
2721
2722 /* Find innermost loops and add them to loops. */
2723 static void find_innermost_loop(ir_loop *loop)
2724 {
2725         /* descend into sons */
2726         size_t sons = get_loop_n_sons(loop);
2727
2728         if (sons == 0) {
2729                 ARR_APP1(ir_loop *, loops, loop);
2730         } else {
2731                 size_t s;
2732                 for (s = 0; s < sons; ++s) {
2733                         find_innermost_loop(get_loop_son(loop, s));
2734                 }
2735         }
2736 }
2737
2738 static void set_loop_params(void)
2739 {
2740     opt_params.max_loop_size = 100;
2741     opt_params.depth_adaption = -50;
2742     opt_params.count_phi = 1;
2743     opt_params.count_proj = 0;
2744     opt_params.allowed_calls = 0;
2745
2746     opt_params.max_cc_size = 5;
2747
2748
2749     opt_params.allow_const_unrolling = 1;
2750     opt_params.allow_invar_unrolling = 0;
2751
2752     opt_params.invar_unrolling_min_size = 20;
2753     opt_params.max_unrolled_loop_size = 400;
2754     opt_params.max_branches = 9999;
2755 }
2756
2757 /* Assure preconditions are met and go through all loops. */
2758 void loop_optimization(ir_graph *irg)
2759 {
2760         ir_loop *loop;
2761         size_t  sons, nr;
2762         size_t  i;
2763
2764         set_loop_params();
2765
2766         /* Reset stats for this procedure */
2767         reset_stats();
2768
2769         /* Preconditions */
2770         set_current_ir_graph(irg);
2771
2772         edges_assure(irg);
2773         assure_irg_outs(irg);
2774
2775         /* NOTE: sets only the loop attribute of blocks, not nodes */
2776         /* NOTE: Kills links */
2777         assure_cf_loop(irg);
2778
2779         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_PHI_LIST);
2780         collect_phiprojs(irg);
2781         ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
2782
2783         loop = get_irg_loop(irg);
2784         sons = get_loop_n_sons(loop);
2785
2786         loops = NEW_ARR_F(ir_loop *, 0);
2787         /* List all inner loops */
2788         for (nr = 0; nr < sons; ++nr) {
2789                 find_innermost_loop(get_loop_son(loop, nr));
2790         }
2791
2792         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
2793         /* Set all links to NULL */
2794         irg_walk_graph(current_ir_graph, reset_link, NULL, NULL);
2795
2796         for (i = 0; i < ARR_LEN(loops); ++i) {
2797                 ir_loop *loop = loops[i];
2798
2799                 count_stats(stats.loops);
2800
2801                 /* Analyze and handle loop */
2802                 init_analyze(loop);
2803
2804                 /* Copied blocks do not have their phi list yet */
2805                 collect_phiprojs(irg);
2806
2807                 /* Set links to NULL
2808                  * TODO Still necessary? */
2809                 irg_walk_graph(current_ir_graph, reset_link, NULL, NULL);
2810         }
2811
2812         print_stats();
2813
2814         DEL_ARR_F(loops);
2815         ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
2816         ir_free_resources(irg, IR_RESOURCE_PHI_LIST);
2817 }
2818
2819 void do_loop_unrolling(ir_graph *irg)
2820 {
2821         loop_op = loop_op_unrolling;
2822
2823         DB((dbg, LEVEL_1, " >>> unrolling (Startnode %N) <<<\n",
2824                                 get_irg_start(irg)));
2825
2826         loop_optimization(irg);
2827
2828         DB((dbg, LEVEL_1, " >>> unrolling done (Startnode %N) <<<\n",
2829                                 get_irg_start(irg)));
2830 }
2831
2832 void do_loop_inversion(ir_graph *irg)
2833 {
2834         loop_op = loop_op_inversion;
2835
2836         DB((dbg, LEVEL_1, " >>> inversion (Startnode %N) <<<\n",
2837                                 get_irg_start(irg)));
2838
2839         loop_optimization(irg);
2840
2841         assure_cf_loop(irg);
2842
2843         DB((dbg, LEVEL_1, " >>> inversion done (Startnode %N) <<<\n",
2844                                 get_irg_start(irg)));
2845 }
2846
2847 void do_loop_peeling(ir_graph *irg)
2848 {
2849         loop_op = loop_op_peeling;
2850
2851         DB((dbg, LEVEL_1, " >>> peeling (Startnode %N) <<<\n",
2852                                 get_irg_start(irg)));
2853
2854         loop_optimization(irg);
2855
2856         DB((dbg, LEVEL_1, " >>> peeling done (Startnode %N) <<<\n",
2857                                 get_irg_start(irg)));
2858
2859 }
2860
2861 ir_graph_pass_t *loop_inversion_pass(const char *name)
2862 {
2863         return def_graph_pass(name ? name : "loop_inversion", do_loop_inversion);
2864 }
2865
2866 ir_graph_pass_t *loop_unroll_pass(const char *name)
2867 {
2868         return def_graph_pass(name ? name : "loop_unroll", do_loop_unrolling);
2869 }
2870
2871 ir_graph_pass_t *loop_peeling_pass(const char *name)
2872 {
2873         return def_graph_pass(name ? name : "loop_peeling", do_loop_peeling);
2874 }
2875
2876 void firm_init_loop_opt(void)
2877 {
2878         FIRM_DBG_REGISTER(dbg, "firm.opt.loop");
2879 }