a new garbage collection pass less conservative than gc_irgs (but does not respect...
[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 name     the name of this pass or NULL
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
231  * mux(@p sel, @p mux_false, @p mux_true) should be built for the current
232  * architecture.
233  * If it returns non-zero, a mux is created, else the code
234  * is not modified.
235  * @param sel        A selector of a Cond.
236  * @param phi_list   phi node to be converted
237  * @param i          First data predecessor involved in if conversion
238  * @param j          Second data predecessor involved in if conversion
239  */
240 typedef int (*arch_allow_ifconv_func)(ir_node *sel, ir_node *mux_false,
241                                       ir_node *mux_true);
242
243 /**
244  * The parameters structure.
245  */
246 struct ir_settings_if_conv_t {
247         int                 max_depth;       /**< The maximum depth up to which expressions
248                                                are examined when it has to be decided if they
249                                                can be placed into another block. */
250         arch_allow_ifconv_func allow_ifconv; /**< Evaluator function, if not set all possible Psi
251                                                nodes will be created. */
252 };
253
254 /**
255  * Perform If conversion on a graph.
256  *
257  * @param irg The graph.
258  * @param params The parameters for the if conversion.
259  *
260  * Cannot handle blocks with Bad control predecessors, so call it after control
261  * flow optimization.
262  */
263 void opt_if_conv(ir_graph *irg, const ir_settings_if_conv_t *params);
264
265 /**
266  * Creates an ir_graph pass for opt_if_conv().
267  *
268  * @param name     the name of this pass or NULL
269  * @param params   The parameters for the if conversion.
270  *
271  * @return  the newly created ir_graph pass
272  */
273 ir_graph_pass_t *opt_if_conv_pass(
274         const char *name, const ir_settings_if_conv_t *params);
275
276 /**
277  * Tries to reduce dependencies for memory nodes where possible by parllelizing
278  * them and synchronising with Sync nodes
279  * @param irg   the graph where memory operations should be parallelised
280  */
281 void opt_parallelize_mem(ir_graph *irg);
282
283 /**
284  * Creates an ir_graph pass for opt_sync().
285  *
286  * @param name     the name of this pass or NULL
287  *
288  * @return  the newly created ir_graph pass
289  */
290 ir_graph_pass_t *opt_parallelize_mem_pass(const char *name);
291
292 /*
293  * Check if we can replace the load by a given const from
294  * the const code irg.
295  *
296  * @param load   the load to replace
297  * @param c      the constant
298  *
299  * @return in the modes match or can be transformed using a reinterpret cast
300  *         returns a copy of the constant (possibly Conv'ed) on the
301  *         current_ir_graph
302  */
303 ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c);
304
305 /**
306  * Load/Store optimization.
307  *
308  * Removes redundant non-volatile Loads and Stores.
309  * May introduce Bad nodes if exceptional control flow
310  * is removed. The following cases are optimized:
311  *
312  * Load without result: A Load which has only a memory use
313  *   is removed.
314  *
315  * Load after Store: A Load after a Store is removed, if
316  *   the Load doesn't have an exception handler OR is in
317  *   the same block as the Store.
318  *
319  * Load after Load: A Load after a Load is removed, if the
320  *   Load doesn't have an exception handler OR is in the
321  *   same block as the previous Load.
322  *
323  * Store before Store: A Store immediately before another
324  *   Store in the same block is removed, if the Store doesn't
325  *   have an exception handler.
326  *
327  * Store after Load: A Store after a Load is removed, if the
328  *   Store doesn't have an exception handler.
329  *
330  * @return non-zero if the optimization could be applied, 0 else
331  */
332 int optimize_load_store(ir_graph *irg);
333
334 /**
335  * Creates an ir_graph pass for optimize_load_store().
336  *
337  * @param name     the name of this pass or NULL
338  *
339  * @return  the newly created ir_graph pass
340  */
341 ir_graph_pass_t *optimize_load_store_pass(const char *name);
342
343 /**
344  * New experimental alternative to optimize_load_store.
345  * Based on a dataflow analysis, so load/stores are moved out of loops
346  * where possible
347  */
348 int opt_ldst(ir_graph *irg);
349
350 /**
351  * Creates an ir_graph pass for opt_ldst().
352  *
353  * @param name     the name of this pass or NULL
354  *
355  * @return  the newly created ir_graph pass
356  */
357 ir_graph_pass_t *opt_ldst_pass(const char *name);
358
359 /**
360  * Do Loop unrolling in the given graph.
361  */
362 void optimize_loop_unrolling(ir_graph *irg);
363
364 /**
365  * Creates an ir_graph pass for optimize_loop_unrolling().
366  *
367  * @param name     the name of this pass or NULL
368  *
369  * @return  the newly created ir_graph pass
370  */
371 ir_graph_pass_t *optimize_loop_unrolling_pass(const char *name);
372
373 /**
374  * Optimize the frame type of an irg by removing
375  * never touched entities.
376  *
377  * @param irg  The graph whose frame type will be optimized
378  *
379  * This function did not change the graph, only it's frame type.
380  * The layout state of the frame type will be set to layout_undefined
381  * if entities were removed.
382  */
383 void opt_frame_irg(ir_graph *irg);
384
385 /**
386  * Creates an ir_graph pass for opt_frame_irg().
387  *
388  * @param name     the name of this pass or NULL
389  *
390  * @return  the newly created ir_graph pass
391  */
392 ir_graph_pass_t *opt_frame_irg_pass(const char *name);
393
394 /** Possible flags for the Operator Scalar Replacement. */
395 typedef enum osr_flags {
396         osr_flag_none               = 0,  /**< no additional flags */
397         osr_flag_lftr_with_ov_check = 1,  /**< do linear function test replacement
398                                                only if no overflow can occur. */
399         osr_flag_ignore_x86_shift   = 2,  /**< ignore Multiplications by 2, 4, 8 */
400         osr_flag_keep_reg_pressure  = 4   /**< do NOT increase register pressure by introducing new
401                                                induction variables. */
402 } osr_flags;
403
404 /* FirmJNI cannot handle identical enum values... */
405
406 /** default setting */
407 #define osr_flag_default osr_flag_lftr_with_ov_check
408
409 /**
410  * Do the Operator Scalar Replacement optimization and linear
411  * function test replacement for loop control.
412  * Can be switched off using the set_opt_strength_red() flag.
413  * In that case, only remove_phi_cycles() is executed.
414  *
415  * @param irg    the graph which should be optimized
416  * @param flags  set of osr_flags
417  *
418  * The linear function replacement test is controlled by the flags.
419  * If the osr_flag_lftr_with_ov_check is set, the replacement is only
420  * done if do overflow can occur.
421  * Otherwise it is ALWAYS done which might be insecure.
422  *
423  * For instance:
424  *
425  * for (i = 0; i < 100; ++i)
426  *
427  * might be replaced by
428  *
429  * for (i = 0; i < 400; i += 4)
430  *
431  * But
432  *
433  * for (i = 0; i < 0x7FFFFFFF; ++i)
434  *
435  * will not be replaced by
436  *
437  * for (i = 0; i < 0xFFFFFFFC; i += 4)
438  *
439  * because of overflow.
440  *
441  * More bad cases:
442  *
443  * for (i = 0; i <= 0xF; ++i)
444  *
445  * will NOT be transformed into
446  *
447  * for (i = 0xFFFFFFF0; i <= 0xFFFFFFFF; ++i)
448  *
449  * although here is no direct overflow. The OV occurs when the ++i
450  * is executed (and would created an endless loop here!).
451  *
452  * For the same reason, a loop
453  *
454  * for (i = 0; i <= 9; i += x)
455  *
456  * will NOT be transformed because we cannot estimate whether an overflow
457  * might happen adding x.
458  *
459  * Note that i < a + 400 is also not possible with the current implementation
460  * although this might be allowed by other compilers...
461  *
462  * Note further that tests for equality can be handled some simpler (but are not
463  * implemented yet).
464  *
465  * This algorithm destroys the link field of nodes.
466  */
467 void opt_osr(ir_graph *irg, unsigned flags);
468
469 /**
470  * Creates an ir_graph pass for remove_phi_cycles().
471  *
472  * @param name     the name of this pass or NULL
473  * @param flags    set of osr_flags
474  *
475  * @return  the newly created ir_graph pass
476  */
477 ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags);
478
479 /**
480  * Removes useless Phi cycles, i.e cycles of Phi nodes with only one
481  * non-Phi node.
482  * This is automatically done in opt_osr(), so there is no need to call it
483  * additionally.
484  *
485  * @param irg    the graph which should be optimized
486  *
487  * This algorithm destroys the link field of nodes.
488  */
489 void remove_phi_cycles(ir_graph *irg);
490
491 /**
492  * Creates an ir_graph pass for remove_phi_cycles().
493  *
494  * @param name     the name of this pass or NULL
495  *
496  * @return  the newly created ir_graph pass
497  */
498 ir_graph_pass_t *remove_phi_cycles_pass(const char *name);
499
500
501 /** A default threshold. */
502 #define DEFAULT_CLONE_THRESHOLD 300
503
504 /**
505  * Do procedure cloning. Evaluate a heuristic weight for every
506  * Call(..., Const, ...). If the weight is bigger than threshold,
507  * clone the entity and fix the calls.
508  *
509  * @param threshold   the threshold for cloning
510  *
511  * The threshold is an estimation of how many instructions are saved
512  * when executing a cloned method. If threshold is 0.0, every possible
513  * call is cloned.
514  */
515 void proc_cloning(float threshold);
516
517 /**
518  * Creates an ir_prog pass for proc_cloning().
519  *
520  * @param name        the name of this pass or NULL
521  * @param threshold   the threshold for cloning
522  *
523  * @return  the newly created ir_prog pass
524  */
525 ir_prog_pass_t *proc_cloning_pass(const char *name, float threshold);
526
527 /**
528  * Reassociation.
529  *
530  * Applies Reassociation rules to integer expressions.
531  * Beware: Works only if integer overflow might be ignored, as for C, Java
532  * and for address expression.
533  * Works only if Constant folding is activated.
534  *
535  * Uses loop information to detect loop-invariant (ie contant
536  * inside the loop) values.
537  *
538  * See Muchnik 12.3.1 Algebraic Simplification and Reassociation of
539  * Addressing Expressions.
540  *
541  * @return non-zero if the optimization could be applied, 0 else
542  */
543 int optimize_reassociation(ir_graph *irg);
544
545 /**
546  * Creates an ir_graph pass for optimize_reassociation().
547  *
548  * @param name     the name of this pass or NULL
549  *
550  * @return  the newly created ir_graph pass
551  */
552 ir_graph_pass_t *optimize_reassociation_pass(const char *name);
553
554 /**
555  * Normalize the Returns of a graph by creating a new End block
556  * with One Return(Phi).
557  * This is the preferred input for the if-conversion.
558  *
559  * In pseudocode, it means:
560  *
561  * if (a)
562  *   return b;
563  * else
564  *   return c;
565  *
566  * is transformed into
567  *
568  * if (a)
569  *   res = b;
570  * else
571  *   res = c;
572  * return res;
573  */
574 void normalize_one_return(ir_graph *irg);
575
576 /**
577  * Creates an ir_graph pass for normalize_one_return().
578  *
579  * @param name     the name of this pass or NULL
580  *
581  * @return  the newly created ir_graph pass
582  */
583 ir_graph_pass_t *normalize_one_return_pass(const char *name);
584
585 /**
586  * Normalize the Returns of a graph by moving
587  * the Returns upwards as much as possible.
588  * This might be preferred for code generation.
589  *
590  * In pseudocode, it means:
591  *
592  * if (a)
593  *   res = b;
594  * else
595  *   res = c;
596  * return res;
597  *
598  * is transformed into
599  *
600  * if (a)
601  *   return b;
602  * else
603  *   return c;
604  */
605 void normalize_n_returns(ir_graph *irg);
606
607 /**
608  * Creates an ir_graph pass for normalize_n_returns().
609  *
610  * @param name     the name of this pass or NULL
611  *
612  * @return  the newly created ir_graph pass
613  */
614 ir_graph_pass_t *normalize_n_returns_pass(const char *name);
615
616 /**
617  * Do the scalar replacement optimization.
618  * Replace local compound entities (like structures and arrays)
619  * with atomic values if possible. Does not handle classes yet.
620  *
621  * @param irg  the graph which should be optimized
622  *
623  * @return non-zero, if at least one entity was replaced
624  */
625 int scalar_replacement_opt(ir_graph *irg);
626
627 /**
628  * Creates an ir_graph pass for scalar_replacement_opt().
629  *
630  * @param name     the name of this pass or NULL
631  *
632  * @return  the newly created ir_graph pass
633  */
634 ir_graph_pass_t *scalar_replacement_opt_pass(const char *name);
635
636 /** Performs strength reduction for the passed graph. */
637 void reduce_strength(ir_graph *irg);
638
639 /**
640  * Optimizes tail-recursion calls by converting them into loops.
641  * Depends on the flag opt_tail_recursion.
642  * Currently supports the following forms:
643  *  - return func();
644  *  - return x + func();
645  *  - return func() - x;
646  *  - return x * func();
647  *  - return -func();
648  *
649  * Does not work for Calls that use the exception stuff.
650  *
651  * @param irg   the graph to be optimized
652  *
653  * @return non-zero if the optimization could be applied, 0 else
654  */
655 int opt_tail_rec_irg(ir_graph *irg);
656
657 /**
658  * Creates an ir_graph pass for opt_tail_rec_irg().
659  *
660  * @param name     the name of this pass or NULL
661  *
662  * @return  the newly created ir_graph pass
663  */
664 ir_graph_pass_t *opt_tail_rec_irg_pass(const char *name);
665
666 /**
667  * Optimize tail-recursion calls for all IR-Graphs.
668  * Can currently handle:
669  * - direct return value, i.e. return func().
670  * - additive return value, i.e. return x +/- func()
671  * - multiplicative return value, i.e. return x * func() or return -func()
672  *
673  * The current implementation must be run before optimize_funccalls(),
674  * because it expects the memory edges pointing to calls, which might be
675  * removed by optimize_funccalls().
676  */
677 void opt_tail_recursion(void);
678
679 /**
680  * Creates an ir_prog pass for opt_tail_recursion().
681  *
682  * @param name     the name of this pass or NULL
683  *
684  * @return  the newly created ir_prog pass
685  */
686 ir_prog_pass_t *opt_tail_recursion_pass(const char *name);
687
688 /** This is the type for a method, that returns a pointer type to
689  *  tp.  This is needed in the normalization. */
690 typedef ir_type *(*gen_pointer_type_to_func)(ir_type *tp);
691
692 /**  Insert Casts so that class type casts conform exactly with the type hierarchy.
693  *
694  *  Formulated in Java, this achieves the following:
695  *
696  *  For a class hierarchy
697  *    class A {}
698  *    class B extends A {}
699  *    class C extends B {}
700  *  we transforms a cast
701  *    (A)new C()
702  *  to
703  *    (A)((B)new C()).
704  *
705  *  The algorithm works for Casts with class types, but also for Casts
706  *  with all pointer types that point (over several indirections,
707  *  i.e. ***A) to a class type.  Normalizes all graphs.  Computes type
708  *  information (@see irtypeinfo.h) if not available.
709  *  Invalidates trout information as new casts are generated.
710  *
711  *  @param gppt_fct A function that returns a pointer type that points
712  *    to the type given as argument.  If this parameter is NULL, a default
713  *    function is used that either uses trout information or performs a O(n)
714  *    search to find an existing pointer type.  If it can not find a type,
715  *    generates a pointer type with mode_P_mach and suffix "cc_ptr_tp".
716  */
717 void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
718
719 /**  Insert Casts so that class type casts conform exactly with the type hierarchy
720  *   in given graph.
721  *
722  *   For more details see normalize_irp_class_casts().
723  *
724  *  This transformation requires that type information is computed. @see irtypeinfo.h.
725  */
726 void normalize_irg_class_casts(ir_graph *irg, gen_pointer_type_to_func gppt_fct);
727
728 /** Optimize casting between class types.
729  *
730  *    class A { m(); }
731  *    class B extends A { }
732  *    class C extends B {}
733  *  Performs the following transformations:
734  *    C c = (C)(B)(A)(B)new C()  --> C c = (C)(B)newC() --> C c = new C()
735  *    (Optimizing downcasts as A a = (A)(B)(new A()) --> A a = new A() can
736  *     be suppressed by setting the flag opt_suppress_downcast_optimization.
737  *     Downcasting A to B might cause an exception.  It is not clear
738  *     whether this is modeled by the Firm Cast node, as it has no exception
739  *     outputs.);
740  *  If there is inh_m() that overwrites m() in B:
741  *    ((A) new B()).m()  --> (new B()).inh_m()
742  *  Phi((A)x, (A)y)  --> (A) Phi (x, y)  if (A) is an upcast.
743  *
744  *  Computes type information if not available. @see irtypeinfo.h.
745  *  Typeinformation is valid after optimization.
746  *  Invalidates trout information.
747  */
748 void optimize_class_casts(void);
749
750 /**
751  * CLiff Click's combo algorithm from
752  *   "Combining Analyses, combining Optimizations".
753  *
754  * Does conditional constant propagation, unreachable code elimination and
755  * optimistic global value numbering at once.
756  *
757  * @param irg  the graph to run on
758  */
759 void combo(ir_graph *irg);
760
761 /**
762  * Creates an ir_graph pass for combo.
763  *
764  * @param name     the name of this pass or NULL
765  *
766  * @return  the newly created ir_graph pass
767  */
768 ir_graph_pass_t *combo_pass(const char *name);
769
770 /**
771  * Inlines all small methods at call sites where the called address comes
772  * from a SymConst node that references the entity representing the called
773  * method.
774  *
775  * @param irg  the graph
776  * @param size maximum function size
777  *
778  * The size argument is a rough measure for the code size of the method:
779  * Methods where the obstack containing the firm graph is smaller than
780  * size are inlined.  Further only a limited number of calls are inlined.
781  * If the method contains more than 1024 inlineable calls none will be
782  * inlined.
783  * Inlining is only performed if flags `optimize' and `inlineing' are set.
784  * The graph may not be in state phase_building.
785  * It is recommended to call local_optimize_graph() after inlining as this
786  * function leaves a set of obscure Tuple nodes, e.g. a Proj-Tuple-Jmp
787  * combination as control flow operation.
788  */
789 void inline_small_irgs(ir_graph *irg, int size);
790
791 /**
792  * Creates an ir_graph pass for inline_small_irgs().
793  *
794  * @param name   the name of this pass or NULL
795  * @param size   maximum function size
796  *
797  * @return  the newly created ir_graph pass
798  */
799 ir_graph_pass_t *inline_small_irgs_pass(const char *name, int size);
800
801 /**
802  * Inlineing with a different heuristic than inline_small_irgs().
803  *
804  * Inlines leave functions.  If inlinening creates new leave
805  * function inlines these, too. (If g calls f, and f calls leave h,
806  * h is first inlined in f and then f in g.)
807  *
808  * Then inlines all small functions (this is not recursive).
809  *
810  * For a heuristic this inlineing uses firm node counts.  It does
811  * not count auxiliary nodes as Proj, Tuple, End, Start, Id, Sync.
812  * If the ignore_runtime flag is set, calls to functions marked with the
813  * mtp_property_runtime property are ignored.
814  *
815  * @param maxsize         Do not inline any calls if a method has more than
816  *                        maxsize firm nodes.  It may reach this limit by
817  *                        inlineing.
818  * @param leavesize       Inline leave functions if they have less than leavesize
819  *                        nodes.
820  * @param size            Inline all function smaller than size.
821  * @param ignore_runtime  count a function only calling runtime functions as
822  *                        leave
823  */
824 void inline_leave_functions(unsigned maxsize, unsigned leavesize,
825                 unsigned size, int ignore_runtime);
826
827 /**
828  * Creates an ir_prog pass for inline_leave_functions().
829  *
830  * @param name            the name of this pass or NULL
831  * @param maxsize         Do not inline any calls if a method has more than
832  *                        maxsize firm nodes.  It may reach this limit by
833  *                        inlineing.
834  * @param leavesize       Inline leave functions if they have less than leavesize
835  *                        nodes.
836  * @param size            Inline all function smaller than size.
837  * @param ignore_runtime  count a function only calling runtime functions as
838  *                        leave
839  *
840  * @return  the newly created ir_prog pass
841  */
842 ir_prog_pass_t *inline_leave_functions_pass(
843         const char *name, unsigned maxsize, unsigned leavesize,
844         unsigned size, int ignore_runtime);
845
846 typedef void (*opt_ptr)(ir_graph *irg);
847
848 /**
849  * Heuristic inliner. Calculates a benefice value for every call and inlines
850  * those calls with a value higher than the threshold.
851  *
852  * @param maxsize             Do not inline any calls if a method has more than
853  *                            maxsize firm nodes.  It may reach this limit by
854  *                            inlining.
855  * @param inline_threshold    inlining threshold
856  * @param after_inline_opt    optimizations performed immediately after inlining
857  *                            some calls
858  */
859 void inline_functions(unsigned maxsize, int inline_threshold,
860                       opt_ptr after_inline_opt);
861
862 /**
863  * Creates an ir_prog pass for inline_functions().
864  *
865  * @param name               the name of this pass or NULL
866  * @param maxsize            Do not inline any calls if a method has more than
867  *                           maxsize firm nodes.  It may reach this limit by
868        *                     inlineing.
869  * @param inline_threshold   inlining threshold
870  *
871  * @return  the newly created ir_prog pass
872  */
873 ir_prog_pass_t *inline_functions_pass(
874         const char *name, unsigned maxsize, int inline_threshold,
875         opt_ptr after_inline_opt);
876
877 /**
878  * Combines congruent blocks into one.
879  *
880  * @param irg   The IR-graph to optimize.
881  *
882  * @return non-zero if the graph was transformed
883  */
884 int shape_blocks(ir_graph *irg);
885
886 /**
887  * Creates an ir_graph pass for shape_blocks().
888  *
889  * @param name   the name of this pass or NULL
890  *
891  * @return  the newly created ir_graph pass
892  */
893 ir_graph_pass_t *shape_blocks_pass(const char *name);
894
895 /**
896  * Perform loop inversion on a given graph.
897  * Loop inversion transform a head controlled loop (like while(...) {} and
898  * for(...) {}) into a foot controlled loop (do {} while(...)).
899  */
900 void do_loop_inversion(ir_graph *irg);
901
902 /**
903  * Perform loop peeling on a given graph.
904  */
905 void do_loop_peeling(ir_graph *irg);
906
907 typedef ir_type *(*get_Alloc_func)(ir_node *n);
908 /** Set a new get_Alloc_func and returns the old one. */
909 get_Alloc_func firm_set_Alloc_func(get_Alloc_func newf);
910
911 /**
912  * Removes all entities which are unused.
913  *
914  * Unused entities have ir_visibility_local and are not used directly or
915  * indirectly through entities/code visible outside the compilation unit.
916  * This is usually conservative than gc_irgs, but does not respect properties
917  * of object-oriented programs.
918  */
919 void garbage_collect_entities(void);
920
921 /** Pass for garbage_collect_entities */
922 ir_prog_pass_t *garbage_collect_entities_pass(const char *name);
923
924 #endif