inline_leave_functions(): uses new collect_calls2() and needs loop-info
[libfirm] / ir / opt / opt_inline.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief    Dead node elimination and Procedure Inlining.
23  * @author   Michael Beck, Goetz Lindenmaier
24  * @version  $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <limits.h>
31 #include <assert.h>
32
33 #include "irnode_t.h"
34 #include "irgraph_t.h"
35 #include "irprog_t.h"
36
37 #include "iroptimize.h"
38 #include "ircons_t.h"
39 #include "iropt_t.h"
40 #include "irgopt.h"
41 #include "irgmod.h"
42 #include "irgwalk.h"
43
44 #include "adt/array.h"
45 #include "adt/pset.h"
46 #include "adt/pmap.h"
47 #include "adt/pdeq.h"
48 #include "adt/xmalloc.h"
49
50 #include "irouts.h"
51 #include "irloop_t.h"
52 #include "irbackedge_t.h"
53 #include "opt_inline_t.h"
54 #include "cgana.h"
55 #include "trouts.h"
56 #include "error.h"
57
58 #include "analyze_irg_args.h"
59 #include "iredges_t.h"
60 #include "irflag_t.h"
61 #include "irhooks.h"
62 #include "irtools.h"
63
64 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
65
66 /*------------------------------------------------------------------*/
67 /* Routines for dead node elimination / copying garbage collection  */
68 /* of the obstack.                                                  */
69 /*------------------------------------------------------------------*/
70
71 /**
72  * Remember the new node in the old node by using a field all nodes have.
73  */
74 #define set_new_node(oldn, newn)  set_irn_link(oldn, newn)
75
76 /**
77  * Get this new node, before the old node is forgotten.
78  */
79 #define get_new_node(oldn) get_irn_link(oldn)
80
81 /**
82  * Check if a new node was set.
83  */
84 #define has_new_node(n) (get_new_node(n) != NULL)
85
86 /**
87  * We use the block_visited flag to mark that we have computed the
88  * number of useful predecessors for this block.
89  * Further we encode the new arity in this flag in the old blocks.
90  * Remembering the arity is useful, as it saves a lot of pointer
91  * accesses.  This function is called for all Phi and Block nodes
92  * in a Block.
93  */
94 static INLINE int
95 compute_new_arity(ir_node *b) {
96         int i, res, irn_arity;
97         int irg_v, block_v;
98
99         irg_v = get_irg_block_visited(current_ir_graph);
100         block_v = get_Block_block_visited(b);
101         if (block_v >= irg_v) {
102                 /* we computed the number of preds for this block and saved it in the
103                    block_v flag */
104                 return block_v - irg_v;
105         } else {
106                 /* compute the number of good predecessors */
107                 res = irn_arity = get_irn_arity(b);
108                 for (i = 0; i < irn_arity; i++)
109                         if (is_Bad(get_irn_n(b, i))) res--;
110                         /* save it in the flag. */
111                         set_Block_block_visited(b, irg_v + res);
112                         return res;
113         }
114 }
115
116 /**
117  * Copies the node to the new obstack. The Ins of the new node point to
118  * the predecessors on the old obstack.  For block/phi nodes not all
119  * predecessors might be copied.  n->link points to the new node.
120  * For Phi and Block nodes the function allocates in-arrays with an arity
121  * only for useful predecessors.  The arity is determined by counting
122  * the non-bad predecessors of the block.
123  *
124  * @param n    The node to be copied
125  * @param env  if non-NULL, the node number attribute will be copied to the new node
126  *
127  * Note: Also used for loop unrolling.
128  */
129 static void copy_node(ir_node *n, void *env) {
130         ir_node *nn, *block;
131         int new_arity;
132         ir_op *op = get_irn_op(n);
133         (void) env;
134
135         if (op == op_Bad) {
136                 /* node copied already */
137                 return;
138         } else if (op == op_Block) {
139                 block = NULL;
140                 new_arity = compute_new_arity(n);
141                 n->attr.block.graph_arr = NULL;
142         } else {
143                 block = get_nodes_block(n);
144                 if (op == op_Phi) {
145                         new_arity = compute_new_arity(block);
146                 } else {
147                         new_arity = get_irn_arity(n);
148                 }
149         }
150         nn = new_ir_node(get_irn_dbg_info(n),
151                 current_ir_graph,
152                 block,
153                 op,
154                 get_irn_mode(n),
155                 new_arity,
156                 get_irn_in(n) + 1);
157         /* Copy the attributes.  These might point to additional data.  If this
158            was allocated on the old obstack the pointers now are dangling.  This
159            frees e.g. the memory of the graph_arr allocated in new_immBlock. */
160         if (op == op_Block) {
161                 /* we cannot allow blocks WITHOUT macroblock input */
162                 set_Block_MacroBlock(nn, get_Block_MacroBlock(n));
163         }
164         copy_node_attr(n, nn);
165
166 #ifdef DEBUG_libfirm
167         {
168                 int copy_node_nr = env != NULL;
169                 if (copy_node_nr) {
170                         /* for easier debugging, we want to copy the node numbers too */
171                         nn->node_nr = n->node_nr;
172                 }
173         }
174 #endif
175
176         set_new_node(n, nn);
177         hook_dead_node_elim_subst(current_ir_graph, n, nn);
178 }
179
180 /**
181  * Copies new predecessors of old node to new node remembered in link.
182  * Spare the Bad predecessors of Phi and Block nodes.
183  */
184 static void copy_preds(ir_node *n, void *env) {
185         ir_node *nn, *block;
186         int i, j, irn_arity;
187         (void) env;
188
189         nn = get_new_node(n);
190
191         if (is_Block(n)) {
192                 /* copy the macro block header */
193                 ir_node *mbh = get_Block_MacroBlock(n);
194
195                 if (mbh == n) {
196                         /* this block is a macroblock header */
197                         set_Block_MacroBlock(nn, nn);
198                 } else {
199                         /* get the macro block header */
200                         ir_node *nmbh = get_new_node(mbh);
201                         assert(nmbh != NULL);
202                         set_Block_MacroBlock(nn, nmbh);
203                 }
204
205                 /* Don't copy Bad nodes. */
206                 j = 0;
207                 irn_arity = get_irn_arity(n);
208                 for (i = 0; i < irn_arity; i++) {
209                         if (! is_Bad(get_irn_n(n, i))) {
210                                 ir_node *pred = get_irn_n(n, i);
211                                 set_irn_n(nn, j, get_new_node(pred));
212                                 j++;
213                         }
214                 }
215                 /* repair the block visited flag from above misuse. Repair it in both
216                    graphs so that the old one can still be used. */
217                 set_Block_block_visited(nn, 0);
218                 set_Block_block_visited(n, 0);
219                 /* Local optimization could not merge two subsequent blocks if
220                    in array contained Bads.  Now it's possible.
221                    We don't call optimize_in_place as it requires
222                    that the fields in ir_graph are set properly. */
223                 if ((get_opt_control_flow_straightening()) &&
224                         (get_Block_n_cfgpreds(nn) == 1) &&
225                         is_Jmp(get_Block_cfgpred(nn, 0))) {
226                         ir_node *old = get_nodes_block(get_Block_cfgpred(nn, 0));
227                         if (nn == old) {
228                                 /* Jmp jumps into the block it is in -- deal self cycle. */
229                                 assert(is_Bad(get_new_node(get_irg_bad(current_ir_graph))));
230                                 exchange(nn, get_new_node(get_irg_bad(current_ir_graph)));
231                         } else {
232                                 exchange(nn, old);
233                         }
234                 }
235         } else if (is_Phi(n) && get_irn_arity(n) > 0) {
236                 /* Don't copy node if corresponding predecessor in block is Bad.
237                    The Block itself should not be Bad. */
238                 block = get_nodes_block(n);
239                 set_nodes_block(nn, get_new_node(block));
240                 j = 0;
241                 irn_arity = get_irn_arity(n);
242                 for (i = 0; i < irn_arity; i++) {
243                         if (! is_Bad(get_irn_n(block, i))) {
244                                 ir_node *pred = get_irn_n(n, i);
245                                 set_irn_n(nn, j, get_new_node(pred));
246                                 /*if (is_backedge(n, i)) set_backedge(nn, j);*/
247                                 j++;
248                         }
249                 }
250                 /* If the pre walker reached this Phi after the post walker visited the
251                    block block_visited is > 0. */
252                 set_Block_block_visited(get_nodes_block(n), 0);
253                 /* Compacting the Phi's ins might generate Phis with only one
254                    predecessor. */
255                 if (get_irn_arity(nn) == 1)
256                         exchange(nn, get_irn_n(nn, 0));
257         } else {
258                 irn_arity = get_irn_arity(n);
259                 for (i = -1; i < irn_arity; i++)
260                         set_irn_n(nn, i, get_new_node(get_irn_n(n, i)));
261         }
262         /* Now the new node is complete.  We can add it to the hash table for CSE.
263            @@@ inlining aborts if we identify End. Why? */
264         if (!is_End(nn))
265                 add_identities(current_ir_graph->value_table, nn);
266 }
267
268 /**
269  * Copies the graph recursively, compacts the keep-alives of the end node.
270  *
271  * @param irg           the graph to be copied
272  * @param copy_node_nr  If non-zero, the node number will be copied
273  */
274 static void copy_graph(ir_graph *irg, int copy_node_nr) {
275         ir_node *oe, *ne, *ob, *nb, *om, *nm; /* old end, new end, old bad, new bad, old NoMem, new NoMem */
276         ir_node *ka;      /* keep alive */
277         int i, irn_arity;
278         unsigned long vfl;
279
280         /* Some nodes must be copied by hand, sigh */
281         vfl = get_irg_visited(irg);
282         set_irg_visited(irg, vfl + 1);
283
284         oe = get_irg_end(irg);
285         mark_irn_visited(oe);
286         /* copy the end node by hand, allocate dynamic in array! */
287         ne = new_ir_node(get_irn_dbg_info(oe),
288                 irg,
289                 NULL,
290                 op_End,
291                 mode_X,
292                 -1,
293                 NULL);
294         /* Copy the attributes.  Well, there might be some in the future... */
295         copy_node_attr(oe, ne);
296         set_new_node(oe, ne);
297
298         /* copy the Bad node */
299         ob = get_irg_bad(irg);
300         mark_irn_visited(ob);
301         nb = new_ir_node(get_irn_dbg_info(ob),
302                 irg,
303                 NULL,
304                 op_Bad,
305                 mode_T,
306                 0,
307                 NULL);
308         copy_node_attr(ob, nb);
309         set_new_node(ob, nb);
310
311         /* copy the NoMem node */
312         om = get_irg_no_mem(irg);
313         mark_irn_visited(om);
314         nm = new_ir_node(get_irn_dbg_info(om),
315                 irg,
316                 NULL,
317                 op_NoMem,
318                 mode_M,
319                 0,
320                 NULL);
321         copy_node_attr(om, nm);
322         set_new_node(om, nm);
323
324         /* copy the live nodes */
325         set_irg_visited(irg, vfl);
326         irg_walk(get_nodes_block(oe), copy_node, copy_preds, INT_TO_PTR(copy_node_nr));
327
328         /* Note: from yet, the visited flag of the graph is equal to vfl + 1 */
329
330         /* visit the anchors as well */
331         for (i = get_irg_n_anchors(irg) - 1; i >= 0; --i) {
332                 ir_node *n = get_irg_anchor(irg, i);
333
334                 if (n && (get_irn_visited(n) <= vfl)) {
335                         set_irg_visited(irg, vfl);
336                         irg_walk(n, copy_node, copy_preds, INT_TO_PTR(copy_node_nr));
337                 }
338         }
339
340         /* copy_preds for the end node ... */
341         set_nodes_block(ne, get_new_node(get_nodes_block(oe)));
342
343         /*- ... and now the keep alives. -*/
344         /* First pick the not marked block nodes and walk them.  We must pick these
345            first as else we will oversee blocks reachable from Phis. */
346         irn_arity = get_End_n_keepalives(oe);
347         for (i = 0; i < irn_arity; i++) {
348                 ka = get_End_keepalive(oe, i);
349                 if (is_Block(ka)) {
350                         if (get_irn_visited(ka) <= vfl) {
351                                 /* We must keep the block alive and copy everything reachable */
352                                 set_irg_visited(irg, vfl);
353                                 irg_walk(ka, copy_node, copy_preds, INT_TO_PTR(copy_node_nr));
354                         }
355                         add_End_keepalive(ne, get_new_node(ka));
356                 }
357         }
358
359         /* Now pick other nodes.  Here we will keep all! */
360         irn_arity = get_End_n_keepalives(oe);
361         for (i = 0; i < irn_arity; i++) {
362                 ka = get_End_keepalive(oe, i);
363                 if (!is_Block(ka)) {
364                         if (get_irn_visited(ka) <= vfl) {
365                                 /* We didn't copy the node yet.  */
366                                 set_irg_visited(irg, vfl);
367                                 irg_walk(ka, copy_node, copy_preds, INT_TO_PTR(copy_node_nr));
368                         }
369                         add_End_keepalive(ne, get_new_node(ka));
370                 }
371         }
372
373         /* start block sometimes only reached after keep alives */
374         set_nodes_block(nb, get_new_node(get_nodes_block(ob)));
375         set_nodes_block(nm, get_new_node(get_nodes_block(om)));
376 }
377
378 /**
379  * Copies the graph reachable from current_ir_graph->end to the obstack
380  * in current_ir_graph and fixes the environment.
381  * Then fixes the fields in current_ir_graph containing nodes of the
382  * graph.
383  *
384  * @param copy_node_nr  If non-zero, the node number will be copied
385  */
386 static void
387 copy_graph_env(int copy_node_nr) {
388         ir_graph *irg = current_ir_graph;
389         ir_node *old_end, *new_anchor;
390         int i;
391
392         /* remove end_except and end_reg nodes */
393         old_end = get_irg_end(irg);
394         set_irg_end_except (irg, old_end);
395         set_irg_end_reg    (irg, old_end);
396
397         /* Not all nodes remembered in irg might be reachable
398            from the end node.  Assure their link is set to NULL, so that
399            we can test whether new nodes have been computed. */
400         for (i = get_irg_n_anchors(irg) - 1; i >= 0; --i) {
401                 ir_node *n = get_irg_anchor(irg, i);
402                 if (n != NULL)
403                         set_new_node(n, NULL);
404         }
405         /* we use the block walk flag for removing Bads from Blocks ins. */
406         inc_irg_block_visited(irg);
407
408         /* copy the graph */
409         copy_graph(irg, copy_node_nr);
410
411         /* fix the anchor */
412         old_end    = get_irg_end(irg);
413         new_anchor = new_Anchor(irg);
414
415         for (i = get_irg_n_anchors(irg) - 1; i >= 0; --i) {
416                 ir_node *n = get_irg_anchor(irg, i);
417                 if (n)
418                         set_irn_n(new_anchor, i, get_new_node(n));
419         }
420         free_End(old_end);
421         irg->anchor = new_anchor;
422
423         /* ensure the new anchor is placed in the endblock */
424         set_nodes_block(new_anchor, get_irg_end_block(irg));
425 }
426
427 /**
428  * Copies all reachable nodes to a new obstack.  Removes bad inputs
429  * from block nodes and the corresponding inputs from Phi nodes.
430  * Merges single exit blocks with single entry blocks and removes
431  * 1-input Phis.
432  * Adds all new nodes to a new hash table for CSE.  Does not
433  * perform CSE, so the hash table might contain common subexpressions.
434  */
435 void dead_node_elimination(ir_graph *irg) {
436         ir_graph *rem;
437 #ifdef INTERPROCEDURAL_VIEW
438         int rem_ipview = get_interprocedural_view();
439 #endif
440         struct obstack *graveyard_obst = NULL;
441         struct obstack *rebirth_obst   = NULL;
442         assert(! edges_activated(irg) && "dead node elimination requires disabled edges");
443
444         /* inform statistics that we started a dead-node elimination run */
445         hook_dead_node_elim(irg, 1);
446
447         /* Remember external state of current_ir_graph. */
448         rem = current_ir_graph;
449         current_ir_graph = irg;
450 #ifdef INTERPROCEDURAL_VIEW
451         set_interprocedural_view(0);
452 #endif
453
454         assert(get_irg_phase_state(irg) != phase_building);
455
456         /* Handle graph state */
457         free_callee_info(irg);
458         free_irg_outs(irg);
459         free_trouts();
460
461         /* @@@ so far we loose loops when copying */
462         free_loop_information(irg);
463
464         set_irg_doms_inconsistent(irg);
465
466         /* A quiet place, where the old obstack can rest in peace,
467            until it will be cremated. */
468         graveyard_obst = irg->obst;
469
470         /* A new obstack, where the reachable nodes will be copied to. */
471         rebirth_obst = xmalloc(sizeof(*rebirth_obst));
472         irg->obst = rebirth_obst;
473         obstack_init(irg->obst);
474         irg->last_node_idx = 0;
475
476         /* We also need a new value table for CSE */
477         del_identities(irg->value_table);
478         irg->value_table = new_identities();
479
480         /* Copy the graph from the old to the new obstack */
481         copy_graph_env(/*copy_node_nr=*/1);
482
483         /* Free memory from old unoptimized obstack */
484         obstack_free(graveyard_obst, 0);  /* First empty the obstack ... */
485         xfree(graveyard_obst);            /* ... then free it.           */
486
487         /* inform statistics that the run is over */
488         hook_dead_node_elim(irg, 0);
489
490         current_ir_graph = rem;
491 #ifdef INTERPROCEDURAL_VIEW
492         set_interprocedural_view(rem_ipview);
493 #endif
494 }
495
496 /**
497  * Relink bad predecessors of a block and store the old in array to the
498  * link field. This function is called by relink_bad_predecessors().
499  * The array of link field starts with the block operand at position 0.
500  * If block has bad predecessors, create a new in array without bad preds.
501  * Otherwise let in array untouched.
502  */
503 static void relink_bad_block_predecessors(ir_node *n, void *env) {
504         ir_node **new_in, *irn;
505         int i, new_irn_n, old_irn_arity, new_irn_arity = 0;
506         (void) env;
507
508         /* if link field of block is NULL, look for bad predecessors otherwise
509            this is already done */
510         if (is_Block(n) && get_irn_link(n) == NULL) {
511                 /* save old predecessors in link field (position 0 is the block operand)*/
512                 set_irn_link(n, get_irn_in(n));
513
514                 /* count predecessors without bad nodes */
515                 old_irn_arity = get_irn_arity(n);
516                 for (i = 0; i < old_irn_arity; i++)
517                         if (!is_Bad(get_irn_n(n, i)))
518                                 ++new_irn_arity;
519
520                 /* arity changing: set new predecessors without bad nodes */
521                 if (new_irn_arity < old_irn_arity) {
522                         /* Get new predecessor array. We do not resize the array, as we must
523                            keep the old one to update Phis. */
524                         new_in = NEW_ARR_D(ir_node *, current_ir_graph->obst, (new_irn_arity+1));
525
526                         /* set new predecessors in array */
527                         new_in[0] = NULL;
528                         new_irn_n = 1;
529                         for (i = 0; i < old_irn_arity; i++) {
530                                 irn = get_irn_n(n, i);
531                                 if (!is_Bad(irn)) {
532                                         new_in[new_irn_n] = irn;
533                                         is_backedge(n, i) ? set_backedge(n, new_irn_n-1) : set_not_backedge(n, new_irn_n-1);
534                                         ++new_irn_n;
535                                 }
536                         }
537                         /* ARR_SETLEN(int, n->attr.block.backedge, new_irn_arity); */
538                         ARR_SHRINKLEN(n->attr.block.backedge, new_irn_arity);
539                         n->in = new_in;
540                 } /* ir node has bad predecessors */
541         } /* Block is not relinked */
542 }
543
544 /**
545  * Relinks Bad predecessors from Blocks and Phis called by walker
546  * remove_bad_predecesors(). If n is a Block, call
547  * relink_bad_block_redecessors(). If n is a Phi-node, call also the relinking
548  * function of Phi's Block. If this block has bad predecessors, relink preds
549  * of the Phi-node.
550  */
551 static void relink_bad_predecessors(ir_node *n, void *env) {
552         ir_node *block, **old_in;
553         int i, old_irn_arity, new_irn_arity;
554
555         /* relink bad predecessors of a block */
556         if (is_Block(n))
557                 relink_bad_block_predecessors(n, env);
558
559         /* If Phi node relink its block and its predecessors */
560         if (is_Phi(n)) {
561                 /* Relink predecessors of phi's block */
562                 block = get_nodes_block(n);
563                 if (get_irn_link(block) == NULL)
564                         relink_bad_block_predecessors(block, env);
565
566                 old_in = (ir_node **)get_irn_link(block); /* Of Phi's Block */
567                 old_irn_arity = ARR_LEN(old_in);
568
569                 /* Relink Phi predecessors if count of predecessors changed */
570                 if (old_irn_arity != ARR_LEN(get_irn_in(block))) {
571                         /* set new predecessors in array
572                            n->in[0] remains the same block */
573                         new_irn_arity = 1;
574                         for(i = 1; i < old_irn_arity; i++)
575                                 if (!is_Bad(old_in[i])) {
576                                         n->in[new_irn_arity] = n->in[i];
577                                         is_backedge(n, i) ? set_backedge(n, new_irn_arity) : set_not_backedge(n, new_irn_arity);
578                                         ++new_irn_arity;
579                                 }
580
581                                 ARR_SETLEN(ir_node *, n->in, new_irn_arity);
582                                 ARR_SETLEN(int, n->attr.phi.u.backedge, new_irn_arity);
583                 }
584         } /* n is a Phi node */
585 }
586
587 /*
588  * Removes Bad Bad predecessors from Blocks and the corresponding
589  * inputs to Phi nodes as in dead_node_elimination but without
590  * copying the graph.
591  * On walking up set the link field to NULL, on walking down call
592  * relink_bad_predecessors() (This function stores the old in array
593  * to the link field and sets a new in array if arity of predecessors
594  * changes).
595  */
596 void remove_bad_predecessors(ir_graph *irg) {
597         panic("Fix backedge handling first");
598         irg_walk_graph(irg, firm_clear_link, relink_bad_predecessors, NULL);
599 }
600
601
602 /*
603    __                      _  __ __
604   (_     __    o     _    | \/  |_
605   __)|_| | \_/ | \_/(/_   |_/\__|__
606
607   The following stuff implements a facility that automatically patches
608   registered ir_node pointers to the new node when a dead node elimination occurs.
609 */
610
611 struct _survive_dce_t {
612         struct obstack obst;
613         pmap *places;
614         pmap *new_places;
615         hook_entry_t dead_node_elim;
616         hook_entry_t dead_node_elim_subst;
617 };
618
619 typedef struct _survive_dce_list_t {
620         struct _survive_dce_list_t *next;
621         ir_node **place;
622 } survive_dce_list_t;
623
624 static void dead_node_hook(void *context, ir_graph *irg, int start) {
625         survive_dce_t *sd = context;
626         (void) irg;
627
628         /* Create a new map before the dead node elimination is performed. */
629         if (start) {
630                 sd->new_places = pmap_create_ex(pmap_count(sd->places));
631         } else {
632                 /* Patch back all nodes if dead node elimination is over and something is to be done. */
633                 pmap_destroy(sd->places);
634                 sd->places     = sd->new_places;
635                 sd->new_places = NULL;
636         }
637 }
638
639 /**
640  * Hook called when dead node elimination replaces old by nw.
641  */
642 static void dead_node_subst_hook(void *context, ir_graph *irg, ir_node *old, ir_node *nw) {
643         survive_dce_t *sd = context;
644         survive_dce_list_t *list = pmap_get(sd->places, old);
645         (void) irg;
646
647         /* If the node is to be patched back, write the new address to all registered locations. */
648         if (list) {
649                 survive_dce_list_t *p;
650
651                 for (p = list; p; p = p->next)
652                         *(p->place) = nw;
653
654                 pmap_insert(sd->new_places, nw, list);
655         }
656 }
657
658 /**
659  * Make a new Survive DCE environment.
660  */
661 survive_dce_t *new_survive_dce(void) {
662         survive_dce_t *res = xmalloc(sizeof(res[0]));
663         obstack_init(&res->obst);
664         res->places     = pmap_create();
665         res->new_places = NULL;
666
667         res->dead_node_elim.hook._hook_dead_node_elim = dead_node_hook;
668         res->dead_node_elim.context                   = res;
669         res->dead_node_elim.next                      = NULL;
670
671         res->dead_node_elim_subst.hook._hook_dead_node_elim_subst = dead_node_subst_hook;
672         res->dead_node_elim_subst.context = res;
673         res->dead_node_elim_subst.next    = NULL;
674
675 #ifndef FIRM_ENABLE_HOOKS
676         assert(0 && "need hooks enabled");
677 #endif
678
679         register_hook(hook_dead_node_elim, &res->dead_node_elim);
680         register_hook(hook_dead_node_elim_subst, &res->dead_node_elim_subst);
681         return res;
682 }
683
684 /**
685  * Free a Survive DCE environment.
686  */
687 void free_survive_dce(survive_dce_t *sd) {
688         obstack_free(&sd->obst, NULL);
689         pmap_destroy(sd->places);
690         unregister_hook(hook_dead_node_elim, &sd->dead_node_elim);
691         unregister_hook(hook_dead_node_elim_subst, &sd->dead_node_elim_subst);
692         xfree(sd);
693 }
694
695 /**
696  * Register a node pointer to be patched upon DCE.
697  * When DCE occurs, the node pointer specified by @p place will be
698  * patched to the new address of the node it is pointing to.
699  *
700  * @param sd    The Survive DCE environment.
701  * @param place The address of the node pointer.
702  */
703 void survive_dce_register_irn(survive_dce_t *sd, ir_node **place) {
704         if (*place != NULL) {
705                 ir_node *irn      = *place;
706                 survive_dce_list_t *curr = pmap_get(sd->places, irn);
707                 survive_dce_list_t *nw   = obstack_alloc(&sd->obst, sizeof(nw[0]));
708
709                 nw->next  = curr;
710                 nw->place = place;
711
712                 pmap_insert(sd->places, irn, nw);
713         }
714 }
715
716 /*--------------------------------------------------------------------*/
717 /*  Functionality for inlining                                         */
718 /*--------------------------------------------------------------------*/
719
720 /**
721  * Copy node for inlineing.  Updates attributes that change when
722  * inlineing but not for dead node elimination.
723  *
724  * Copies the node by calling copy_node() and then updates the entity if
725  * it's a local one.  env must be a pointer of the frame type of the
726  * inlined procedure. The new entities must be in the link field of
727  * the entities.
728  */
729 static INLINE void
730 copy_node_inline(ir_node *n, void *env) {
731         ir_node *nn;
732         ir_type *frame_tp = (ir_type *)env;
733
734         copy_node(n, NULL);
735         if (is_Sel(n)) {
736                 nn = get_new_node (n);
737                 assert(is_Sel(nn));
738                 if (get_entity_owner(get_Sel_entity(n)) == frame_tp) {
739                         set_Sel_entity(nn, get_entity_link(get_Sel_entity(n)));
740                 }
741         } else if (is_Block(n)) {
742                 nn = get_new_node (n);
743                 nn->attr.block.irg = current_ir_graph;
744         }
745 }
746
747 /**
748  * Walker: checks if P_value_arg_base is used.
749  */
750 static void find_addr(ir_node *node, void *env) {
751         int *allow_inline = env;
752         if (is_Proj(node) &&
753                         is_Start(get_Proj_pred(node)) &&
754                         get_Proj_proj(node) == pn_Start_P_value_arg_base) {
755                 *allow_inline = 0;
756         } else if (is_Alloc(node) && get_Alloc_where(node) == stack_alloc) {
757                 /* From GCC:
758                  * Refuse to inline alloca call unless user explicitly forced so as this
759                  * may change program's memory overhead drastically when the function
760                  * using alloca is called in loop.  In GCC present in SPEC2000 inlining
761                  * into schedule_block cause it to require 2GB of ram instead of 256MB.
762                  *
763                  * Sorryly this is true with our implementation also.
764                  * Moreover, we cannot differentiate between alloca() and VLA yet, so this
765                  * disables inlining of functions using VLA (with are completely save).
766                  *
767                  * 2 Solutions:
768                  * - add a flag to the Alloc node for "real" alloca() calls
769                  * - add a new Stack-Restore node at the end of a function using alloca()
770                  */
771                 *allow_inline = 0;
772         }
773 }
774
775 /**
776  * Check if we can inline a given call.
777  * Currently, we cannot inline two cases:
778  * - call with compound arguments
779  * - graphs that take the address of a parameter
780  *
781  * check these conditions here
782  */
783 static int can_inline(ir_node *call, ir_graph *called_graph) {
784         ir_type *call_type = get_Call_type(call);
785         int params, ress, i, res;
786         assert(is_Method_type(call_type));
787
788         params = get_method_n_params(call_type);
789         ress   = get_method_n_ress(call_type);
790
791         /* check parameters for compound arguments */
792         for (i = 0; i < params; ++i) {
793                 ir_type *p_type = get_method_param_type(call_type, i);
794
795                 if (is_compound_type(p_type))
796                         return 0;
797         }
798
799         /* check results for compound arguments */
800         for (i = 0; i < ress; ++i) {
801                 ir_type *r_type = get_method_res_type(call_type, i);
802
803                 if (is_compound_type(r_type))
804                         return 0;
805         }
806
807         res = 1;
808         irg_walk_graph(called_graph, find_addr, NULL, &res);
809
810         return res;
811 }
812
813 enum exc_mode {
814         exc_handler    = 0, /**< There is a handler. */
815         exc_to_end     = 1, /**< Branches to End. */
816         exc_no_handler = 2  /**< Exception handling not represented. */
817 };
818
819 /* Inlines a method at the given call site. */
820 int inline_method(ir_node *call, ir_graph *called_graph) {
821         ir_node             *pre_call;
822         ir_node             *post_call, *post_bl;
823         ir_node             *in[pn_Start_max];
824         ir_node             *end, *end_bl;
825         ir_node             **res_pred;
826         ir_node             **cf_pred;
827         ir_node             *ret, *phi;
828         int                 arity, n_ret, n_exc, n_res, i, n, j, rem_opt, irn_arity;
829         enum exc_mode       exc_handling;
830         ir_type             *called_frame, *curr_frame;
831         ir_entity           *ent;
832         ir_graph            *rem, *irg;
833         irg_inline_property prop = get_irg_inline_property(called_graph);
834
835         if (prop == irg_inline_forbidden)
836                 return 0;
837
838         ent = get_irg_entity(called_graph);
839
840         /* Do not inline variadic functions. */
841         if (get_method_variadicity(get_entity_type(ent)) == variadicity_variadic) {
842                 /* Arg, KR functions are marked as variadic one's, so check further */
843                 ir_type *mtp     = get_entity_type(ent);
844                 ir_type *ctp     = get_Call_type(call);
845                 int     n_params = get_method_n_params(mtp);
846                 int     i;
847
848                 /* This is too strong, but probably ok. Function calls with a wrong number of
849                    parameters should not be inlined. */
850                 if (n_params != get_method_n_params(ctp))
851                         return 0;
852
853                 /* check types: for K&R calls, this was not done by the compiler. Again, this is
854                    too strong, but ok for now. */
855                 for (i = n_params - 1; i >= 0; --i) {
856                         ir_type *param_tp = get_method_param_type(mtp, i);
857                         ir_type *arg_tp   = get_method_param_type(ctp, i);
858
859                         if (param_tp != arg_tp)
860                                 return 0;
861                 }
862                 DB((dbg, LEVEL_1, "Inlining allowed for variadic function %+F\n", called_graph));
863                 /* types match, fine: when the frame is access, the inliner stops at can_inline() */
864         }
865
866         assert(get_method_n_params(get_entity_type(ent)) ==
867                get_method_n_params(get_Call_type(call)));
868
869         irg = get_irn_irg(call);
870
871         /*
872          * We cannot inline a recursive call. The graph must be copied before
873          * the call the inline_method() using create_irg_copy().
874          */
875         if (called_graph == irg)
876                 return 0;
877
878         /*
879          * currently, we cannot inline two cases:
880          * - call with compound arguments
881          * - graphs that take the address of a parameter
882          */
883         if (! can_inline(call, called_graph))
884                 return 0;
885
886         rem = current_ir_graph;
887         current_ir_graph = irg;
888
889         DB((dbg, LEVEL_1, "Inlining %+F(%+F) into %+F\n", call, called_graph, irg));
890
891         /* --  Turn off optimizations, this can cause problems when allocating new nodes. -- */
892         rem_opt = get_opt_optimize();
893         set_optimize(0);
894
895         /* Handle graph state */
896         assert(get_irg_phase_state(irg) != phase_building);
897         assert(get_irg_pinned(irg) == op_pin_state_pinned);
898         assert(get_irg_pinned(called_graph) == op_pin_state_pinned);
899         set_irg_outs_inconsistent(irg);
900         set_irg_extblk_inconsistent(irg);
901         set_irg_doms_inconsistent(irg);
902         set_irg_loopinfo_inconsistent(irg);
903         set_irg_callee_info_state(irg, irg_callee_info_inconsistent);
904
905         /* -- Check preconditions -- */
906         assert(is_Call(call));
907
908         /* here we know we WILL inline, so inform the statistics */
909         hook_inline(call, called_graph);
910
911         /* -- Decide how to handle exception control flow: Is there a handler
912            for the Call node, or do we branch directly to End on an exception?
913            exc_handling:
914            0 There is a handler.
915            1 Branches to End.
916            2 Exception handling not represented in Firm. -- */
917         {
918                 ir_node *proj, *Mproj = NULL, *Xproj = NULL;
919                 for (proj = get_irn_link(call); proj; proj = get_irn_link(proj)) {
920                         long proj_nr = get_Proj_proj(proj);
921                         if (proj_nr == pn_Call_X_except) Xproj = proj;
922                         if (proj_nr == pn_Call_M_except) Mproj = proj;
923                 }
924                 if      (Mproj) { assert(Xproj); exc_handling = exc_handler; } /*  Mproj           */
925                 else if (Xproj) {                exc_handling = exc_to_end; } /* !Mproj &&  Xproj   */
926                 else            {                exc_handling = exc_no_handler; } /* !Mproj && !Xproj   */
927         }
928
929         /* --
930            the procedure and later replaces the Start node of the called graph.
931            Post_call is the old Call node and collects the results of the called
932            graph. Both will end up being a tuple.  -- */
933         post_bl = get_nodes_block(call);
934         set_irg_current_block(irg, post_bl);
935         /* XxMxPxPxPxT of Start + parameter of Call */
936         in[pn_Start_X_initial_exec]   = new_Jmp();
937         in[pn_Start_M]                = get_Call_mem(call);
938         in[pn_Start_P_frame_base]     = get_irg_frame(irg);
939         in[pn_Start_P_tls]            = get_irg_tls(irg);
940         in[pn_Start_T_args]           = new_Tuple(get_Call_n_params(call), get_Call_param_arr(call));
941         /* in[pn_Start_P_value_arg_base] = ??? */
942         assert(pn_Start_P_value_arg_base == pn_Start_max - 1 && "pn_Start_P_value_arg_base not supported, fix");
943         pre_call = new_Tuple(pn_Start_max - 1, in);
944         post_call = call;
945
946         /* --
947            The new block gets the ins of the old block, pre_call and all its
948            predecessors and all Phi nodes. -- */
949         part_block(pre_call);
950
951         /* -- Prepare state for dead node elimination -- */
952         /* Visited flags in calling irg must be >= flag in called irg.
953            Else walker and arity computation will not work. */
954         if (get_irg_visited(irg) <= get_irg_visited(called_graph))
955                 set_irg_visited(irg, get_irg_visited(called_graph)+1);
956         if (get_irg_block_visited(irg) < get_irg_block_visited(called_graph))
957                 set_irg_block_visited(irg, get_irg_block_visited(called_graph));
958         /* Set pre_call as new Start node in link field of the start node of
959            calling graph and pre_calls block as new block for the start block
960            of calling graph.
961            Further mark these nodes so that they are not visited by the
962            copying. */
963         set_irn_link(get_irg_start(called_graph), pre_call);
964         set_irn_visited(get_irg_start(called_graph), get_irg_visited(irg));
965         set_irn_link(get_irg_start_block(called_graph), get_nodes_block(pre_call));
966         set_irn_visited(get_irg_start_block(called_graph), get_irg_visited(irg));
967         set_irn_link(get_irg_bad(called_graph), get_irg_bad(irg));
968         set_irn_visited(get_irg_bad(called_graph), get_irg_visited(irg));
969
970         /* Initialize for compaction of in arrays */
971         inc_irg_block_visited(irg);
972
973         /* -- Replicate local entities of the called_graph -- */
974         /* copy the entities. */
975         called_frame = get_irg_frame_type(called_graph);
976         curr_frame   = get_irg_frame_type(irg);
977         for (i = 0, n = get_class_n_members(called_frame); i < n; ++i) {
978                 ir_entity *new_ent, *old_ent;
979                 old_ent = get_class_member(called_frame, i);
980                 new_ent = copy_entity_own(old_ent, curr_frame);
981                 set_entity_link(old_ent, new_ent);
982         }
983
984         /* visited is > than that of called graph.  With this trick visited will
985            remain unchanged so that an outer walker, e.g., searching the call nodes
986             to inline, calling this inline will not visit the inlined nodes. */
987         set_irg_visited(irg, get_irg_visited(irg)-1);
988
989         /* -- Performing dead node elimination inlines the graph -- */
990         /* Copies the nodes to the obstack of current_ir_graph. Updates links to new
991            entities. */
992         irg_walk(get_irg_end(called_graph), copy_node_inline, copy_preds,
993                  get_irg_frame_type(called_graph));
994
995         /* Repair called_graph */
996         set_irg_visited(called_graph, get_irg_visited(irg));
997         set_irg_block_visited(called_graph, get_irg_block_visited(irg));
998         set_Block_block_visited(get_irg_start_block(called_graph), 0);
999
1000         /* -- Merge the end of the inlined procedure with the call site -- */
1001         /* We will turn the old Call node into a Tuple with the following
1002            predecessors:
1003            -1:  Block of Tuple.
1004            0: Phi of all Memories of Return statements.
1005            1: Jmp from new Block that merges the control flow from all exception
1006            predecessors of the old end block.
1007            2: Tuple of all arguments.
1008            3: Phi of Exception memories.
1009            In case the old Call directly branches to End on an exception we don't
1010            need the block merging all exceptions nor the Phi of the exception
1011            memories.
1012         */
1013
1014         /* -- Precompute some values -- */
1015         end_bl = get_new_node(get_irg_end_block(called_graph));
1016         end = get_new_node(get_irg_end(called_graph));
1017         arity = get_irn_arity(end_bl);    /* arity = n_exc + n_ret  */
1018         n_res = get_method_n_ress(get_Call_type(call));
1019
1020         res_pred = xmalloc(n_res * sizeof(*res_pred));
1021         cf_pred  = xmalloc(arity * sizeof(*res_pred));
1022
1023         set_irg_current_block(irg, post_bl); /* just to make sure */
1024
1025         /* -- archive keepalives -- */
1026         irn_arity = get_irn_arity(end);
1027         for (i = 0; i < irn_arity; i++) {
1028                 ir_node *ka = get_End_keepalive(end, i);
1029                 if (! is_Bad(ka))
1030                         add_End_keepalive(get_irg_end(irg), ka);
1031         }
1032
1033         /* The new end node will die.  We need not free as the in array is on the obstack:
1034            copy_node() only generated 'D' arrays. */
1035
1036         /* -- Replace Return nodes by Jump nodes. -- */
1037         n_ret = 0;
1038         for (i = 0; i < arity; i++) {
1039                 ir_node *ret;
1040                 ret = get_irn_n(end_bl, i);
1041                 if (is_Return(ret)) {
1042                         cf_pred[n_ret] = new_r_Jmp(irg, get_nodes_block(ret));
1043                         n_ret++;
1044                 }
1045         }
1046         set_irn_in(post_bl, n_ret, cf_pred);
1047
1048         /* -- Build a Tuple for all results of the method.
1049            Add Phi node if there was more than one Return.  -- */
1050         turn_into_tuple(post_call, pn_Call_max);
1051         /* First the Memory-Phi */
1052         n_ret = 0;
1053         for (i = 0; i < arity; i++) {
1054                 ret = get_irn_n(end_bl, i);
1055                 if (is_Return(ret)) {
1056                         cf_pred[n_ret] = get_Return_mem(ret);
1057                         n_ret++;
1058                 }
1059         }
1060         phi = new_Phi(n_ret, cf_pred, mode_M);
1061         set_Tuple_pred(call, pn_Call_M_regular, phi);
1062         /* Conserve Phi-list for further inlinings -- but might be optimized */
1063         if (get_nodes_block(phi) == post_bl) {
1064                 set_irn_link(phi, get_irn_link(post_bl));
1065                 set_irn_link(post_bl, phi);
1066         }
1067         /* Now the real results */
1068         if (n_res > 0) {
1069                 for (j = 0; j < n_res; j++) {
1070                         n_ret = 0;
1071                         for (i = 0; i < arity; i++) {
1072                                 ret = get_irn_n(end_bl, i);
1073                                 if (is_Return(ret)) {
1074                                         cf_pred[n_ret] = get_Return_res(ret, j);
1075                                         n_ret++;
1076                                 }
1077                         }
1078                         if (n_ret > 0)
1079                                 phi = new_Phi(n_ret, cf_pred, get_irn_mode(cf_pred[0]));
1080                         else
1081                                 phi = new_Bad();
1082                         res_pred[j] = phi;
1083                         /* Conserve Phi-list for further inlinings -- but might be optimized */
1084                         if (get_nodes_block(phi) == post_bl) {
1085                                 set_Phi_next(phi, get_Block_phis(post_bl));
1086                                 set_Block_phis(post_bl, phi);
1087                         }
1088                 }
1089                 set_Tuple_pred(call, pn_Call_T_result, new_Tuple(n_res, res_pred));
1090         } else {
1091                 set_Tuple_pred(call, pn_Call_T_result, new_Bad());
1092         }
1093         /* handle the regular call */
1094         set_Tuple_pred(call, pn_Call_X_regular, new_Jmp());
1095
1096         /* For now, we cannot inline calls with value_base */
1097         set_Tuple_pred(call, pn_Call_P_value_res_base, new_Bad());
1098
1099         /* Finally the exception control flow.
1100            We have two (three) possible situations:
1101            First if the Call branches to an exception handler: We need to add a Phi node to
1102            collect the memory containing the exception objects.  Further we need
1103            to add another block to get a correct representation of this Phi.  To
1104            this block we add a Jmp that resolves into the X output of the Call
1105            when the Call is turned into a tuple.
1106            Second the Call branches to End, the exception is not handled.  Just
1107            add all inlined exception branches to the End node.
1108            Third: there is no Exception edge at all. Handle as case two. */
1109         if (exc_handling == exc_handler) {
1110                 n_exc = 0;
1111                 for (i = 0; i < arity; i++) {
1112                         ir_node *ret, *irn;
1113                         ret = get_irn_n(end_bl, i);
1114                         irn = skip_Proj(ret);
1115                         if (is_fragile_op(irn) || is_Raise(irn)) {
1116                                 cf_pred[n_exc] = ret;
1117                                 ++n_exc;
1118                         }
1119                 }
1120                 if (n_exc > 0) {
1121                         new_Block(n_exc, cf_pred);      /* watch it: current_block is changed! */
1122                         set_Tuple_pred(call, pn_Call_X_except, new_Jmp());
1123                         /* The Phi for the memories with the exception objects */
1124                         n_exc = 0;
1125                         for (i = 0; i < arity; i++) {
1126                                 ir_node *ret;
1127                                 ret = skip_Proj(get_irn_n(end_bl, i));
1128                                 if (is_Call(ret)) {
1129                                         cf_pred[n_exc] = new_r_Proj(irg, get_nodes_block(ret), ret, mode_M, 3);
1130                                         n_exc++;
1131                                 } else if (is_fragile_op(ret)) {
1132                                         /* We rely that all cfops have the memory output at the same position. */
1133                                         cf_pred[n_exc] = new_r_Proj(irg, get_nodes_block(ret), ret, mode_M, 0);
1134                                         n_exc++;
1135                                 } else if (is_Raise(ret)) {
1136                                         cf_pred[n_exc] = new_r_Proj(irg, get_nodes_block(ret), ret, mode_M, 1);
1137                                         n_exc++;
1138                                 }
1139                         }
1140                         set_Tuple_pred(call, pn_Call_M_except, new_Phi(n_exc, cf_pred, mode_M));
1141                 } else {
1142                         set_Tuple_pred(call, pn_Call_X_except, new_Bad());
1143                         set_Tuple_pred(call, pn_Call_M_except, new_Bad());
1144                 }
1145         } else {
1146                 ir_node *main_end_bl;
1147                 int main_end_bl_arity;
1148                 ir_node **end_preds;
1149
1150                 /* assert(exc_handling == 1 || no exceptions. ) */
1151                 n_exc = 0;
1152                 for (i = 0; i < arity; i++) {
1153                         ir_node *ret = get_irn_n(end_bl, i);
1154                         ir_node *irn = skip_Proj(ret);
1155
1156                         if (is_fragile_op(irn) || is_Raise(irn)) {
1157                                 cf_pred[n_exc] = ret;
1158                                 n_exc++;
1159                         }
1160                 }
1161                 main_end_bl = get_irg_end_block(irg);
1162                 main_end_bl_arity = get_irn_arity(main_end_bl);
1163                 end_preds =  xmalloc((n_exc + main_end_bl_arity) * sizeof(*end_preds));
1164
1165                 for (i = 0; i < main_end_bl_arity; ++i)
1166                         end_preds[i] = get_irn_n(main_end_bl, i);
1167                 for (i = 0; i < n_exc; ++i)
1168                         end_preds[main_end_bl_arity + i] = cf_pred[i];
1169                 set_irn_in(main_end_bl, n_exc + main_end_bl_arity, end_preds);
1170                 set_Tuple_pred(call, pn_Call_X_except,  new_Bad());
1171                 set_Tuple_pred(call, pn_Call_M_except,  new_Bad());
1172                 free(end_preds);
1173         }
1174         free(res_pred);
1175         free(cf_pred);
1176
1177         /* --  Turn CSE back on. -- */
1178         set_optimize(rem_opt);
1179         current_ir_graph = rem;
1180
1181         return 1;
1182 }
1183
1184 /********************************************************************/
1185 /* Apply inlineing to small methods.                                */
1186 /********************************************************************/
1187
1188 static struct obstack  temp_obst;
1189
1190 /** Represents a possible inlinable call in a graph. */
1191 typedef struct _call_entry call_entry;
1192 struct _call_entry {
1193         ir_node    *call;      /**< the Call node */
1194         ir_graph   *callee;    /**< the callee IR-graph called here */
1195         call_entry *next;      /**< for linking the next one */
1196         int        loop_depth; /**< the loop depth of this call */
1197 };
1198
1199 /**
1200  * environment for inlining small irgs
1201  */
1202 typedef struct _inline_env_t {
1203         struct obstack obst;  /**< an obstack where call_entries are allocated on. */
1204         call_entry *head;     /**< the head of the call entry list */
1205         call_entry *tail;     /**< the tail of the call entry list */
1206 } inline_env_t;
1207
1208 /**
1209  * Returns the irg called from a Call node. If the irg is not
1210  * known, NULL is returned.
1211  *
1212  * @param call  the call node
1213  */
1214 static ir_graph *get_call_called_irg(ir_node *call) {
1215         ir_node *addr;
1216
1217         addr = get_Call_ptr(call);
1218         if (is_Global(addr)) {
1219                 ir_entity *ent = get_Global_entity(addr);
1220                 return get_entity_irg(ent);
1221         }
1222
1223         return NULL;
1224 }
1225
1226 /**
1227  * Walker: Collect all calls to known graphs inside a graph.
1228  */
1229 static void collect_calls(ir_node *call, void *env) {
1230         if (is_Call(call)) {
1231                 ir_graph *called_irg = get_call_called_irg(call);
1232
1233                 if (called_irg != NULL) {
1234                         /* The Call node calls a locally defined method.  Remember to inline. */
1235                         inline_env_t *ienv  = env;
1236                         call_entry   *entry = obstack_alloc(&ienv->obst, sizeof(*entry));
1237                         entry->call       = call;
1238                         entry->callee     = called_irg;
1239                         entry->next       = NULL;
1240                         entry->loop_depth = 0;
1241
1242                         if (ienv->tail == NULL)
1243                                 ienv->head = entry;
1244                         else
1245                                 ienv->tail->next = entry;
1246                         ienv->tail = entry;
1247                 }
1248         }
1249 }
1250
1251 /**
1252  * Inlines all small methods at call sites where the called address comes
1253  * from a Const node that references the entity representing the called
1254  * method.
1255  * The size argument is a rough measure for the code size of the method:
1256  * Methods where the obstack containing the firm graph is smaller than
1257  * size are inlined.
1258  */
1259 void inline_small_irgs(ir_graph *irg, int size) {
1260         ir_graph *rem = current_ir_graph;
1261         inline_env_t env;
1262         call_entry *entry;
1263
1264         current_ir_graph = irg;
1265         /* Handle graph state */
1266         assert(get_irg_phase_state(irg) != phase_building);
1267         free_callee_info(irg);
1268
1269         /* Find Call nodes to inline.
1270            (We can not inline during a walk of the graph, as inlineing the same
1271            method several times changes the visited flag of the walked graph:
1272            after the first inlineing visited of the callee equals visited of
1273            the caller.  With the next inlineing both are increased.) */
1274         obstack_init(&env.obst);
1275         env.head = env.tail = NULL;
1276         irg_walk_graph(irg, NULL, collect_calls, &env);
1277
1278         if (env.head != NULL) {
1279                 /* There are calls to inline */
1280                 collect_phiprojs(irg);
1281                 for (entry = env.head; entry != NULL; entry = entry->next) {
1282                         ir_graph *callee = entry->callee;
1283                         if (((_obstack_memory_used(callee->obst) - (int)obstack_room(callee->obst)) < size) ||
1284                             (get_irg_inline_property(callee) >= irg_inline_forced)) {
1285                                 inline_method(entry->call, callee);
1286                         }
1287                 }
1288         }
1289         obstack_free(&env.obst, NULL);
1290         current_ir_graph = rem;
1291 }
1292
1293 /**
1294  * Environment for inlining irgs.
1295  */
1296 typedef struct {
1297         int n_nodes;             /**< Number of nodes in graph except Id, Tuple, Proj, Start, End. */
1298         int n_blocks;            /**< Number of Blocks in graph without Start and End block. */
1299         int n_nodes_orig;        /**< for statistics */
1300         int n_call_nodes;        /**< Number of Call nodes in the graph. */
1301         int n_call_nodes_orig;   /**< for statistics */
1302         int n_callers;           /**< Number of known graphs that call this graphs. */
1303         int n_callers_orig;      /**< for statistics */
1304         unsigned got_inline:1;   /**< Set, if at least one call inside this graph was inlined. */
1305         unsigned local_vars:1;   /**< Set, if a inlined function gets the address of an inlined variable. */
1306         call_entry *call_head;   /**< The head of the list of all call nodes in this graph. */
1307         call_entry *call_tail;   /**< The tail of the list of all call nodes in this graph .*/
1308         unsigned *local_weights; /**< Once allocated, the beneficial weight for transmitting local addresses. */
1309 } inline_irg_env;
1310
1311 /**
1312  * Allocate a new environment for inlining.
1313  */
1314 static inline_irg_env *alloc_inline_irg_env(void) {
1315         inline_irg_env *env    = obstack_alloc(&temp_obst, sizeof(*env));
1316         env->n_nodes           = -2; /* do not count count Start, End */
1317         env->n_blocks          = -2; /* do not count count Start, End Block */
1318         env->n_nodes_orig      = -2; /* do not count Start, End */
1319         env->call_head         = NULL;
1320         env->call_tail         = NULL;
1321         env->n_call_nodes      = 0;
1322         env->n_call_nodes_orig = 0;
1323         env->n_callers         = 0;
1324         env->n_callers_orig    = 0;
1325         env->got_inline        = 0;
1326         env->local_vars        = 0;
1327         env->local_weights     = NULL;
1328         return env;
1329 }
1330
1331 typedef struct walker_env {
1332         inline_irg_env *x;     /**< the inline environment */
1333         call_entry *last_call; /**< points to the last inserted call */
1334         char ignore_runtime;   /**< the ignore runtime flag */
1335         char ignore_callers;   /**< if set, do change callers data */
1336 } wenv_t;
1337
1338 /**
1339  * post-walker: collect all calls in the inline-environment
1340  * of a graph and sum some statistics.
1341  */
1342 static void collect_calls2(ir_node *call, void *ctx) {
1343         wenv_t         *env = ctx;
1344         inline_irg_env *x = env->x;
1345         ir_opcode      code = get_irn_opcode(call);
1346         ir_graph       *callee;
1347         call_entry     *entry;
1348
1349         /* count meaningful nodes in irg */
1350         if (code != iro_Proj && code != iro_Tuple && code != iro_Sync) {
1351                 if (code != iro_Block) {
1352                         ++x->n_nodes;
1353                         ++x->n_nodes_orig;
1354                 } else {
1355                         ++x->n_blocks;
1356                 }
1357         }
1358
1359         if (code != iro_Call) return;
1360
1361         /* check, if it's a runtime call */
1362         if (env->ignore_runtime) {
1363                 ir_node *symc = get_Call_ptr(call);
1364
1365                 if (is_Global(symc)) {
1366                         ir_entity *ent = get_Global_entity(symc);
1367
1368                         if (get_entity_additional_properties(ent) & mtp_property_runtime)
1369                                 return;
1370                 }
1371         }
1372
1373         /* collect all call nodes */
1374         ++x->n_call_nodes;
1375         ++x->n_call_nodes_orig;
1376
1377         callee = get_call_called_irg(call);
1378         if (callee != NULL) {
1379                 if (! env->ignore_callers) {
1380                         inline_irg_env *callee_env = get_irg_link(callee);
1381                         /* count all static callers */
1382                         ++callee_env->n_callers;
1383                         ++callee_env->n_callers_orig;
1384                 }
1385
1386                 /* link it in the list of possible inlinable entries */
1387                 entry = obstack_alloc(&temp_obst, sizeof(*entry));
1388                 entry->call       = call;
1389                 entry->callee     = callee;
1390                 entry->next       = NULL;
1391                 entry->loop_depth = get_irn_loop(get_nodes_block(call))->depth;
1392
1393                 /* note: we use call_tail here as a pointer to the last inserted */
1394                 if (x->call_head == NULL) {
1395                         x->call_head = entry;
1396                 } else {
1397                         if (entry->loop_depth == env->last_call->loop_depth) {
1398                                 /* same depth as the last one, enqueue after it */
1399                                 entry->next          = env->last_call->next;
1400                                 env->last_call->next = entry;
1401                         } else if (entry->loop_depth > x->call_head->loop_depth) {
1402                                 /* put first */
1403                                 entry->next  = x->call_head;
1404                                 x->call_head = entry;
1405                         } else {
1406                                 /* search the insertion point */
1407                                 call_entry *p;
1408
1409                                 for (p = x->call_head; p->next != NULL; p = p->next)
1410                                         if (entry->loop_depth > p->next->loop_depth)
1411                                                 break;
1412                                 entry->next = p->next;
1413                                 p->next     = entry;
1414                         }
1415                 }
1416                 env->last_call = entry;
1417                 if (entry->next == NULL) {
1418                         /* keep tail up to date */
1419                         x->call_tail = entry;
1420                 }
1421         }
1422 }
1423
1424 /**
1425  * Returns TRUE if the number of callers is 0 in the irg's environment,
1426  * hence this irg is a leave.
1427  */
1428 INLINE static int is_leave(ir_graph *irg) {
1429         inline_irg_env *env = get_irg_link(irg);
1430         return env->n_call_nodes == 0;
1431 }
1432
1433 /**
1434  * Returns TRUE if the number of nodes in the callee is
1435  * smaller then size in the irg's environment.
1436  */
1437 INLINE static int is_smaller(ir_graph *callee, int size) {
1438         inline_irg_env *env = get_irg_link(callee);
1439         return env->n_nodes < size;
1440 }
1441
1442 /**
1443  * Append the nodes of the list src to the nodes of the list in environment dst.
1444  */
1445 static void append_call_list(inline_irg_env *dst, call_entry *src) {
1446         call_entry *entry, *nentry;
1447
1448         /* Note that the src list points to Call nodes in the inlined graph, but
1449            we need Call nodes in our graph. Luckily the inliner leaves this information
1450            in the link field. */
1451         for (entry = src; entry != NULL; entry = entry->next) {
1452                 nentry = obstack_alloc(&temp_obst, sizeof(*nentry));
1453                 nentry->call         = get_irn_link(entry->call);
1454                 nentry->callee       = entry->callee;
1455                 nentry->next         = NULL;
1456                 nentry->loop_depth   = entry->loop_depth;
1457                 dst->call_tail->next = nentry;
1458                 dst->call_tail       = nentry;
1459         }
1460 }
1461
1462 /**
1463  * Add the nodes of the list src in front to the nodes of the list dst.
1464  */
1465 static call_entry *replace_entry_by_call_list(call_entry *dst, call_entry *src) {
1466         call_entry *entry, *nentry, *head, *tail;
1467
1468         /* Note that the src list points to Call nodes in the inlined graph, but
1469            we need Call nodes in our graph. Luckily the inliner leaves this information
1470            in the link field. */
1471         head = tail = NULL;
1472         for (entry = src; entry != NULL; entry = entry->next) {
1473                 nentry = obstack_alloc(&temp_obst, sizeof(*nentry));
1474                 nentry->call         = get_irn_link(entry->call);
1475                 nentry->callee       = entry->callee;
1476                 nentry->next         = NULL;
1477                 nentry->loop_depth   = entry->loop_depth + dst->loop_depth;
1478                 if (head == NULL)
1479                         head = nentry;
1480                 else
1481                         tail->next = nentry;
1482                 tail = nentry;
1483         }
1484         /* skip the head of dst */
1485         if (head != NULL) {
1486                 tail->next = dst->next;
1487         } else {
1488                 head = dst->next;
1489         }
1490         return head;
1491 }
1492
1493 /*
1494  * Inlines small leave methods at call sites where the called address comes
1495  * from a Const node that references the entity representing the called
1496  * method.
1497  * The size argument is a rough measure for the code size of the method:
1498  * Methods where the obstack containing the firm graph is smaller than
1499  * size are inlined.
1500  */
1501 void inline_leave_functions(int maxsize, int leavesize, int size, int ignore_runtime) {
1502         inline_irg_env   *env;
1503         ir_graph         *irg;
1504         int              i, n_irgs;
1505         ir_graph         *rem;
1506         int              did_inline;
1507         wenv_t           wenv;
1508         call_entry       *entry, *tail;
1509         const call_entry *centry;
1510         pmap             *copied_graphs;
1511         pmap_entry       *pm_entry;
1512
1513         rem = current_ir_graph;
1514         obstack_init(&temp_obst);
1515
1516         /* a map for the copied graphs, used to inline recursive calls */
1517         copied_graphs = pmap_create();
1518
1519         /* extend all irgs by a temporary data structure for inlining. */
1520         n_irgs = get_irp_n_irgs();
1521         for (i = 0; i < n_irgs; ++i)
1522                 set_irg_link(get_irp_irg(i), alloc_inline_irg_env());
1523
1524         /* Precompute information in temporary data structure. */
1525         wenv.ignore_runtime = ignore_runtime;
1526         wenv.ignore_callers = 0;
1527         for (i = 0; i < n_irgs; ++i) {
1528                 ir_graph *irg = get_irp_irg(i);
1529
1530                 assert(get_irg_phase_state(irg) != phase_building);
1531                 free_callee_info(irg);
1532
1533                 assure_cf_loop(irg);
1534                 wenv.x = get_irg_link(irg);
1535                 irg_walk_graph(irg, NULL, collect_calls2, &wenv);
1536         }
1537
1538         /* -- and now inline. -- */
1539
1540         /* Inline leaves recursively -- we might construct new leaves. */
1541         do {
1542                 did_inline = 0;
1543
1544                 for (i = 0; i < n_irgs; ++i) {
1545                         ir_node *call;
1546                         int phiproj_computed = 0;
1547
1548                         current_ir_graph = get_irp_irg(i);
1549                         env = (inline_irg_env *)get_irg_link(current_ir_graph);
1550
1551                         tail = NULL;
1552                         for (entry = env->call_head; entry != NULL; entry = entry->next) {
1553                                 ir_graph *callee;
1554
1555                                 if (env->n_nodes > maxsize) break;
1556
1557                                 call   = entry->call;
1558                                 callee = entry->callee;
1559
1560                                 if (is_leave(callee) && (
1561                                     is_smaller(callee, leavesize) || (get_irg_inline_property(callee) >= irg_inline_forced))) {
1562                                         if (!phiproj_computed) {
1563                                                 phiproj_computed = 1;
1564                                                 collect_phiprojs(current_ir_graph);
1565                                         }
1566                                         did_inline = inline_method(call, callee);
1567
1568                                         if (did_inline) {
1569                                                 inline_irg_env *callee_env = (inline_irg_env *)get_irg_link(callee);
1570
1571                                                 /* was inlined, must be recomputed */
1572                                                 phiproj_computed = 0;
1573
1574                                                 /* Do some statistics */
1575                                                 env->got_inline = 1;
1576                                                 --env->n_call_nodes;
1577                                                 env->n_nodes += callee_env->n_nodes;
1578                                                 --callee_env->n_callers;
1579
1580                                                 /* remove this call from the list */
1581                                                 if (tail != NULL)
1582                                                         tail->next = entry->next;
1583                                                 else
1584                                                         env->call_head = entry->next;
1585                                                 continue;
1586                                         }
1587                                 }
1588                                 tail = entry;
1589                         }
1590                         env->call_tail = tail;
1591                 }
1592         } while (did_inline);
1593
1594         /* inline other small functions. */
1595         for (i = 0; i < n_irgs; ++i) {
1596                 ir_node *call;
1597                 int phiproj_computed = 0;
1598
1599                 current_ir_graph = get_irp_irg(i);
1600                 env = (inline_irg_env *)get_irg_link(current_ir_graph);
1601
1602                 /* note that the list of possible calls is updated during the process */
1603                 tail = NULL;
1604                 for (entry = env->call_head; entry != NULL; entry = entry->next) {
1605                         ir_graph   *callee;
1606                         pmap_entry *e;
1607
1608                         call   = entry->call;
1609                         callee = entry->callee;
1610
1611                         e = pmap_find(copied_graphs, callee);
1612                         if (e != NULL) {
1613                                 /*
1614                                  * Remap callee if we have a copy.
1615                                  * FIXME: Should we do this only for recursive Calls ?
1616                                  */
1617                                 callee = e->value;
1618                         }
1619
1620                         if (((is_smaller(callee, size) && (env->n_nodes < maxsize)) ||    /* small function */
1621                                 (get_irg_inline_property(callee) >= irg_inline_forced))) {
1622                                 if (current_ir_graph == callee) {
1623                                         /*
1624                                          * Recursive call: we cannot directly inline because we cannot walk
1625                                          * the graph and change it. So we have to make a copy of the graph
1626                                          * first.
1627                                          */
1628
1629                                         inline_irg_env *callee_env;
1630                                         ir_graph       *copy;
1631
1632                                         /*
1633                                          * No copy yet, create one.
1634                                          * Note that recursive methods are never leaves, so it is sufficient
1635                                          * to test this condition here.
1636                                          */
1637                                         copy = create_irg_copy(callee);
1638
1639                                         /* create_irg_copy() destroys the Proj links, recompute them */
1640                                         phiproj_computed = 0;
1641
1642                                         /* allocate new environment */
1643                                         callee_env = alloc_inline_irg_env();
1644                                         set_irg_link(copy, callee_env);
1645
1646                                         assure_cf_loop(irg);
1647                                         wenv.x              = callee_env;
1648                                         wenv.ignore_callers = 1;
1649                                         irg_walk_graph(copy, NULL, collect_calls2, &wenv);
1650
1651                                         /*
1652                                          * Enter the entity of the original graph. This is needed
1653                                          * for inline_method(). However, note that ent->irg still points
1654                                          * to callee, NOT to copy.
1655                                          */
1656                                         set_irg_entity(copy, get_irg_entity(callee));
1657
1658                                         pmap_insert(copied_graphs, callee, copy);
1659                                         callee = copy;
1660
1661                                         /* we have only one caller: the original graph */
1662                                         callee_env->n_callers      = 1;
1663                                         callee_env->n_callers_orig = 1;
1664                                 }
1665                                 if (! phiproj_computed) {
1666                                         phiproj_computed = 1;
1667                                         collect_phiprojs(current_ir_graph);
1668                                 }
1669                                 did_inline = inline_method(call, callee);
1670                                 if (did_inline) {
1671                                         inline_irg_env *callee_env = (inline_irg_env *)get_irg_link(callee);
1672
1673                                         /* was inlined, must be recomputed */
1674                                         phiproj_computed = 0;
1675
1676                                         /* callee was inline. Append it's call list. */
1677                                         env->got_inline = 1;
1678                                         --env->n_call_nodes;
1679                                         append_call_list(env, callee_env->call_head);
1680                                         env->n_call_nodes += callee_env->n_call_nodes;
1681                                         env->n_nodes += callee_env->n_nodes;
1682                                         --callee_env->n_callers;
1683
1684                                         /* after we have inlined callee, all called methods inside callee
1685                                            are now called once more */
1686                                         for (centry = callee_env->call_head; centry != NULL; centry = centry->next) {
1687                                                 inline_irg_env *penv = get_irg_link(centry->callee);
1688                                                 ++penv->n_callers;
1689                                         }
1690
1691                                         /* remove this call from the list */
1692                                         if (tail != NULL)
1693                                                 tail->next = entry->next;
1694                                         else
1695                                                 env->call_head = entry->next;
1696                                         continue;
1697                                 }
1698                         }
1699                         tail = entry;
1700                 }
1701                 env->call_tail = tail;
1702         }
1703
1704         for (i = 0; i < n_irgs; ++i) {
1705                 irg = get_irp_irg(i);
1706                 env = (inline_irg_env *)get_irg_link(irg);
1707
1708                 if (env->got_inline) {
1709                         optimize_graph_df(irg);
1710                         optimize_cf(irg);
1711                 }
1712                 if (env->got_inline || (env->n_callers_orig != env->n_callers)) {
1713                         DB((dbg, LEVEL_1, "Nodes:%3d ->%3d, calls:%3d ->%3d, callers:%3d ->%3d, -- %s\n",
1714                         env->n_nodes_orig, env->n_nodes, env->n_call_nodes_orig, env->n_call_nodes,
1715                         env->n_callers_orig, env->n_callers,
1716                         get_entity_name(get_irg_entity(irg))));
1717                 }
1718         }
1719
1720         /* kill the copied graphs: we don't need them anymore */
1721         foreach_pmap(copied_graphs, pm_entry) {
1722                 ir_graph *copy = pm_entry->value;
1723
1724                 /* reset the entity, otherwise it will be deleted in the next step ... */
1725                 set_irg_entity(copy, NULL);
1726                 free_ir_graph(copy);
1727         }
1728         pmap_destroy(copied_graphs);
1729
1730         obstack_free(&temp_obst, NULL);
1731         current_ir_graph = rem;
1732 }
1733
1734 /**
1735  * Calculate the parameter weights for transmitting the address of a local variable.
1736  */
1737 static unsigned calc_method_local_weight(ir_node *arg) {
1738         int      i, j, k;
1739         unsigned v, weight = 0;
1740
1741         for (i = get_irn_n_outs(arg) - 1; i >= 0; --i) {
1742                 ir_node *succ = get_irn_out(arg, i);
1743
1744                 switch (get_irn_opcode(succ)) {
1745                 case iro_Load:
1746                 case iro_Store:
1747                         /* Loads and Store can be removed */
1748                         weight += 3;
1749                         break;
1750                 case iro_Sel:
1751                         /* check if all args are constant */
1752                         for (j = get_Sel_n_indexs(succ) - 1; j >= 0; --j) {
1753                                 ir_node *idx = get_Sel_index(succ, j);
1754                                 if (! is_Const(idx))
1755                                         return 0;
1756                         }
1757                         /* Check users on this Sel. Note: if a 0 is returned here, there was
1758                            some unsupported node. */
1759                         v = calc_method_local_weight(succ);
1760                         if (v == 0)
1761                                 return 0;
1762                         /* we can kill one Sel with constant indexes, this is cheap */
1763                         weight += v + 1;
1764                         break;
1765                 case iro_Id:
1766                         /* when looking backward we might find Id nodes */
1767                         weight += calc_method_local_weight(succ);
1768                         break;
1769                 case iro_Tuple:
1770                         /* unoptimized tuple */
1771                         for (j = get_Tuple_n_preds(succ) - 1; j >= 0; --j) {
1772                                 ir_node *pred = get_Tuple_pred(succ, j);
1773                                 if (pred == arg) {
1774                                         /* look for Proj(j) */
1775                                         for (k = get_irn_n_outs(succ) - 1; k >= 0; --k) {
1776                                                 ir_node *succ_succ = get_irn_out(succ, k);
1777                                                 if (is_Proj(succ_succ)) {
1778                                                         if (get_Proj_proj(succ_succ) == j) {
1779                                                                 /* found */
1780                                                                 weight += calc_method_local_weight(succ_succ);
1781                                                         }
1782                                                 } else {
1783                                                         /* this should NOT happen */
1784                                                         return 0;
1785                                                 }
1786                                         }
1787                                 }
1788                         }
1789                         break;
1790                 default:
1791                         /* any other node: unsupported yet or bad. */
1792                         return 0;
1793                 }
1794         }
1795         return weight;
1796 }
1797
1798 /**
1799  * Calculate the parameter weights for transmitting the address of a local variable.
1800  */
1801 static void analyze_irg_local_weights(inline_irg_env *env, ir_graph *irg) {
1802         ir_entity *ent = get_irg_entity(irg);
1803         ir_type  *mtp;
1804         int      nparams, i, proj_nr;
1805         ir_node  *irg_args, *arg;
1806
1807         mtp      = get_entity_type(ent);
1808         nparams  = get_method_n_params(mtp);
1809
1810         /* allocate a new array. currently used as 'analysed' flag */
1811         env->local_weights = NEW_ARR_D(unsigned, &temp_obst, nparams);
1812
1813         /* If the method haven't parameters we have nothing to do. */
1814         if (nparams <= 0)
1815                 return;
1816
1817         assure_irg_outs(irg);
1818         irg_args = get_irg_args(irg);
1819         for (i = get_irn_n_outs(irg_args) - 1; i >= 0; --i) {
1820                 arg     = get_irn_out(irg_args, i);
1821                 proj_nr = get_Proj_proj(arg);
1822                 env->local_weights[proj_nr] = calc_method_local_weight(arg);
1823         }
1824 }
1825
1826 /**
1827  * Calculate the benefice for transmitting an local variable address.
1828  * After inlining, the local variable might be transformed into a
1829  * SSA variable by scalar_replacement().
1830  */
1831 static unsigned get_method_local_adress_weight(ir_graph *callee, int pos) {
1832         inline_irg_env *env = get_irg_link(callee);
1833
1834         if (env->local_weights != NULL) {
1835                 if (pos < ARR_LEN(env->local_weights))
1836                         return env->local_weights[pos];
1837                 return 0;
1838         }
1839
1840         analyze_irg_local_weights(env, callee);
1841
1842         if (pos < ARR_LEN(env->local_weights))
1843                 return env->local_weights[pos];
1844         return 0;
1845 }
1846
1847 /**
1848  * calculate a benefice value for inlining the given call.
1849  */
1850 static int calc_inline_benefice(ir_node *call, ir_graph *callee, unsigned *local_adr) {
1851         ir_entity *ent = get_irg_entity(callee);
1852         ir_node   *frame_ptr;
1853         ir_type   *mtp;
1854         int       weight = 0;
1855         int       i, n_params;
1856         unsigned  cc, v;
1857
1858         inline_irg_env *curr_env, *callee_env;
1859
1860         if (get_entity_additional_properties(ent) & mtp_property_noreturn) {
1861                 /* do NOT inline noreturn calls */
1862                 return INT_MIN;
1863         }
1864
1865         /* costs for every passed parameter */
1866         n_params = get_Call_n_params(call);
1867         mtp      = get_entity_type(ent);
1868         cc       = get_method_calling_convention(mtp);
1869         if (cc & cc_reg_param) {
1870                 /* register parameter, smaller costs for register parameters */
1871                 int max_regs = cc & ~cc_bits;
1872
1873                 if (max_regs < n_params)
1874                         weight += max_regs * 2 + (n_params - max_regs) * 5;
1875                 else
1876                         weight += n_params * 2;
1877         } else {
1878                 /* parameters are passed an stack */
1879                 weight += 5 * n_params;
1880         }
1881
1882         /* constant parameters improve the benefice */
1883         frame_ptr = get_irg_frame(current_ir_graph);
1884         for (i = 0; i < n_params; ++i) {
1885                 ir_node *param = get_Call_param(call, i);
1886
1887                 if (is_Const(param) || is_SymConst(param))
1888                         weight += get_method_param_weight(ent, i);
1889                 else if (is_Sel(param) && get_Sel_ptr(param) == frame_ptr) {
1890                         /*
1891                          * An address of a local variable is transmitted. After inlining,
1892                          * scalar_replacement might be able to remove the local variable,
1893                          * so honor this.
1894                          */
1895                         v = get_method_local_adress_weight(callee, i);
1896                         weight += v;
1897                         if (v > 0)
1898                                 *local_adr = 1;
1899                 }
1900         }
1901
1902         callee_env = get_irg_link(callee);
1903         if (get_entity_visibility(ent) == visibility_local &&
1904             callee_env->n_callers_orig == 1 &&
1905             callee != current_ir_graph) {
1906                 /* we are the only caller, give big bonus */
1907                 weight += 5000;
1908         }
1909
1910         /* do not inline big functions */
1911         weight -= callee_env->n_nodes;
1912
1913         /* reduce the benefice if the current function is already big */
1914         curr_env = get_irg_link(current_ir_graph);
1915         weight -= curr_env->n_nodes / 100;
1916
1917         /* give a bonus for functions with one block */
1918         if (callee_env->n_blocks == 1)
1919                 weight = weight * 3 / 2;
1920
1921         /* and one for small functions: we want them to be inlined in mostly every case */
1922         else if (callee_env->n_nodes < 20)
1923                 weight += 5000;
1924
1925         /* and finally for leaves: they do not increase the register pressure
1926            because of callee safe registers */
1927         else if (callee_env->n_call_nodes == 0)
1928                 weight += 25;
1929
1930         return weight;
1931 }
1932
1933 /**
1934  * Heuristic inliner. Calculates a benefice value for every call and inlines
1935  * those calls with a value higher than the threshold.
1936  */
1937 void inline_functions(int maxsize, int inline_threshold) {
1938         inline_irg_env   *env;
1939         int              i, n_irgs;
1940         ir_graph         *rem;
1941         int              did_inline;
1942         wenv_t           wenv;
1943         call_entry       *curr_call, **last_call;
1944         const call_entry *centry;
1945         pmap             *copied_graphs;
1946         pmap_entry       *pm_entry;
1947
1948         rem = current_ir_graph;
1949         obstack_init(&temp_obst);
1950
1951         /* a map for the copied graphs, used to inline recursive calls */
1952         copied_graphs = pmap_create();
1953
1954         /* extend all irgs by a temporary data structure for inlining. */
1955         n_irgs = get_irp_n_irgs();
1956         for (i = 0; i < n_irgs; ++i)
1957                 set_irg_link(get_irp_irg(i), alloc_inline_irg_env());
1958
1959         /* Precompute information in temporary data structure. */
1960         wenv.ignore_runtime = 0;
1961         wenv.ignore_callers = 0;
1962         for (i = 0; i < n_irgs; ++i) {
1963                 ir_graph *irg = get_irp_irg(i);
1964
1965                 assert(get_irg_phase_state(irg) != phase_building);
1966                 free_callee_info(irg);
1967
1968                 wenv.x         = get_irg_link(irg);
1969                 wenv.last_call = NULL;
1970                 assure_cf_loop(irg);
1971                 irg_walk_graph(irg, NULL, collect_calls2, &wenv);
1972         }
1973
1974         /* -- and now inline. -- */
1975         for (i = 0; i < n_irgs; ++i) {
1976                 int      phiproj_computed = 0;
1977                 ir_node  *call;
1978                 ir_graph *irg = get_irp_irg(i);
1979
1980                 current_ir_graph = irg;
1981                 env = get_irg_link(irg);
1982
1983                 /* note that the list of possible calls is updated during the process */
1984                 last_call = &env->call_head;
1985                 for (curr_call = env->call_head; curr_call != NULL;) {
1986                         ir_graph   *callee;
1987                         pmap_entry *e;
1988                         int        benefice;
1989                         unsigned   local_adr;
1990
1991                         if (env->n_nodes > maxsize) break;
1992
1993                         call   = curr_call->call;
1994                         callee = curr_call->callee;
1995
1996                         e = pmap_find(copied_graphs, callee);
1997                         if (e != NULL) {
1998                                 /*
1999                                 * Remap callee if we have a copy.
2000                                 * FIXME: Should we do this only for recursive Calls ?
2001                                 */
2002                                 callee = e->value;
2003                         }
2004
2005                         /* calculate the benefice on the original call to prevent excessive inlining */
2006                         local_adr = 0;
2007                         benefice = calc_inline_benefice(call, callee, &local_adr);
2008                         DB((dbg, LEVEL_2, "In %+F Call %+F has benefice %d\n", irg, callee, benefice));
2009
2010                         if (benefice > -inline_threshold ||
2011                                 (get_irg_inline_property(callee) >= irg_inline_forced)) {
2012                                 if (current_ir_graph == callee) {
2013                                         /*
2014                                          * Recursive call: we cannot directly inline because we cannot walk
2015                                          * the graph and change it. So we have to make a copy of the graph
2016                                          * first.
2017                                          */
2018
2019                                         inline_irg_env *callee_env;
2020                                         ir_graph       *copy;
2021
2022                                         /*
2023                                          * No copy yet, create one.
2024                                          * Note that recursive methods are never leaves, so it is sufficient
2025                                          * to test this condition here.
2026                                          */
2027                                         copy = create_irg_copy(callee);
2028
2029                                         /* create_irg_copy() destroys the Proj links, recompute them */
2030                                         phiproj_computed = 0;
2031
2032                                         /* allocate new environment */
2033                                         callee_env = alloc_inline_irg_env();
2034                                         set_irg_link(copy, callee_env);
2035
2036                                         assure_cf_loop(copy);
2037                                         wenv.x              = callee_env;
2038                                         wenv.ignore_callers = 1;
2039                                         irg_walk_graph(copy, NULL, collect_calls2, &wenv);
2040
2041                                         /*
2042                                          * Enter the entity of the original graph. This is needed
2043                                          * for inline_method(). However, note that ent->irg still points
2044                                          * to callee, NOT to copy.
2045                                          */
2046                                         set_irg_entity(copy, get_irg_entity(callee));
2047
2048                                         pmap_insert(copied_graphs, callee, copy);
2049                                         callee = copy;
2050
2051                                         /* we have only one caller: the original graph */
2052                                         callee_env->n_callers      = 1;
2053                                         callee_env->n_callers_orig = 1;
2054                                 }
2055                                 if (! phiproj_computed) {
2056                                         phiproj_computed = 1;
2057                                         collect_phiprojs(current_ir_graph);
2058                                 }
2059                                 did_inline = inline_method(call, callee);
2060                                 if (did_inline) {
2061                                         inline_irg_env *callee_env = (inline_irg_env *)get_irg_link(callee);
2062
2063                                         /* was inlined, must be recomputed */
2064                                         phiproj_computed = 0;
2065
2066                                         /* after we have inlined callee, all called methods inside callee
2067                                         are now called once more */
2068                                         for (centry = callee_env->call_head; centry != NULL; centry = centry->next) {
2069                                                 inline_irg_env *penv = get_irg_link(centry->callee);
2070                                                 ++penv->n_callers;
2071                                         }
2072
2073                                         /* callee was inline. Append it's call list. */
2074                                         env->got_inline = 1;
2075                                         if (local_adr)
2076                                                 env->local_vars = 1;
2077                                         --env->n_call_nodes;
2078                                         curr_call = replace_entry_by_call_list(curr_call, callee_env->call_head);
2079                                         env->n_call_nodes += callee_env->n_call_nodes;
2080                                         env->n_nodes += callee_env->n_nodes;
2081                                         --callee_env->n_callers;
2082
2083                                         /* remove the current call entry from the list */
2084                                         *last_call = curr_call;
2085                                         continue;
2086                                 }
2087                         }
2088                         last_call = &curr_call->next;
2089                         curr_call = curr_call->next;
2090                 }
2091
2092                 if (env->got_inline) {
2093                         /* this irg got calls inlined: optimize it */
2094
2095                         /* scalar replacement does not work well with Tuple nodes, so optimize them away */
2096                         optimize_graph_df(irg);
2097
2098                         if (env->local_vars) {
2099                                 if (scalar_replacement_opt(irg)) {
2100                                         optimize_graph_df(irg);
2101                                 }
2102                         }
2103                         optimize_cf(irg);
2104                 }
2105                 if (env->got_inline || (env->n_callers_orig != env->n_callers)) {
2106                         DB((dbg, LEVEL_1, "Nodes:%3d ->%3d, calls:%3d ->%3d, callers:%3d ->%3d, -- %s\n",
2107                         env->n_nodes_orig, env->n_nodes, env->n_call_nodes_orig, env->n_call_nodes,
2108                         env->n_callers_orig, env->n_callers,
2109                         get_entity_name(get_irg_entity(irg))));
2110                 }
2111         }
2112
2113         /* kill the copied graphs: we don't need them anymore */
2114         foreach_pmap(copied_graphs, pm_entry) {
2115                 ir_graph *copy = pm_entry->value;
2116
2117                 /* reset the entity, otherwise it will be deleted in the next step ... */
2118                 set_irg_entity(copy, NULL);
2119                 free_ir_graph(copy);
2120         }
2121         pmap_destroy(copied_graphs);
2122
2123         obstack_free(&temp_obst, NULL);
2124         current_ir_graph = rem;
2125 }
2126
2127 void firm_init_inline(void) {
2128         FIRM_DBG_REGISTER(dbg, "firm.opt.inline");
2129 }