- moved pass constructors from irtools to irpass
[libfirm] / include / libfirm / iroptimize.h
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   Available Optimisations of libFirm.
23  * @version $Id$
24  */
25 #ifndef FIRM_IROPTIMIZE_H
26 #define FIRM_IROPTIMIZE_H
27
28 #include "firm_types.h"
29
30 /**
31  * Control flow optimization.
32  *
33  * Removes empty blocks doing if simplifications and loop simplifications.
34  * A block is empty if it contains only a Jmp node and Phi nodes.
35  * Merges single entry single exit blocks with their predecessor
36  * and propagates dead control flow by calling equivalent_node().
37  * Independent of compiler flag it removes Tuples from cf edges,
38  * Bad predecessors from Blocks and Phis, and unnecessary predecessors of End.
39  *
40  * @bug So far destroys backedge information.
41  * @bug Chokes on Id nodes if called in a certain order with other
42  *      optimizations.  Call local_optimize_graph() before to remove
43  *      Ids.
44  */
45 void optimize_cf(ir_graph *irg);
46
47 /**
48  * Creates an ir_graph pass for optimize_cf().
49  *
50  * @param name     the name of this pass or NULL
51  *
52  * @return  the newly created ir_graph pass
53  */
54 ir_graph_pass_t *optimize_cf_pass(const char *name);
55
56 /**
57  * Perform path-sensitive jump threading on the given graph.
58  *
59  * @param irg  the graph
60  */
61 void opt_jumpthreading(ir_graph* irg);
62
63 /**
64  * Creates an ir_graph pass for opt_jumpthreading().
65  *
66  * @param name     the name of this pass or NULL
67  *
68  * @return  the newly created ir_graph pass
69  */
70 ir_graph_pass_t *opt_jumpthreading_pass(const char *name);
71
72 /**
73  * Try to simplify boolean expression in the given ir graph.
74  * eg. x < 5 && x < 6 becomes x < 5
75  *
76  * @param irg  the graph
77  */
78 void opt_bool(ir_graph *irg);
79
80 /**
81  * Creates an ir_graph pass for opt_bool().
82  *
83  * @param name     the name of this pass or NULL
84  *
85  * @return  the newly created ir_graph pass
86  */
87 ir_graph_pass_t *opt_bool_pass(const char *name);
88
89 /**
90  * Try to reduce the number of conv nodes in the given ir graph.
91  *
92  * @param irg  the graph
93  *
94  * @return non-zero if the optimization could be applied, 0 else
95  */
96 int conv_opt(ir_graph *irg);
97
98 /**
99  * Creates an ir_graph pass for conv_opt().
100  *
101  * @param name     the name of this pass or NULL
102  *
103  * @return  the newly created ir_graph pass
104  */
105 ir_graph_pass_t *conv_opt_pass(const char *name);
106
107 /**
108  * Do the scalar replacement optimization.
109  * Make a date flow analyze and split the
110  * data flow edges.
111  *
112  * @param irg  the graph which should be optimized
113  */
114 void data_flow_scalar_replacement_opt(ir_graph *irg);
115
116 /**
117  * A callback that checks whether a entity is an allocation
118  * routine.
119  */
120 typedef int (*check_alloc_entity_func)(ir_entity *ent);
121
122 /**
123  * Do simple and fast escape analysis for one graph.
124  *
125  * @param irg       the graph
126  * @param callback  a callback function to check whether a
127  *                  given entity is a allocation call
128  */
129 void escape_enalysis_irg(ir_graph *irg, check_alloc_entity_func callback);
130
131 /**
132  * Do simple and fast escape analysis for all graphs.
133  *
134  * This optimization implements a simple and fast but inexact
135  * escape analysis. Some addresses might be marked as 'escaped' even
136  * if they are not.
137  * The advantage is a low memory footprint and fast speed.
138  *
139  * @param run_scalar_replace  if this flag in non-zero, scalar
140  *                            replacement optimization is run on graphs with removed
141  *                            allocation
142  * @param callback            a callback function to check whether a
143  *                            given entity is a allocation call
144  *
145  * This optimization removes allocation which are not used (rare) and replace
146  * allocation that can be proved dead at the end of the graph which stack variables.
147  *
148  * The creation of stack variable allows scalar replacement to be run only
149  * on those graphs that have been changed.
150  *
151  * This is most effective on Java where no other stack variables exists.
152  */
153 void escape_analysis(int run_scalar_replace, check_alloc_entity_func callback);
154
155 /**
156  * Optimize function calls by handling const functions.
157  *
158  * This optimization first detects all "const functions", i.e.,
159  * IR graphs that neither read nor write memory (and hence did
160  * not create exceptions, as these use memory in Firm).
161  *
162  * The result of calls to such functions depends only on its
163  * arguments, hence those calls are no more pinned.
164  *
165  * This is a rather strong criteria, so do not expect that a
166  * lot of functions will be found. Moreover, all of them might
167  * already be inlined if inlining is activated.
168  * Anyway, it might be good for handling builtin's or pseudo-graphs,
169  * even if the later read/write memory (but we know how).
170  *
171  * This optimizations read the irg_const_function property of
172  * entities and and sets the irg_const_function property of
173  * graphs.
174  *
175  * If callee information is valid, we also optimize polymorphic Calls.
176  *
177  * @param force_run  if non-zero, an optimization run is started even
178  *                   if no const function graph was detected.
179  *                   Else calls are only optimized if at least one
180  *                   const function graph was detected.
181  * @param callback   a callback function to check whether a
182  *                   given entity is a allocation call
183  *
184  * If the frontend created external entities with the irg_const_function
185  * property set, the force_run parameter should be set, else
186  * should be unset.
187  *
188  * @note This optimization destroys the link fields of nodes.
189  */
190 void optimize_funccalls(int force_run, check_alloc_entity_func callback);
191
192 /**
193  * Creates an ir_prog pass for optimize_funccalls().
194  *
195  * @param name       the name of this pass or NULL
196  * @param force_run  if non-zero, an optimization run is started even
197  *                   if no const function graph was detected.
198  *                   Else calls are only optimized if at least one
199  *                   const function graph was detected.
200  * @param callback   a callback function to check whether a
201  *                   given entity is a allocation call
202  *
203  * @return  the newly created ir_prog pass
204  */
205 ir_prog_pass_t *optimize_funccalls_pass(
206         const char *name,
207         int force_run, check_alloc_entity_func callback);
208
209 /**
210  * Does Partial Redundancy Elimination combined with
211  * Global Value Numbering.
212  * Can be used to replace place_code() completely.
213  *
214  * Based on VanDrunen and Hosking 2004.
215  *
216  * @param irg  the graph
217  */
218 void do_gvn_pre(ir_graph *irg);
219
220 /**
221  * Creates an ir_graph pass for do_gvn_pre().
222  *
223  * @param dump     should this pass result be dumped?
224  *
225  * @return  the newly created ir_graph pass
226  */
227 ir_graph_pass_t *do_gvn_pre_pass(const char *name);
228
229 /**
230  * This function is called to evaluate, if a mux can build
231  * of the current architecture.
232  * If it returns non-zero, a mux is created, else the code
233  * is not modified.
234  * @param sel        A selector of a Cond.
235  * @param phi_list   List of Phi nodes about to be converted (linked via get_Phi_next() field)
236  * @param i          First data predecessor involved in if conversion
237  * @param j          Second data predecessor involved in if conversion
238  */
239 typedef int (*arch_allow_ifconv_func)(ir_node *sel, ir_node* phi_list, int i, int j);
240
241 /**
242  * The parameters structure.
243  */
244 struct ir_settings_if_conv_t {
245         int                 max_depth;       /**< The maximum depth up to which expressions
246                                                are examined when it has to be decided if they
247                                                can be placed into another block. */
248         arch_allow_ifconv_func allow_ifconv; /**< Evaluator function, if not set all possible Psi
249                                                nodes will be created. */
250 };
251
252 /**
253  * Perform If conversion on a graph.
254  *
255  * @param irg The graph.
256  * @param params The parameters for the if conversion.
257  *
258  * Cannot handle blocks with Bad control predecessors, so call it after control
259  * flow optimization.
260  */
261 void opt_if_conv(ir_graph *irg, const ir_settings_if_conv_t *params);
262
263 /**
264  * Creates an ir_graph pass for opt_if_conv().
265  *
266  * @param name     the name of this pass or NULL
267  * @param params   The parameters for the if conversion.
268  *
269  * @return  the newly created ir_graph pass
270  */
271 ir_graph_pass_t *opt_if_conv_pass(
272         const char *name, const ir_settings_if_conv_t *params);
273
274 void opt_sync(ir_graph *irg);
275
276 /**
277  * Creates an ir_graph pass for opt_sync().
278  *
279  * @param name     the name of this pass or NULL
280  *
281  * @return  the newly created ir_graph pass
282  */
283 ir_graph_pass_t *opt_sync_pass(const char *name);
284
285 /*
286  * Check if we can replace the load by a given const from
287  * the const code irg.
288  *
289  * @param load   the load to replace
290  * @param c      the constant
291  *
292  * @return in the modes match or can be transformed using a reinterpret cast
293  *         returns a copy of the constant (possibly Conv'ed) on the
294  *         current_ir_graph
295  */
296 ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c);
297
298 /**
299  * Load/Store optimization.
300  *
301  * Removes redundant non-volatile Loads and Stores.
302  * May introduce Bad nodes if exceptional control flow
303  * is removed. The following cases are optimized:
304  *
305  * Load without result: A Load which has only a memory use
306  *   is removed.
307  *
308  * Load after Store: A Load after a Store is removed, if
309  *   the Load doesn't have an exception handler OR is in
310  *   the same block as the Store.
311  *
312  * Load after Load: A Load after a Load is removed, if the
313  *   Load doesn't have an exception handler OR is in the
314  *   same block as the previous Load.
315  *
316  * Store before Store: A Store immediately before another
317  *   Store in the same block is removed, if the Store doesn't
318  *   have an exception handler.
319  *
320  * Store after Load: A Store after a Load is removed, if the
321  *   Store doesn't have an exception handler.
322  *
323  * @return non-zero if the optimization could be applied, 0 else
324  */
325 int optimize_load_store(ir_graph *irg);
326
327 /**
328  * Creates an ir_graph pass for optimize_load_store().
329  *
330  * @param name     the name of this pass or NULL
331  *
332  * @return  the newly created ir_graph pass
333  */
334 ir_graph_pass_t *optimize_load_store_pass(const char *name);
335
336 /**
337  * New experimental alternative to optimize_load_store.
338  * Based on a dataflow analysis, so load/stores are moved out of loops
339  * where possible
340  */
341 int opt_ldst(ir_graph *irg);
342
343 /**
344  * Creates an ir_graph pass for opt_ldst().
345  *
346  * @param name     the name of this pass or NULL
347  *
348  * @return  the newly created ir_graph pass
349  */
350 ir_graph_pass_t *opt_ldst_pass(const char *name);
351
352 /**
353  * Do Loop unrolling in the given graph.
354  */
355 void optimize_loop_unrolling(ir_graph *irg);
356
357 /**
358  * Creates an ir_graph pass for optimize_loop_unrolling().
359  *
360  * @param name     the name of this pass or NULL
361  *
362  * @return  the newly created ir_graph pass
363  */
364 ir_graph_pass_t *optimize_loop_unrolling_pass(const char *name);
365
366 /**
367  * Optimize the frame type of an irg by removing
368  * never touched entities.
369  *
370  * @param irg  The graph whose frame type will be optimized
371  *
372  * This function did not change the graph, only it's frame type.
373  * The layout state of the frame type will be set to layout_undefined
374  * if entities were removed.
375  */
376 void opt_frame_irg(ir_graph *irg);
377
378 /**
379  * Creates an ir_graph pass for opt_frame_irg().
380  *
381  * @param name     the name of this pass or NULL
382  *
383  * @return  the newly created ir_graph pass
384  */
385 ir_graph_pass_t *opt_frame_irg_pass(const char *name);
386
387 /** Possible flags for the Operator Scalar Replacement. */
388 typedef enum osr_flags {
389         osr_flag_none               = 0,  /**< no additional flags */
390         osr_flag_lftr_with_ov_check = 1,  /**< do linear function test replacement
391                                                only if no overflow can occur. */
392         osr_flag_ignore_x86_shift   = 2,  /**< ignore Multiplications by 2, 4, 8 */
393         osr_flag_keep_reg_pressure  = 4   /**< do NOT increase register pressure by introducing new
394                                                induction variables. */
395 } osr_flags;
396
397 /* FirmJNI cannot handle identical enum values... */
398
399 /** default setting */
400 #define osr_flag_default osr_flag_lftr_with_ov_check
401
402 /**
403  * Do the Operator Scalar Replacement optimization and linear
404  * function test replacement for loop control.
405  * Can be switched off using the set_opt_strength_red() flag.
406  * In that case, only remove_phi_cycles() is executed.
407  *
408  * @param irg    the graph which should be optimized
409  * @param flags  set of osr_flags
410  *
411  * The linear function replacement test is controlled by the flags.
412  * If the osr_flag_lftr_with_ov_check is set, the replacement is only
413  * done if do overflow can occur.
414  * Otherwise it is ALWAYS done which might be insecure.
415  *
416  * For instance:
417  *
418  * for (i = 0; i < 100; ++i)
419  *
420  * might be replaced by
421  *
422  * for (i = 0; i < 400; i += 4)
423  *
424  * But
425  *
426  * for (i = 0; i < 0x7FFFFFFF; ++i)
427  *
428  * will not be replaced by
429  *
430  * for (i = 0; i < 0xFFFFFFFC; i += 4)
431  *
432  * because of overflow.
433  *
434  * More bad cases:
435  *
436  * for (i = 0; i <= 0xF; ++i)
437  *
438  * will NOT be transformed into
439  *
440  * for (i = 0xFFFFFFF0; i <= 0xFFFFFFFF; ++i)
441  *
442  * although here is no direct overflow. The OV occurs when the ++i
443  * is executed (and would created an endless loop here!).
444  *
445  * For the same reason, a loop
446  *
447  * for (i = 0; i <= 9; i += x)
448  *
449  * will NOT be transformed because we cannot estimate whether an overflow
450  * might happen adding x.
451  *
452  * Note that i < a + 400 is also not possible with the current implementation
453  * although this might be allowed by other compilers...
454  *
455  * Note further that tests for equality can be handled some simpler (but are not
456  * implemented yet).
457  *
458  * This algorithm destroys the link field of nodes.
459  */
460 void opt_osr(ir_graph *irg, unsigned flags);
461
462 /**
463  * Creates an ir_graph pass for remove_phi_cycles().
464  *
465  * @param name     the name of this pass or NULL
466  * @param flags    set of osr_flags
467  *
468  * @return  the newly created ir_graph pass
469  */
470 ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags);
471
472 /**
473  * Removes useless Phi cycles, i.e cycles of Phi nodes with only one
474  * non-Phi node.
475  * This is automatically done in opt_osr(), so there is no need to call it
476  * additionally.
477  *
478  * @param irg    the graph which should be optimized
479  *
480  * This algorithm destroys the link field of nodes.
481  */
482 void remove_phi_cycles(ir_graph *irg);
483
484 /**
485  * Creates an ir_graph pass for remove_phi_cycles().
486  *
487  * @param name     the name of this pass or NULL
488  *
489  * @return  the newly created ir_graph pass
490  */
491 ir_graph_pass_t *remove_phi_cycles_pass(const char *name);
492
493
494 /** A default threshold. */
495 #define DEFAULT_CLONE_THRESHOLD 300
496
497 /**
498  * Do procedure cloning. Evaluate a heuristic weight for every
499  * Call(..., Const, ...). If the weight is bigger than threshold,
500  * clone the entity and fix the calls.
501  *
502  * @param threshold   the threshold for cloning
503  *
504  * The threshold is an estimation of how many instructions are saved
505  * when executing a cloned method. If threshold is 0.0, every possible
506  * call is cloned.
507  */
508 void proc_cloning(float threshold);
509
510 /**
511  * Reassociation.
512  *
513  * Applies Reassociation rules to integer expressions.
514  * Beware: Works only if integer overflow might be ignored, as for C, Java
515  * and for address expression.
516  * Works only if Constant folding is activated.
517  *
518  * Uses loop information to detect loop-invariant (ie contant
519  * inside the loop) values.
520  *
521  * See Muchnik 12.3.1 Algebraic Simplification and Reassociation of
522  * Addressing Expressions.
523  *
524  * @return non-zero if the optimization could be applied, 0 else
525  */
526 int optimize_reassociation(ir_graph *irg);
527
528 /**
529  * Creates an ir_graph pass for optimize_reassociation().
530  *
531  * @param name     the name of this pass or NULL
532  *
533  * @return  the newly created ir_graph pass
534  */
535 ir_graph_pass_t *optimize_reassociation_pass(const char *name);
536
537 /**
538  * Normalize the Returns of a graph by creating a new End block
539  * with One Return(Phi).
540  * This is the preferred input for the if-conversion.
541  *
542  * In pseudocode, it means:
543  *
544  * if (a)
545  *   return b;
546  * else
547  *   return c;
548  *
549  * is transformed into
550  *
551  * if (a)
552  *   res = b;
553  * else
554  *   res = c;
555  * return res;
556  */
557 void normalize_one_return(ir_graph *irg);
558
559 /**
560  * Creates an ir_graph pass for normalize_one_return().
561  *
562  * @param name     the name of this pass or NULL
563  *
564  * @return  the newly created ir_graph pass
565  */
566 ir_graph_pass_t *normalize_one_return_pass(const char *name);
567
568 /**
569  * Normalize the Returns of a graph by moving
570  * the Returns upwards as much as possible.
571  * This might be preferred for code generation.
572  *
573  * In pseudocode, it means:
574  *
575  * if (a)
576  *   res = b;
577  * else
578  *   res = c;
579  * return res;
580  *
581  * is transformed into
582  *
583  * if (a)
584  *   return b;
585  * else
586  *   return c;
587  */
588 void normalize_n_returns(ir_graph *irg);
589
590 /**
591  * Creates an ir_graph pass for normalize_n_returns().
592  *
593  * @param name     the name of this pass or NULL
594  *
595  * @return  the newly created ir_graph pass
596  */
597 ir_graph_pass_t *normalize_n_returns_pass(const char *name);
598
599 /**
600  * Do the scalar replacement optimization.
601  * Replace local compound entities (like structures and arrays)
602  * with atomic values if possible. Does not handle classes yet.
603  *
604  * @param irg  the graph which should be optimized
605  *
606  * @return non-zero, if at least one entity was replaced
607  */
608 int scalar_replacement_opt(ir_graph *irg);
609
610 /**
611  * Creates an ir_graph pass for scalar_replacement_opt().
612  *
613  * @param name     the name of this pass or NULL
614  *
615  * @return  the newly created ir_graph pass
616  */
617 ir_graph_pass_t *scalar_replacement_opt_pass(const char *name);
618
619 /** Performs strength reduction for the passed graph. */
620 void reduce_strength(ir_graph *irg);
621
622 /**
623  * Optimizes tail-recursion calls by converting them into loops.
624  * Depends on the flag opt_tail_recursion.
625  * Currently supports the following forms:
626  *  - return func();
627  *  - return x + func();
628  *  - return func() - x;
629  *  - return x * func();
630  *  - return -func();
631  *
632  * Does not work for Calls that use the exception stuff.
633  *
634  * @param irg   the graph to be optimized
635  *
636  * @return non-zero if the optimization could be applied, 0 else
637  */
638 int opt_tail_rec_irg(ir_graph *irg);
639
640 /**
641  * Creates an ir_graph pass for opt_tail_rec_irg().
642  *
643  * @param name     the name of this pass or NULL
644  *
645  * @return  the newly created ir_graph pass
646  */
647 ir_graph_pass_t *opt_tail_rec_irg_pass(const char *name);
648
649 /**
650  * Optimize tail-recursion calls for all IR-Graphs.
651  * Can currently handle:
652  * - direct return value, i.e. return func().
653  * - additive return value, i.e. return x +/- func()
654  * - multiplicative return value, i.e. return x * func() or return -func()
655  *
656  * The current implementation must be run before optimize_funccalls(),
657  * because it expects the memory edges pointing to calls, which might be
658  * removed by optimize_funccalls().
659  */
660 void opt_tail_recursion(void);
661
662 /**
663  * Creates an ir_prog pass for opt_tail_recursion().
664  *
665  * @param name     the name of this pass or NULL
666  *
667  * @return  the newly created ir_prog pass
668  */
669 ir_prog_pass_t *opt_tail_recursion_pass(const char *name);
670
671 /** This is the type for a method, that returns a pointer type to
672  *  tp.  This is needed in the normalization. */
673 typedef ir_type *(*gen_pointer_type_to_func)(ir_type *tp);
674
675 /**  Insert Casts so that class type casts conform exactly with the type hierarchy.
676  *
677  *  Formulated in Java, this achieves the following:
678  *
679  *  For a class hierarchy
680  *    class A {}
681  *    class B extends A {}
682  *    class C extends B {}
683  *  we transforms a cast
684  *    (A)new C()
685  *  to
686  *    (A)((B)new C()).
687  *
688  *  The algorithm works for Casts with class types, but also for Casts
689  *  with all pointer types that point (over several indirections,
690  *  i.e. ***A) to a class type.  Normalizes all graphs.  Computes type
691  *  information (@see irtypeinfo.h) if not available.
692  *  Invalidates trout information as new casts are generated.
693  *
694  *  @param gppt_fct A function that returns a pointer type that points
695  *    to the type given as argument.  If this parameter is NULL, a default
696  *    function is used that either uses trout information or performs a O(n)
697  *    search to find an existing pointer type.  If it can not find a type,
698  *    generates a pointer type with mode_P_mach and suffix "cc_ptr_tp".
699  */
700 void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
701
702 /**  Insert Casts so that class type casts conform exactly with the type hierarchy
703  *   in given graph.
704  *
705  *   For more details see normalize_irp_class_casts().
706  *
707  *  This transformation requires that type information is computed. @see irtypeinfo.h.
708  */
709 void normalize_irg_class_casts(ir_graph *irg, gen_pointer_type_to_func gppt_fct);
710
711 /** Optimize casting between class types.
712  *
713  *    class A { m(); }
714  *    class B extends A { }
715  *    class C extends B {}
716  *  Performs the following transformations:
717  *    C c = (C)(B)(A)(B)new C()  --> C c = (C)(B)newC() --> C c = new C()
718  *    (Optimizing downcasts as A a = (A)(B)(new A()) --> A a = new A() can
719  *     be suppressed by setting the flag opt_suppress_downcast_optimization.
720  *     Downcasting A to B might cause an exception.  It is not clear
721  *     whether this is modeled by the Firm Cast node, as it has no exception
722  *     outputs.);
723  *  If there is inh_m() that overwrites m() in B:
724  *    ((A) new B()).m()  --> (new B()).inh_m()
725  *  Phi((A)x, (A)y)  --> (A) Phi (x, y)  if (A) is an upcast.
726  *
727  *  Computes type information if not available. @see irtypeinfo.h.
728  *  Typeinformation is valid after optimization.
729  *  Invalidates trout information.
730  */
731 void optimize_class_casts(void);
732
733 /**
734  * CLiff Click's combo algorithm from "Combining Analyses, combining Optimizations".
735  *
736  * Does conditional constant propagation, unreachable code elimination and optimistic
737  * global value numbering at once.
738  *
739  * @param irg  the graph to run on
740  */
741 void combo(ir_graph *irg);
742
743 /**
744  * Creates an ir_graph pass for combo.
745  *
746  * @param name     the name of this pass or NULL
747  *
748  * @return  the newly created ir_graph pass
749  */
750 ir_graph_pass_t *combo_pass(const char *name);
751
752 /** Inlines all small methods at call sites where the called address comes
753  *  from a SymConst node that references the entity representing the called
754  *  method.
755  *
756  *  The size argument is a rough measure for the code size of the method:
757  *  Methods where the obstack containing the firm graph is smaller than
758  *  size are inlined.  Further only a limited number of calls are inlined.
759  *  If the method contains more than 1024 inlineable calls none will be
760  *  inlined.
761  *  Inlining is only performed if flags `optimize' and `inlineing' are set.
762  *  The graph may not be in state phase_building.
763  *  It is recommended to call local_optimize_graph() after inlining as this
764  *  function leaves a set of obscure Tuple nodes, e.g. a Proj-Tuple-Jmp
765  *  combination as control flow operation.
766  */
767 void inline_small_irgs(ir_graph *irg, int size);
768
769
770 /** Inlineing with a different heuristic than inline_small_irgs().
771  *
772  *  Inlines leave functions.  If inlinening creates new leave
773  *  function inlines these, too. (If g calls f, and f calls leave h,
774  *  h is first inlined in f and then f in g.)
775  *
776  *  Then inlines all small functions (this is not recursive).
777  *
778  *  For a heuristic this inlineing uses firm node counts.  It does
779  *  not count auxiliary nodes as Proj, Tuple, End, Start, Id, Sync.
780  *  If the ignore_runtime flag is set, calls to functions marked with the
781  *  mtp_property_runtime property are ignored.
782  *
783  *  @param maxsize         Do not inline any calls if a method has more than
784  *                         maxsize firm nodes.  It may reach this limit by
785  *                         inlineing.
786  *  @param leavesize       Inline leave functions if they have less than leavesize
787  *                         nodes.
788  *  @param size            Inline all function smaller than size.
789  *  @param ignore_runtime  count a function only calling runtime functions as
790  *                         leave
791  */
792 void inline_leave_functions(unsigned maxsize, unsigned leavesize,
793                 unsigned size, int ignore_runtime);
794
795 /**
796  * Heuristic inliner. Calculates a benefice value for every call and inlines
797  * those calls with a value higher than the threshold.
798  *
799  * @param maxsize      Do not inline any calls if a method has more than
800  *                     maxsize firm nodes.  It may reach this limit by
801  *                     inlineing.
802  * @param threshold    inlining threshold
803  */
804 void inline_functions(unsigned maxsize, int inline_threshold);
805
806 /**
807  * Combines congruent blocks into one.
808  *
809  * @param irg   The IR-graph to optimize.
810  *
811  * @return non-zero if the graph was transformed
812  */
813 int shape_blocks(ir_graph *irg);
814
815 #endif