Refactoring: Deleted unused inlining functionality.
[libfirm] / include / libfirm / iroptimize.h
1 /*
2  * Copyright (C) 1995-2010 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  */
24 #ifndef FIRM_IROPTIMIZE_H
25 #define FIRM_IROPTIMIZE_H
26
27 #include "firm_types.h"
28 #include "nodeops.h"
29 #include "begin.h"
30
31 /**
32  * @defgroup iroptimize  Transformations and Optimisations
33  * @{
34  */
35
36 /**
37  * Control flow optimization.
38  *
39  * Removes empty blocks doing if simplifications and loop simplifications.
40  * A block is empty if it contains only a Jmp node and Phi nodes.
41  * Merges single entry single exit blocks with their predecessor
42  * and propagates dead control flow by calling equivalent_node().
43  * Independent of compiler flag it removes Tuples from cf edges,
44  * Bad predecessors from Blocks and Phis, and unnecessary predecessors of End.
45  * Destroys backedge information.
46  */
47 FIRM_API void optimize_cf(ir_graph *irg);
48
49 /**
50  * Creates an ir_graph pass for optimize_cf().
51  *
52  * @param name     the name of this pass or NULL
53  *
54  * @return  the newly created ir_graph pass
55  */
56 FIRM_API ir_graph_pass_t *optimize_cf_pass(const char *name);
57
58 /**
59  * Perform path-sensitive jump threading on the given graph.
60  *
61  * @param irg  the graph
62  */
63 FIRM_API void opt_jumpthreading(ir_graph* irg);
64
65 /**
66  * Creates an ir_graph pass for opt_jumpthreading().
67  *
68  * @param name     the name of this pass or NULL
69  *
70  * @return  the newly created ir_graph pass
71  */
72 FIRM_API ir_graph_pass_t *opt_jumpthreading_pass(const char *name);
73
74 /**
75  * Simplifies boolean expression in the given ir graph.
76  * eg. x < 5 && x < 6 becomes x < 5
77  *
78  * @param irg  the graph
79  */
80 FIRM_API void opt_bool(ir_graph *irg);
81
82 /**
83  * Creates an ir_graph pass for opt_bool().
84  *
85  * @param name     the name of this pass or NULL
86  *
87  * @return  the newly created ir_graph pass
88  */
89 FIRM_API ir_graph_pass_t *opt_bool_pass(const char *name);
90
91 /**
92  * Reduces the number of Conv nodes in the given ir graph.
93  *
94  * @param irg  the graph
95  */
96 FIRM_API void 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 FIRM_API ir_graph_pass_t *conv_opt_pass(const char *name);
106
107 /**
108  * A callback that checks whether a entity is an allocation
109  * routine.
110  */
111 typedef int (*check_alloc_entity_func)(ir_entity *ent);
112
113 /**
114  * Performs simple and fast escape analysis for one graph.
115  *
116  * @param irg       the graph
117  * @param callback  a callback function to check whether a
118  *                  given entity is a allocation call
119  */
120 FIRM_API void escape_enalysis_irg(ir_graph *irg,
121                                   check_alloc_entity_func callback);
122
123 /**
124  * Performs simple and fast escape analysis for all graphs.
125  *
126  * This optimization implements a simple and fast but inexact
127  * escape analysis. Some addresses might be marked as 'escaped' even
128  * if they are not.
129  * The advantage is a low memory footprint and fast speed.
130  *
131  * @param run_scalar_replace  if this flag in non-zero, scalar
132  *                            replacement optimization is run on graphs with removed
133  *                            allocation
134  * @param callback            a callback function to check whether a
135  *                            given entity is a allocation call
136  *
137  * This optimization removes allocation which are not used (rare) and replace
138  * allocation that can be proved dead at the end of the graph which stack variables.
139  *
140  * The creation of stack variable allows scalar replacement to be run only
141  * on those graphs that have been changed.
142  *
143  * This is most effective on Java where no other stack variables exists.
144  */
145 FIRM_API void escape_analysis(int run_scalar_replace,
146                               check_alloc_entity_func callback);
147
148 /**
149  * Optimize function calls by handling const functions.
150  *
151  * This optimization first detects all "const functions", i.e.,
152  * IR graphs that neither read nor write memory (and hence did
153  * not create exceptions, as these use memory in Firm).
154  *
155  * The result of calls to such functions depends only on its
156  * arguments, hence those calls are no more pinned.
157  *
158  * This is a rather strong criteria, so do not expect that a
159  * lot of functions will be found. Moreover, all of them might
160  * already be inlined if inlining is activated.
161  * Anyway, it might be good for handling builtin's
162  * even if the later read/write memory (but we know how).
163  *
164  * This optimizations read the irg_const_function property of
165  * entities and and sets the irg_const_function property of
166  * graphs.
167  *
168  * If callee information is valid, we also optimize polymorphic Calls.
169  */
170 FIRM_API void optimize_funccalls(void);
171
172 /**
173  * Creates an ir_prog pass for optimize_funccalls().
174  *
175  * @param name       the name of this pass or NULL
176  * @return  the newly created ir_prog pass
177  */
178 FIRM_API ir_prog_pass_t *optimize_funccalls_pass(const char *name);
179
180 /**
181  * Does Partial Redundancy Elimination combined with
182  * Global Value Numbering.
183  * Can be used to replace place_code() completely.
184  *
185  * Based on VanDrunen and Hosking 2004.
186  *
187  * @param irg  the graph
188  */
189 FIRM_API void do_gvn_pre(ir_graph *irg);
190
191 /**
192  * Creates an ir_graph pass for do_gvn_pre().
193  *
194  * @param name     the name of this pass or NULL
195  *
196  * @return  the newly created ir_graph pass
197  */
198 FIRM_API ir_graph_pass_t *do_gvn_pre_pass(const char *name);
199
200 /**
201  * This function is called to evaluate, if a
202  * mux(@p sel, @p mux_false, @p mux_true) should be built for the current
203  * architecture.
204  * If it returns non-zero, a mux is created, else the code
205  * is not modified.
206  * @param sel        A selector of a Cond.
207  * @param phi_list   phi node to be converted
208  * @param i          First data predecessor involved in if conversion
209  * @param j          Second data predecessor involved in if conversion
210  */
211 typedef int (*arch_allow_ifconv_func)(ir_node *sel, ir_node *mux_false,
212                                       ir_node *mux_true);
213
214 /**
215  * Perform If conversion on a graph.
216  *
217  * @param irg The graph.
218  *
219  * Cannot handle blocks with Bad control predecessors, so call it after control
220  * flow optimization.
221  */
222 FIRM_API void opt_if_conv(ir_graph *irg);
223
224 /**
225  * Creates an ir_graph pass for opt_if_conv().
226  *
227  * @param name     the name of this pass or NULL
228  *
229  * @return  the newly created ir_graph pass
230  */
231 FIRM_API ir_graph_pass_t *opt_if_conv_pass(const char *name);
232
233 /**
234  * Tries to reduce dependencies for memory nodes where possible by parallelizing
235  * them and synchronizing with Sync nodes
236  * @param irg   the graph where memory operations should be parallelized
237  */
238 FIRM_API void opt_parallelize_mem(ir_graph *irg);
239
240 /**
241  * Creates an ir_graph pass for opt_sync().
242  *
243  * @param name     the name of this pass or NULL
244  *
245  * @return  the newly created ir_graph pass
246  */
247 FIRM_API ir_graph_pass_t *opt_parallelize_mem_pass(const char *name);
248
249 /**
250  * Check if we can replace the load by a given const from
251  * the const code irg.
252  *
253  * @param load   the load to replace
254  * @param c      the constant
255  *
256  * @return if the modes match or can be transformed using a reinterpret cast
257  *         returns a copy of the constant (possibly Conv'ed) in the graph where
258  *         the load is.
259  */
260 FIRM_API ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c);
261
262 /**
263  * Load/Store optimization.
264  *
265  * Removes redundant non-volatile Loads and Stores.
266  * May introduce Bad nodes if exceptional control flow
267  * is removed. The following cases are optimized:
268  *
269  * Load without result: A Load which has only a memory use
270  *   is removed.
271  *
272  * Load after Store: A Load after a Store is removed, if
273  *   the Load doesn't have an exception handler OR is in
274  *   the same block as the Store.
275  *
276  * Load after Load: A Load after a Load is removed, if the
277  *   Load doesn't have an exception handler OR is in the
278  *   same block as the previous Load.
279  *
280  * Store before Store: A Store immediately before another
281  *   Store in the same block is removed, if the Store doesn't
282  *   have an exception handler.
283  *
284  * Store after Load: A Store after a Load is removed, if the
285  *   Store doesn't have an exception handler.
286  */
287 FIRM_API void optimize_load_store(ir_graph *irg);
288
289 /**
290  * Creates an ir_graph pass for optimize_load_store().
291  *
292  * @param name     the name of this pass or NULL
293  *
294  * @return  the newly created ir_graph pass
295  */
296 FIRM_API ir_graph_pass_t *optimize_load_store_pass(const char *name);
297
298 /**
299  * New experimental alternative to optimize_load_store.
300  * Based on a dataflow analysis, so load/stores are moved out of loops
301  * where possible
302  */
303 FIRM_API void opt_ldst(ir_graph *irg);
304
305 /**
306  * Creates an ir_graph pass for opt_ldst().
307  *
308  * @param name     the name of this pass or NULL
309  *
310  * @return  the newly created ir_graph pass
311  */
312 FIRM_API ir_graph_pass_t *opt_ldst_pass(const char *name);
313
314 /**
315  * Optimize loops by peeling or unrolling them if beneficial.
316  *
317  * @param irg  The graph whose loops will be processed
318  *
319  * This function did not change the graph, only its frame type.
320  * The layout state of the frame type will be set to layout_undefined
321  * if entities were removed.
322  */
323 FIRM_API void loop_optimization(ir_graph *irg);
324
325 /**
326  * Optimize the frame type of an irg by removing
327  * never touched entities.
328  *
329  * @param irg  The graph whose frame type will be optimized
330  *
331  * This function did not change the graph, only its frame type.
332  * The layout state of the frame type will be set to layout_undefined
333  * if entities were removed.
334  */
335 FIRM_API void opt_frame_irg(ir_graph *irg);
336
337 /**
338  * Creates an ir_graph pass for opt_frame_irg().
339  *
340  * @param name     the name of this pass or NULL
341  *
342  * @return  the newly created ir_graph pass
343  */
344 FIRM_API ir_graph_pass_t *opt_frame_irg_pass(const char *name);
345
346 /** Possible flags for the Operator Scalar Replacement. */
347 typedef enum osr_flags {
348         osr_flag_none               = 0,  /**< no additional flags */
349         osr_flag_lftr_with_ov_check = 1,  /**< do linear function test replacement
350                                                only if no overflow can occur. */
351         osr_flag_ignore_x86_shift   = 2,  /**< ignore Multiplications by 2, 4, 8 */
352         osr_flag_keep_reg_pressure  = 4   /**< do NOT increase register pressure by introducing new
353                                                induction variables. */
354 } osr_flags;
355
356 /** default setting */
357 #define osr_flag_default osr_flag_lftr_with_ov_check
358
359 /**
360  * Performs the Operator Scalar Replacement optimization and linear
361  * function test replacement for loop control.
362  * Can be switched off using the set_opt_strength_red() flag.
363  * In that case, only remove_phi_cycles() is executed.
364  *
365  * @param irg    the graph which should be optimized
366  * @param flags  set of osr_flags
367  *
368  * The linear function replacement test is controlled by the flags.
369  * If the osr_flag_lftr_with_ov_check is set, the replacement is only
370  * done if do overflow can occur.
371  * Otherwise it is ALWAYS done which might be insecure.
372  *
373  * For instance:
374  *
375  * for (i = 0; i < 100; ++i)
376  *
377  * might be replaced by
378  *
379  * for (i = 0; i < 400; i += 4)
380  *
381  * But
382  *
383  * for (i = 0; i < 0x7FFFFFFF; ++i)
384  *
385  * will not be replaced by
386  *
387  * for (i = 0; i < 0xFFFFFFFC; i += 4)
388  *
389  * because of overflow.
390  *
391  * More bad cases:
392  *
393  * for (i = 0; i <= 0xF; ++i)
394  *
395  * will NOT be transformed into
396  *
397  * for (i = 0xFFFFFFF0; i <= 0xFFFFFFFF; ++i)
398  *
399  * although here is no direct overflow. The OV occurs when the ++i
400  * is executed (and would created an endless loop here!).
401  *
402  * For the same reason, a loop
403  *
404  * for (i = 0; i <= 9; i += x)
405  *
406  * will NOT be transformed because we cannot estimate whether an overflow
407  * might happen adding x.
408  *
409  * Note that i < a + 400 is also not possible with the current implementation
410  * although this might be allowed by other compilers...
411  *
412  * Note further that tests for equality can be handled some simpler (but are not
413  * implemented yet).
414  *
415  * This algorithm destroys the link field of nodes.
416  */
417 FIRM_API void opt_osr(ir_graph *irg, unsigned flags);
418
419 /**
420  * Creates an ir_graph pass for remove_phi_cycles().
421  *
422  * @param name     the name of this pass or NULL
423  * @param flags    set of osr_flags
424  *
425  * @return  the newly created ir_graph pass
426  */
427 FIRM_API ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags);
428
429 /**
430  * Removes useless Phi cycles, i.e cycles of Phi nodes with only one
431  * non-Phi node.
432  * This is automatically done in opt_osr(), so there is no need to call it
433  * additionally.
434  *
435  * @param irg    the graph which should be optimized
436  *
437  * This algorithm destroys the link field of nodes.
438  */
439 FIRM_API void remove_phi_cycles(ir_graph *irg);
440
441 /**
442  * Creates an ir_graph pass for remove_phi_cycles().
443  *
444  * @param name     the name of this pass or NULL
445  *
446  * @return  the newly created ir_graph pass
447  */
448 FIRM_API ir_graph_pass_t *remove_phi_cycles_pass(const char *name);
449
450
451 /** A default threshold. */
452 #define DEFAULT_CLONE_THRESHOLD 20
453
454 /**
455  * Performs procedure cloning. Evaluate a heuristic weight for every
456  * Call(..., Const, ...). If the weight is bigger than threshold,
457  * clone the entity and fix the calls.
458  *
459  * @param threshold   the threshold for cloning
460  *
461  * The threshold is an estimation of how many instructions are saved
462  * when executing a cloned method. If threshold is 0.0, every possible
463  * call is cloned.
464  */
465 FIRM_API void proc_cloning(float threshold);
466
467 /**
468  * Creates an ir_prog pass for proc_cloning().
469  *
470  * @param name        the name of this pass or NULL
471  * @param threshold   the threshold for cloning
472  *
473  * @return  the newly created ir_prog pass
474  */
475 FIRM_API ir_prog_pass_t *proc_cloning_pass(const char *name, float threshold);
476
477 /**
478  * Reassociation.
479  *
480  * Applies Reassociation rules to integer expressions.
481  * Beware: Works only if integer overflow might be ignored, as for C, Java
482  * and for address expression.
483  * Works only if Constant folding is activated.
484  *
485  * Uses loop information to detect loop-invariant (i.e. contant
486  * inside the loop) values.
487  *
488  * See Muchnik 12.3.1 Algebraic Simplification and Reassociation of
489  * Addressing Expressions.
490  */
491 FIRM_API void optimize_reassociation(ir_graph *irg);
492
493 /**
494  * Creates an ir_graph pass for optimize_reassociation().
495  *
496  * @param name     the name of this pass or NULL
497  *
498  * @return  the newly created ir_graph pass
499  */
500 FIRM_API ir_graph_pass_t *optimize_reassociation_pass(const char *name);
501
502 /**
503  * Normalize the Returns of a graph by creating a new End block
504  * with One Return(Phi).
505  * This is the preferred input for the if-conversion.
506  *
507  * In pseudocode, it means:
508  *
509  * if (a)
510  *   return b;
511  * else
512  *   return c;
513  *
514  * is transformed into
515  *
516  * if (a)
517  *   res = b;
518  * else
519  *   res = c;
520  * return res;
521  */
522 FIRM_API void normalize_one_return(ir_graph *irg);
523
524 /**
525  * Creates an ir_graph pass for normalize_one_return().
526  *
527  * @param name     the name of this pass or NULL
528  *
529  * @return  the newly created ir_graph pass
530  */
531 FIRM_API ir_graph_pass_t *normalize_one_return_pass(const char *name);
532
533 /**
534  * Normalize the Returns of a graph by moving
535  * the Returns upwards as much as possible.
536  * This might be preferred for code generation.
537  *
538  * In pseudocode, it means:
539  *
540  * if (a)
541  *   res = b;
542  * else
543  *   res = c;
544  * return res;
545  *
546  * is transformed into
547  *
548  * if (a)
549  *   return b;
550  * else
551  *   return c;
552  */
553 FIRM_API void normalize_n_returns(ir_graph *irg);
554
555 /**
556  * Creates an ir_graph pass for normalize_n_returns().
557  *
558  * @param name     the name of this pass or NULL
559  *
560  * @return  the newly created ir_graph pass
561  */
562 FIRM_API ir_graph_pass_t *normalize_n_returns_pass(const char *name);
563
564 /**
565  * Performs the scalar replacement optimization.
566  * Replaces local compound entities (like structures and arrays)
567  * with atomic values if possible. Does not handle classes yet.
568  *
569  * @param irg  the graph which should be optimized
570  */
571 FIRM_API void scalar_replacement_opt(ir_graph *irg);
572
573 /**
574  * Creates an ir_graph pass for scalar_replacement_opt().
575  *
576  * @param name     the name of this pass or NULL
577  *
578  * @return  the newly created ir_graph pass
579  */
580 FIRM_API ir_graph_pass_t *scalar_replacement_opt_pass(const char *name);
581
582 /**
583  * Optimizes tail-recursion calls by converting them into loops.
584  * Depends on the flag opt_tail_recursion.
585  * Currently supports the following forms:
586  *  - return func();
587  *  - return x + func();
588  *  - return func() - x;
589  *  - return x * func();
590  *  - return -func();
591  *
592  * Does not work for Calls that use the exception stuff.
593  *
594  * @param irg   the graph to be optimized
595  */
596 FIRM_API void opt_tail_rec_irg(ir_graph *irg);
597
598 /**
599  * Creates an ir_graph pass for opt_tail_rec_irg().
600  *
601  * @param name     the name of this pass or NULL
602  *
603  * @return  the newly created ir_graph pass
604  */
605 FIRM_API ir_graph_pass_t *opt_tail_rec_irg_pass(const char *name);
606
607 /**
608  * Optimize tail-recursion calls for all IR-Graphs.
609  * Can currently handle:
610  * - direct return value, i.e. return func().
611  * - additive return value, i.e. return x +/- func()
612  * - multiplicative return value, i.e. return x * func() or return -func()
613  *
614  * The current implementation must be run before optimize_funccalls(),
615  * because it expects the memory edges pointing to calls, which might be
616  * removed by optimize_funccalls().
617  */
618 FIRM_API void opt_tail_recursion(void);
619
620 /**
621  * Creates an ir_prog pass for opt_tail_recursion().
622  *
623  * @param name     the name of this pass or NULL
624  *
625  * @return  the newly created ir_prog pass
626  */
627 FIRM_API ir_prog_pass_t *opt_tail_recursion_pass(const char *name);
628
629 /** This is the type for a method, that returns a pointer type to
630  *  tp.  This is needed in the normalization. */
631 typedef ir_type *(*gen_pointer_type_to_func)(ir_type *tp);
632
633 /**  Insert Casts so that class type casts conform exactly with the type hierarchy.
634  *
635  *  Formulated in Java, this achieves the following:
636  *
637  *  For a class hierarchy
638  *    class A {}
639  *    class B extends A {}
640  *    class C extends B {}
641  *  we transforms a cast
642  *    (A)new C()
643  *  to
644  *    (A)((B)new C()).
645  *
646  *  The algorithm works for Casts with class types, but also for Casts
647  *  with all pointer types that point (over several indirections,
648  *  i.e. ***A) to a class type.  Normalizes all graphs.  Computes type
649  *  information (@see irtypeinfo.h) if not available.
650  *  Invalidates trout information as new casts are generated.
651  *
652  *  @param gppt_fct A function that returns a pointer type that points
653  *    to the type given as argument.  If this parameter is NULL, a default
654  *    function is used that either uses trout information or performs a O(n)
655  *    search to find an existing pointer type.  If it can not find a type,
656  *    generates a pointer type with mode_P_mach and suffix "cc_ptr_tp".
657  */
658 FIRM_API void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
659
660 /**  Insert Casts so that class type casts conform exactly with the type hierarchy
661  *   in given graph.
662  *
663  *   For more details see normalize_irp_class_casts().
664  *
665  *  This transformation requires that type information is computed. @see irtypeinfo.h.
666  */
667 FIRM_API void normalize_irg_class_casts(ir_graph *irg,
668                                         gen_pointer_type_to_func gppt_fct);
669
670 /** Optimize casting between class types.
671  *
672  *    class A { m(); }
673  *    class B extends A { }
674  *    class C extends B {}
675  *  Performs the following transformations:
676  *    C c = (C)(B)(A)(B)new C()  --> C c = (C)(B)newC() --> C c = new C()
677  *    (Optimizing downcasts as A a = (A)(B)(new A()) --> A a = new A() can
678  *     be suppressed by setting the flag opt_suppress_downcast_optimization.
679  *     Downcasting A to B might cause an exception.  It is not clear
680  *     whether this is modeled by the Firm Cast node, as it has no exception
681  *     outputs.);
682  *  If there is inh_m() that overwrites m() in B:
683  *    ((A) new B()).m()  --> (new B()).inh_m()
684  *  Phi((A)x, (A)y)  --> (A) Phi (x, y)  if (A) is an upcast.
685  *
686  *  Computes type information if not available. @see irtypeinfo.h.
687  *  Typeinformation is valid after optimization.
688  *  Invalidates trout information.
689  */
690 FIRM_API void optimize_class_casts(void);
691
692 /**
693  * CLiff Click's combo algorithm from
694  *   "Combining Analyses, combining Optimizations".
695  *
696  * Does conditional constant propagation, unreachable code elimination and
697  * optimistic global value numbering at once.
698  *
699  * @param irg  the graph to run on
700  */
701 FIRM_API void combo(ir_graph *irg);
702
703 /**
704  * Creates an ir_graph pass for combo.
705  *
706  * @param name     the name of this pass or NULL
707  *
708  * @return  the newly created ir_graph pass
709  */
710 FIRM_API ir_graph_pass_t *combo_pass(const char *name);
711
712 /** pointer to an optimization function */
713 typedef void (*opt_ptr)(ir_graph *irg);
714
715 /**
716  * Heuristic inliner. Calculates a benefice value for every call and inlines
717  * those calls with a value higher than the threshold.
718  *
719  * @param maxsize             Do not inline any calls if a method has more than
720  *                            maxsize firm nodes.  It may reach this limit by
721  *                            inlining.
722  * @param inline_threshold    inlining threshold
723  * @param after_inline_opt    optimizations performed immediately after inlining
724  *                            some calls
725  */
726 FIRM_API void inline_functions(unsigned maxsize, int inline_threshold,
727                                opt_ptr after_inline_opt);
728
729 /**
730  * Creates an ir_prog pass for inline_functions().
731  *
732  * @param name               the name of this pass or NULL
733  * @param maxsize            Do not inline any calls if a method has more than
734  *                           maxsize firm nodes.  It may reach this limit by
735  *                           inlineing.
736  * @param inline_threshold   inlining threshold
737  * @param after_inline_opt   a function that is called after inlining a
738  *                           procedure. You should run fast local optimisations
739  *                           here which cleanup the graph before further
740  *                           inlining
741  *
742  * @return  the newly created ir_prog pass
743  */
744 FIRM_API ir_prog_pass_t *inline_functions_pass(const char *name,
745                 unsigned maxsize, int inline_threshold, opt_ptr after_inline_opt);
746
747 /**
748  * Combines congruent blocks into one.
749  *
750  * @param irg   The IR-graph to optimize.
751  */
752 FIRM_API void shape_blocks(ir_graph *irg);
753
754 /**
755  * Creates an ir_graph pass for shape_blocks().
756  *
757  * @param name   the name of this pass or NULL
758  *
759  * @return  the newly created ir_graph pass
760  */
761 FIRM_API ir_graph_pass_t *shape_blocks_pass(const char *name);
762
763 /**
764  * Perform loop inversion on a given graph.
765  * Loop inversion transforms a head controlled loop (like while(...) {} and
766  * for(...) {}) into a foot controlled loop (do {} while(...)).
767  */
768 FIRM_API void do_loop_inversion(ir_graph *irg);
769
770 /**
771  * Perform loop unrolling on a given graph.
772  * Loop unrolling multiplies the number loop completely by a number found
773  * through a heuristic.
774  */
775 FIRM_API void do_loop_unrolling(ir_graph *irg);
776
777 /**
778  * Perform loop peeling on a given graph.
779  */
780 FIRM_API void do_loop_peeling(ir_graph *irg);
781
782 /**
783  * Creates an ir_graph pass for loop inversion.
784  *
785  * @param name     the name of this pass or NULL
786  *
787  * @return  the newly created ir_graph pass
788  */
789 FIRM_API ir_graph_pass_t *loop_inversion_pass(const char *name);
790
791 /**
792  * Creates an ir_graph pass for loop unrolling.
793  *
794  * @param name     the name of this pass or NULL
795  *
796  * @return  the newly created ir_graph pass
797  */
798 FIRM_API ir_graph_pass_t *loop_unroll_pass(const char *name);
799
800 /**
801  * Creates an ir_graph pass for loop peeling.
802  *
803  * @param name     the name of this pass or NULL
804  *
805  * @return  the newly created ir_graph pass
806  */
807 FIRM_API ir_graph_pass_t *loop_peeling_pass(const char *name);
808
809 /**
810  * Creates an ir_graph pass for set_vrp_data()
811  *
812  * @param name The name of this pass or NULL
813  *
814  * @return the newly created ir_graph pass
815  */
816 FIRM_API ir_graph_pass_t *set_vrp_pass(const char *name);
817
818 /**
819  * Removes all entities which are unused.
820  *
821  * Unused entities have ir_visibility_local and are not used directly or
822  * indirectly through entities/code visible outside the compilation unit.
823  * This is usually conservative than gc_irgs, but does not respect properties
824  * of object-oriented programs.
825  */
826 FIRM_API void garbage_collect_entities(void);
827
828 /** Pass for garbage_collect_entities */
829 FIRM_API ir_prog_pass_t *garbage_collect_entities_pass(const char *name);
830
831 /**
832  * Performs dead node elimination by copying the ir graph to a new obstack.
833  *
834  *  The major intention of this pass is to free memory occupied by
835  *  dead nodes and outdated analyzes information.  Further this
836  *  function removes Bad predecessors from Blocks and the corresponding
837  *  inputs to Phi nodes.  This opens optimization potential for other
838  *  optimizations.  Further this phase reduces dead Block<->Jmp
839  *  self-cycles to Bad nodes.
840  *
841  *  Dead_node_elimination is only performed if options `optimize' and
842  *  `opt_dead_node_elimination' are set.  The graph may
843  *  not be in state phase_building.  The outs datastructure is freed,
844  *  the outs state set to outs_none.  Backedge information is conserved.
845  *  Removes old attributes of nodes.  Sets link field to NULL.
846  *  Callee information must be freed (irg_callee_info_none).
847  *
848  * @param irg  The graph to be optimized.
849  */
850 FIRM_API void dead_node_elimination(ir_graph *irg);
851
852 /**
853  * Creates an ir_graph pass for dead_node_elimination().
854  *
855  * @param name     the name of this pass or NULL
856  *
857  * @return  the newly created ir_graph pass
858  */
859 FIRM_API ir_graph_pass_t *dead_node_elimination_pass(const char *name);
860
861 /**
862  * Inlines a method at the given call site.
863  *
864  *  Removes the call node and splits the basic block the call node
865  *  belongs to.  Inserts a copy of the called graph between these nodes.
866  *  Assumes that call is a Call node in current_ir_graph and that
867  *  the type in the Call nodes type attribute is the same as the
868  *  type of the called graph.
869  *  Further it assumes that all Phi nodes in a block of current_ir_graph
870  *  are assembled in a "link" list in the link field of the corresponding
871  *  block nodes.  Further assumes that all Proj nodes are in a "link" list
872  *  in the nodes producing the tuple.  (This is only an optical feature
873  *  for the graph.)  Conserves this feature for the old
874  *  nodes of the graph.  This precondition can be established by a call to
875  *  collect_phisprojs(), see irgmod.h.
876  *  As dead_node_elimination this function reduces dead Block<->Jmp
877  *  self-cycles to Bad nodes.
878  *
879  *  Called_graph must be unequal to current_ir_graph.   Will not inline
880  *  if they are equal.
881  *  Sets visited masterflag in current_ir_graph to the max of the flag in
882  *  current and called graph.
883  *  Assumes that both, the called and the calling graph are in state
884  *  "op_pin_state_pinned".
885  *  It is recommended to call local_optimize_graph() after inlining as this
886  *  function leaves a set of obscure Tuple nodes, e.g. a Proj-Tuple-Jmp
887  *  combination as control flow operation.
888  *
889  *  @param call          the call node that should be inlined
890  *  @param called_graph  the IR-graph that is called at call
891  *
892  *  @return zero if method could not be inlined (recursion for instance),
893  *          non-zero if all went ok
894  */
895 FIRM_API int inline_method(ir_node *call, ir_graph *called_graph);
896
897 /**
898  * Code Placement.
899  *
900  * Pins all floating nodes to a block where they
901  * will be executed only if needed.   Depends on the flag opt_global_cse.
902  * Graph may not be in phase_building.  Does not schedule control dead
903  * code.  Uses dominator information which it computes if the irg is not
904  * in state dom_consistent.  Destroys the out information as it moves nodes
905  * to other blocks.  Optimizes Tuples in Control edges.
906  *
907  * Call remove_critical_cf_edges() before place_code().  This normalizes
908  * the control flow graph so that for all operations a basic block exists
909  * where they can be optimally placed.
910  */
911 FIRM_API void place_code(ir_graph *irg);
912
913 /**
914  * Creates an ir_graph pass for place_code().
915  * This pass enables GCSE, runs optimize_graph_df() and finally
916  * place_code();
917  *
918  * @param name     the name of this pass or NULL
919  *
920  * @return  the newly created ir_graph pass
921  */
922 FIRM_API ir_graph_pass_t *place_code_pass(const char *name);
923
924 /**
925  * Determines information about the values of nodes and perform simplifications
926  * using this information.  This optimization performs a data-flow analysis to
927  * find the minimal fixpoint.
928  */
929 FIRM_API void fixpoint_vrp(ir_graph*);
930
931 /**
932  * Creates an ir_graph pass for fixpoint_vrp().
933  * This pass dDetermines information about the values of nodes
934  * and perform simplifications using this information.
935  * This optimization performs a data-flow analysis to
936  * find the minimal fixpoint.
937  *
938  * @param name     the name of this pass or NULL
939  *
940  * @return  the newly created ir_graph pass
941  */
942 FIRM_API ir_graph_pass_t *fixpoint_vrp_irg_pass(const char *name);
943
944 /**
945  * Checks if the value of a node is != 0.
946  *
947  * This is a often needed case, so we handle here Confirm
948  * nodes too.
949  *
950  * @param n        a node representing the value
951  * @param confirm  if n is confirmed to be != 0, returns
952  *                 the the Confirm-node, else NULL
953  */
954 FIRM_API int value_not_zero(const ir_node *n, const ir_node **confirm);
955
956 /**
957  * Checks if the value of a node cannot represent a NULL pointer.
958  *
959  * - If option sel_based_null_check_elim is enabled, all
960  *   Sel nodes can be skipped.
961  * - A SymConst(entity) is NEVER a NULL pointer
962  * - A Const != NULL is NEVER a NULL pointer
963  * - Confirms are evaluated
964  *
965  * @param n        a node representing the value
966  * @param confirm  if n is confirmed to be != NULL, returns
967  *                 the the Confirm-node, else NULL
968  */
969 FIRM_API int value_not_null(const ir_node *n, const ir_node **confirm);
970
971 /**
972  * Checks if the value of a node can be confirmed >= 0 or <= 0,
973  * If the mode of the value did not honor signed zeros, else
974  * check for >= 0 or < 0.
975  *
976  * @param n  a node representing the value
977  */
978 FIRM_API ir_value_classify_sign classify_value_sign(ir_node *n);
979
980 /**
981  * Returns the value of a Cmp if one or both predecessors are Confirm nodes.
982  *
983  * @param cmp       the compare node that will be evaluated
984  * @param left      the left operand of the Cmp
985  * @param right     the right operand of the Cmp
986  * @param relation  the compare relation
987  */
988 FIRM_API ir_tarval *computed_value_Cmp_Confirm(
989         const ir_node *cmp, ir_node *left, ir_node *right, ir_relation relation);
990
991 /** Type of callbacks for creating entities of the compiler library */
992 typedef ir_entity *(*compilerlib_entity_creator_t)(ident *id, ir_type *mt);
993
994 /**
995  * Sets the compilerlib entity creation callback that is used to create
996  * compilerlib function entities.
997  *
998  * @param cb  the new compilerlib entity creation callback
999  */
1000 FIRM_API void set_compilerlib_entity_creator(compilerlib_entity_creator_t cb);
1001
1002 /** Returns the compilerlib entity creation callback. */
1003 FIRM_API compilerlib_entity_creator_t get_compilerlib_entity_creator(void);
1004
1005 /**
1006  * Constructs the entity for a given function using the current compilerlib
1007  * entity creation callback.
1008  *
1009  * @param id  the identifier of the compilerlib function
1010  * @param mt  the method type of the compilerlib function
1011  */
1012 FIRM_API ir_entity *create_compilerlib_entity(ident *id, ir_type *mt);
1013
1014 /** @} */
1015
1016 #include "end.h"
1017
1018 #endif