Added missing API docu, improved existing API docu
[libfirm] / include / libfirm / iroptimize.h
index 4fae6e9..793f8a4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2010 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
 /**
  * @file
  * @brief   Available Optimisations of libFirm.
- * @version $Id$
  */
 #ifndef FIRM_IROPTIMIZE_H
 #define FIRM_IROPTIMIZE_H
 
 #include "firm_types.h"
+#include "nodeops.h"
+#include "begin.h"
+
+/**
+ * @defgroup iroptimize  Transformations and Optimisations
+ * @{
+ */
 
 /**
  * Control flow optimization.
  * and propagates dead control flow by calling equivalent_node().
  * Independent of compiler flag it removes Tuples from cf edges,
  * Bad predecessors from Blocks and Phis, and unnecessary predecessors of End.
- *
- * @bug So far destroys backedge information.
- * @bug Chokes on Id nodes if called in a certain order with other
- *      optimizations.  Call local_optimize_graph() before to remove
- *      Ids.
+ * Destroys backedge information.
  */
-void optimize_cf(ir_graph *irg);
+FIRM_API void optimize_cf(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for optimize_cf().
@@ -51,14 +53,14 @@ void optimize_cf(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *optimize_cf_pass(const char *name);
+FIRM_API ir_graph_pass_t *optimize_cf_pass(const char *name);
 
 /**
  * Perform path-sensitive jump threading on the given graph.
  *
  * @param irg  the graph
  */
-void opt_jumpthreading(ir_graph* irg);
+FIRM_API void opt_jumpthreading(ir_graph* irg);
 
 /**
  * Creates an ir_graph pass for opt_jumpthreading().
@@ -67,15 +69,15 @@ void opt_jumpthreading(ir_graph* irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_jumpthreading_pass(const char *name);
+FIRM_API ir_graph_pass_t *opt_jumpthreading_pass(const char *name);
 
 /**
- * Try to simplify boolean expression in the given ir graph.
+ * Simplifies boolean expression in the given ir graph.
  * eg. x < 5 && x < 6 becomes x < 5
  *
  * @param irg  the graph
  */
-void opt_bool(ir_graph *irg);
+FIRM_API void opt_bool(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for opt_bool().
@@ -84,16 +86,16 @@ void opt_bool(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_bool_pass(const char *name);
+FIRM_API ir_graph_pass_t *opt_bool_pass(const char *name);
 
 /**
- * Try to reduce the number of conv nodes in the given ir graph.
+ * Reduces the number of Conv nodes in the given ir graph.
  *
  * @param irg  the graph
  *
  * @return non-zero if the optimization could be applied, 0 else
  */
-int conv_opt(ir_graph *irg);
+FIRM_API int conv_opt(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for conv_opt().
@@ -102,16 +104,7 @@ int conv_opt(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *conv_opt_pass(const char *name);
-
-/**
- * Do the scalar replacement optimization.
- * Make a date flow analyze and split the
- * data flow edges.
- *
- * @param irg  the graph which should be optimized
- */
-void data_flow_scalar_replacement_opt(ir_graph *irg);
+FIRM_API ir_graph_pass_t *conv_opt_pass(const char *name);
 
 /**
  * A callback that checks whether a entity is an allocation
@@ -120,16 +113,17 @@ void data_flow_scalar_replacement_opt(ir_graph *irg);
 typedef int (*check_alloc_entity_func)(ir_entity *ent);
 
 /**
- * Do simple and fast escape analysis for one graph.
+ * Performs simple and fast escape analysis for one graph.
  *
  * @param irg       the graph
  * @param callback  a callback function to check whether a
  *                  given entity is a allocation call
  */
-void escape_enalysis_irg(ir_graph *irg, check_alloc_entity_func callback);
+FIRM_API void escape_enalysis_irg(ir_graph *irg,
+                                  check_alloc_entity_func callback);
 
 /**
- * Do simple and fast escape analysis for all graphs.
+ * Performs simple and fast escape analysis for all graphs.
  *
  * This optimization implements a simple and fast but inexact
  * escape analysis. Some addresses might be marked as 'escaped' even
@@ -150,7 +144,8 @@ void escape_enalysis_irg(ir_graph *irg, check_alloc_entity_func callback);
  *
  * This is most effective on Java where no other stack variables exists.
  */
-void escape_analysis(int run_scalar_replace, check_alloc_entity_func callback);
+FIRM_API void escape_analysis(int run_scalar_replace,
+                              check_alloc_entity_func callback);
 
 /**
  * Optimize function calls by handling const functions.
@@ -165,7 +160,7 @@ void escape_analysis(int run_scalar_replace, check_alloc_entity_func callback);
  * This is a rather strong criteria, so do not expect that a
  * lot of functions will be found. Moreover, all of them might
  * already be inlined if inlining is activated.
- * Anyway, it might be good for handling builtin's or pseudo-graphs,
+ * Anyway, it might be good for handling builtin's
  * even if the later read/write memory (but we know how).
  *
  * This optimizations read the irg_const_function property of
@@ -173,38 +168,16 @@ void escape_analysis(int run_scalar_replace, check_alloc_entity_func callback);
  * graphs.
  *
  * If callee information is valid, we also optimize polymorphic Calls.
- *
- * @param force_run  if non-zero, an optimization run is started even
- *                   if no const function graph was detected.
- *                   Else calls are only optimized if at least one
- *                   const function graph was detected.
- * @param callback   a callback function to check whether a
- *                   given entity is a allocation call
- *
- * If the frontend created external entities with the irg_const_function
- * property set, the force_run parameter should be set, else
- * should be unset.
- *
- * @note This optimization destroys the link fields of nodes.
  */
-void optimize_funccalls(int force_run, check_alloc_entity_func callback);
+FIRM_API void optimize_funccalls(void);
 
 /**
  * Creates an ir_prog pass for optimize_funccalls().
  *
  * @param name       the name of this pass or NULL
- * @param force_run  if non-zero, an optimization run is started even
- *                   if no const function graph was detected.
- *                   Else calls are only optimized if at least one
- *                   const function graph was detected.
- * @param callback   a callback function to check whether a
- *                   given entity is a allocation call
- *
  * @return  the newly created ir_prog pass
  */
-ir_prog_pass_t *optimize_funccalls_pass(
-       const char *name,
-       int force_run, check_alloc_entity_func callback);
+FIRM_API ir_prog_pass_t *optimize_funccalls_pass(const char *name);
 
 /**
  * Does Partial Redundancy Elimination combined with
@@ -215,7 +188,7 @@ ir_prog_pass_t *optimize_funccalls_pass(
  *
  * @param irg  the graph
  */
-void do_gvn_pre(ir_graph *irg);
+FIRM_API void do_gvn_pre(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for do_gvn_pre().
@@ -224,54 +197,47 @@ void do_gvn_pre(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *do_gvn_pre_pass(const char *name);
+FIRM_API ir_graph_pass_t *do_gvn_pre_pass(const char *name);
 
 /**
- * This function is called to evaluate, if a mux can build
- * of the current architecture.
+ * This function is called to evaluate, if a
+ * mux(@p sel, @p mux_false, @p mux_true) should be built for the current
+ * architecture.
  * If it returns non-zero, a mux is created, else the code
  * is not modified.
  * @param sel        A selector of a Cond.
- * @param phi_list   List of Phi nodes about to be converted (linked via get_Phi_next() field)
+ * @param phi_list   phi node to be converted
  * @param i          First data predecessor involved in if conversion
  * @param j          Second data predecessor involved in if conversion
  */
-typedef int (*arch_allow_ifconv_func)(ir_node *sel, ir_node* phi_list, int i, int j);
-
-/**
- * The parameters structure.
- */
-struct ir_settings_if_conv_t {
-       int                 max_depth;       /**< The maximum depth up to which expressions
-                                              are examined when it has to be decided if they
-                                              can be placed into another block. */
-       arch_allow_ifconv_func allow_ifconv; /**< Evaluator function, if not set all possible Psi
-                                              nodes will be created. */
-};
+typedef int (*arch_allow_ifconv_func)(ir_node *sel, ir_node *mux_false,
+                                      ir_node *mux_true);
 
 /**
  * Perform If conversion on a graph.
  *
  * @param irg The graph.
- * @param params The parameters for the if conversion.
  *
  * Cannot handle blocks with Bad control predecessors, so call it after control
  * flow optimization.
  */
-void opt_if_conv(ir_graph *irg, const ir_settings_if_conv_t *params);
+FIRM_API void opt_if_conv(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for opt_if_conv().
  *
  * @param name     the name of this pass or NULL
- * @param params   The parameters for the if conversion.
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_if_conv_pass(
-       const char *name, const ir_settings_if_conv_t *params);
+FIRM_API ir_graph_pass_t *opt_if_conv_pass(const char *name);
 
-void opt_sync(ir_graph *irg);
+/**
+ * Tries to reduce dependencies for memory nodes where possible by parallelizing
+ * them and synchronizing with Sync nodes
+ * @param irg   the graph where memory operations should be parallelized
+ */
+FIRM_API void opt_parallelize_mem(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for opt_sync().
@@ -280,9 +246,9 @@ void opt_sync(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_sync_pass(const char *name);
+FIRM_API ir_graph_pass_t *opt_parallelize_mem_pass(const char *name);
 
-/*
+/**
  * Check if we can replace the load by a given const from
  * the const code irg.
  *
@@ -293,7 +259,7 @@ ir_graph_pass_t *opt_sync_pass(const char *name);
  *         returns a copy of the constant (possibly Conv'ed) on the
  *         current_ir_graph
  */
-ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c);
+FIRM_API ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c);
 
 /**
  * Load/Store optimization.
@@ -322,7 +288,7 @@ ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c);
  *
  * @return non-zero if the optimization could be applied, 0 else
  */
-int optimize_load_store(ir_graph *irg);
+FIRM_API int optimize_load_store(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for optimize_load_store().
@@ -331,14 +297,14 @@ int optimize_load_store(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *optimize_load_store_pass(const char *name);
+FIRM_API ir_graph_pass_t *optimize_load_store_pass(const char *name);
 
 /**
  * New experimental alternative to optimize_load_store.
  * Based on a dataflow analysis, so load/stores are moved out of loops
  * where possible
  */
-int opt_ldst(ir_graph *irg);
+FIRM_API int opt_ldst(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for opt_ldst().
@@ -347,21 +313,18 @@ int opt_ldst(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_ldst_pass(const char *name);
+FIRM_API ir_graph_pass_t *opt_ldst_pass(const char *name);
 
 /**
- * Do Loop unrolling in the given graph.
- */
-void optimize_loop_unrolling(ir_graph *irg);
-
-/**
- * Creates an ir_graph pass for optimize_loop_unrolling().
+ * Optimize loops by peeling or unrolling them if beneficial.
  *
- * @param name     the name of this pass or NULL
+ * @param irg  The graph whose loops will be processed
  *
- * @return  the newly created ir_graph pass
+ * This function did not change the graph, only its frame type.
+ * The layout state of the frame type will be set to layout_undefined
+ * if entities were removed.
  */
-ir_graph_pass_t *optimize_loop_unrolling_pass(const char *name);
+FIRM_API void loop_optimization(ir_graph *irg);
 
 /**
  * Optimize the frame type of an irg by removing
@@ -369,11 +332,11 @@ ir_graph_pass_t *optimize_loop_unrolling_pass(const char *name);
  *
  * @param irg  The graph whose frame type will be optimized
  *
- * This function did not change the graph, only it's frame type.
+ * This function did not change the graph, only its frame type.
  * The layout state of the frame type will be set to layout_undefined
  * if entities were removed.
  */
-void opt_frame_irg(ir_graph *irg);
+FIRM_API void opt_frame_irg(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for opt_frame_irg().
@@ -382,7 +345,7 @@ void opt_frame_irg(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_frame_irg_pass(const char *name);
+FIRM_API ir_graph_pass_t *opt_frame_irg_pass(const char *name);
 
 /** Possible flags for the Operator Scalar Replacement. */
 typedef enum osr_flags {
@@ -394,13 +357,11 @@ typedef enum osr_flags {
                                               induction variables. */
 } osr_flags;
 
-/* FirmJNI cannot handle identical enum values... */
-
 /** default setting */
 #define osr_flag_default osr_flag_lftr_with_ov_check
 
 /**
- * Do the Operator Scalar Replacement optimization and linear
+ * Performs the Operator Scalar Replacement optimization and linear
  * function test replacement for loop control.
  * Can be switched off using the set_opt_strength_red() flag.
  * In that case, only remove_phi_cycles() is executed.
@@ -457,7 +418,7 @@ typedef enum osr_flags {
  *
  * This algorithm destroys the link field of nodes.
  */
-void opt_osr(ir_graph *irg, unsigned flags);
+FIRM_API void opt_osr(ir_graph *irg, unsigned flags);
 
 /**
  * Creates an ir_graph pass for remove_phi_cycles().
@@ -467,7 +428,7 @@ void opt_osr(ir_graph *irg, unsigned flags);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags);
+FIRM_API ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags);
 
 /**
  * Removes useless Phi cycles, i.e cycles of Phi nodes with only one
@@ -479,7 +440,7 @@ ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags);
  *
  * This algorithm destroys the link field of nodes.
  */
-void remove_phi_cycles(ir_graph *irg);
+FIRM_API void remove_phi_cycles(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for remove_phi_cycles().
@@ -488,14 +449,14 @@ void remove_phi_cycles(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *remove_phi_cycles_pass(const char *name);
+FIRM_API ir_graph_pass_t *remove_phi_cycles_pass(const char *name);
 
 
 /** A default threshold. */
-#define DEFAULT_CLONE_THRESHOLD 300
+#define DEFAULT_CLONE_THRESHOLD 20
 
 /**
- * Do procedure cloning. Evaluate a heuristic weight for every
+ * Performs procedure cloning. Evaluate a heuristic weight for every
  * Call(..., Const, ...). If the weight is bigger than threshold,
  * clone the entity and fix the calls.
  *
@@ -505,7 +466,7 @@ ir_graph_pass_t *remove_phi_cycles_pass(const char *name);
  * when executing a cloned method. If threshold is 0.0, every possible
  * call is cloned.
  */
-void proc_cloning(float threshold);
+FIRM_API void proc_cloning(float threshold);
 
 /**
  * Creates an ir_prog pass for proc_cloning().
@@ -515,7 +476,7 @@ void proc_cloning(float threshold);
  *
  * @return  the newly created ir_prog pass
  */
-ir_prog_pass_t *proc_cloning_pass(const char *name, float threshold);
+FIRM_API ir_prog_pass_t *proc_cloning_pass(const char *name, float threshold);
 
 /**
  * Reassociation.
@@ -525,7 +486,7 @@ ir_prog_pass_t *proc_cloning_pass(const char *name, float threshold);
  * and for address expression.
  * Works only if Constant folding is activated.
  *
- * Uses loop information to detect loop-invariant (ie contant
+ * Uses loop information to detect loop-invariant (i.e. contant
  * inside the loop) values.
  *
  * See Muchnik 12.3.1 Algebraic Simplification and Reassociation of
@@ -533,7 +494,7 @@ ir_prog_pass_t *proc_cloning_pass(const char *name, float threshold);
  *
  * @return non-zero if the optimization could be applied, 0 else
  */
-int optimize_reassociation(ir_graph *irg);
+FIRM_API int optimize_reassociation(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for optimize_reassociation().
@@ -542,7 +503,7 @@ int optimize_reassociation(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *optimize_reassociation_pass(const char *name);
+FIRM_API ir_graph_pass_t *optimize_reassociation_pass(const char *name);
 
 /**
  * Normalize the Returns of a graph by creating a new End block
@@ -564,7 +525,7 @@ ir_graph_pass_t *optimize_reassociation_pass(const char *name);
  *   res = c;
  * return res;
  */
-void normalize_one_return(ir_graph *irg);
+FIRM_API void normalize_one_return(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for normalize_one_return().
@@ -573,7 +534,7 @@ void normalize_one_return(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *normalize_one_return_pass(const char *name);
+FIRM_API ir_graph_pass_t *normalize_one_return_pass(const char *name);
 
 /**
  * Normalize the Returns of a graph by moving
@@ -595,7 +556,7 @@ ir_graph_pass_t *normalize_one_return_pass(const char *name);
  * else
  *   return c;
  */
-void normalize_n_returns(ir_graph *irg);
+FIRM_API void normalize_n_returns(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for normalize_n_returns().
@@ -604,18 +565,18 @@ void normalize_n_returns(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *normalize_n_returns_pass(const char *name);
+FIRM_API ir_graph_pass_t *normalize_n_returns_pass(const char *name);
 
 /**
- * Do the scalar replacement optimization.
- * Replace local compound entities (like structures and arrays)
+ * Performs the scalar replacement optimization.
+ * Replaces local compound entities (like structures and arrays)
  * with atomic values if possible. Does not handle classes yet.
  *
  * @param irg  the graph which should be optimized
  *
  * @return non-zero, if at least one entity was replaced
  */
-int scalar_replacement_opt(ir_graph *irg);
+FIRM_API int scalar_replacement_opt(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for scalar_replacement_opt().
@@ -624,10 +585,7 @@ int scalar_replacement_opt(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *scalar_replacement_opt_pass(const char *name);
-
-/** Performs strength reduction for the passed graph. */
-void reduce_strength(ir_graph *irg);
+FIRM_API ir_graph_pass_t *scalar_replacement_opt_pass(const char *name);
 
 /**
  * Optimizes tail-recursion calls by converting them into loops.
@@ -645,7 +603,7 @@ void reduce_strength(ir_graph *irg);
  *
  * @return non-zero if the optimization could be applied, 0 else
  */
-int opt_tail_rec_irg(ir_graph *irg);
+FIRM_API int opt_tail_rec_irg(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for opt_tail_rec_irg().
@@ -654,7 +612,7 @@ int opt_tail_rec_irg(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *opt_tail_rec_irg_pass(const char *name);
+FIRM_API ir_graph_pass_t *opt_tail_rec_irg_pass(const char *name);
 
 /**
  * Optimize tail-recursion calls for all IR-Graphs.
@@ -667,7 +625,7 @@ ir_graph_pass_t *opt_tail_rec_irg_pass(const char *name);
  * because it expects the memory edges pointing to calls, which might be
  * removed by optimize_funccalls().
  */
-void opt_tail_recursion(void);
+FIRM_API void opt_tail_recursion(void);
 
 /**
  * Creates an ir_prog pass for opt_tail_recursion().
@@ -676,7 +634,7 @@ void opt_tail_recursion(void);
  *
  * @return  the newly created ir_prog pass
  */
-ir_prog_pass_t *opt_tail_recursion_pass(const char *name);
+FIRM_API ir_prog_pass_t *opt_tail_recursion_pass(const char *name);
 
 /** This is the type for a method, that returns a pointer type to
  *  tp.  This is needed in the normalization. */
@@ -707,7 +665,7 @@ typedef ir_type *(*gen_pointer_type_to_func)(ir_type *tp);
  *    search to find an existing pointer type.  If it can not find a type,
  *    generates a pointer type with mode_P_mach and suffix "cc_ptr_tp".
  */
-void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
+FIRM_API void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
 
 /**  Insert Casts so that class type casts conform exactly with the type hierarchy
  *   in given graph.
@@ -716,7 +674,8 @@ void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
  *
  *  This transformation requires that type information is computed. @see irtypeinfo.h.
  */
-void normalize_irg_class_casts(ir_graph *irg, gen_pointer_type_to_func gppt_fct);
+FIRM_API void normalize_irg_class_casts(ir_graph *irg,
+                                        gen_pointer_type_to_func gppt_fct);
 
 /** Optimize casting between class types.
  *
@@ -738,17 +697,18 @@ void normalize_irg_class_casts(ir_graph *irg, gen_pointer_type_to_func gppt_fct)
  *  Typeinformation is valid after optimization.
  *  Invalidates trout information.
  */
-void optimize_class_casts(void);
+FIRM_API void optimize_class_casts(void);
 
 /**
- * CLiff Click's combo algorithm from "Combining Analyses, combining Optimizations".
+ * CLiff Click's combo algorithm from
+ *   "Combining Analyses, combining Optimizations".
  *
- * Does conditional constant propagation, unreachable code elimination and optimistic
- * global value numbering at once.
+ * Does conditional constant propagation, unreachable code elimination and
+ * optimistic global value numbering at once.
  *
  * @param irg  the graph to run on
  */
-void combo(ir_graph *irg);
+FIRM_API void combo(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for combo.
@@ -757,7 +717,7 @@ void combo(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *combo_pass(const char *name);
+FIRM_API ir_graph_pass_t *combo_pass(const char *name);
 
 /**
  * Inlines all small methods at call sites where the called address comes
@@ -772,13 +732,13 @@ ir_graph_pass_t *combo_pass(const char *name);
  * size are inlined.  Further only a limited number of calls are inlined.
  * If the method contains more than 1024 inlineable calls none will be
  * inlined.
- * Inlining is only performed if flags `optimize' and `inlineing' are set.
+ * Inlining is only performed if flags `optimize' and `inlining' are set.
  * The graph may not be in state phase_building.
  * It is recommended to call local_optimize_graph() after inlining as this
  * function leaves a set of obscure Tuple nodes, e.g. a Proj-Tuple-Jmp
  * combination as control flow operation.
  */
-void inline_small_irgs(ir_graph *irg, int size);
+FIRM_API void inline_small_irgs(ir_graph *irg, int size);
 
 /**
  * Creates an ir_graph pass for inline_small_irgs().
@@ -788,33 +748,33 @@ void inline_small_irgs(ir_graph *irg, int size);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *inline_small_irgs_pass(const char *name, int size);
+FIRM_API ir_graph_pass_t *inline_small_irgs_pass(const char *name, int size);
 
 /**
  * Inlineing with a different heuristic than inline_small_irgs().
  *
- * Inlines leave functions.  If inlinening creates new leave
+ * Inlines leave functions.  If inlining creates new leave
  * function inlines these, too. (If g calls f, and f calls leave h,
  * h is first inlined in f and then f in g.)
  *
  * Then inlines all small functions (this is not recursive).
  *
- * For a heuristic this inlineing uses firm node counts.  It does
+ * For a heuristic this inlining uses firm node counts.  It does
  * not count auxiliary nodes as Proj, Tuple, End, Start, Id, Sync.
  * If the ignore_runtime flag is set, calls to functions marked with the
  * mtp_property_runtime property are ignored.
  *
  * @param maxsize         Do not inline any calls if a method has more than
  *                        maxsize firm nodes.  It may reach this limit by
- *                        inlineing.
+ *                        inlining.
  * @param leavesize       Inline leave functions if they have less than leavesize
  *                        nodes.
  * @param size            Inline all function smaller than size.
  * @param ignore_runtime  count a function only calling runtime functions as
  *                        leave
  */
-void inline_leave_functions(unsigned maxsize, unsigned leavesize,
-               unsigned size, int ignore_runtime);
+FIRM_API void inline_leave_functions(unsigned maxsize, unsigned leavesize,
+                                     unsigned size, int ignore_runtime);
 
 /**
  * Creates an ir_prog pass for inline_leave_functions().
@@ -822,7 +782,7 @@ void inline_leave_functions(unsigned maxsize, unsigned leavesize,
  * @param name            the name of this pass or NULL
  * @param maxsize         Do not inline any calls if a method has more than
  *                        maxsize firm nodes.  It may reach this limit by
- *                        inlineing.
+ *                        inlining.
  * @param leavesize       Inline leave functions if they have less than leavesize
  *                        nodes.
  * @param size            Inline all function smaller than size.
@@ -831,9 +791,12 @@ void inline_leave_functions(unsigned maxsize, unsigned leavesize,
  *
  * @return  the newly created ir_prog pass
  */
-ir_prog_pass_t *inline_leave_functions_pass(
-       const char *name, unsigned maxsize, unsigned leavesize,
-       unsigned size, int ignore_runtime);
+FIRM_API ir_prog_pass_t *inline_leave_functions_pass(const char *name,
+               unsigned maxsize, unsigned leavesize, unsigned size,
+               int ignore_runtime);
+
+/** pointer to an optimization function */
+typedef void (*opt_ptr)(ir_graph *irg);
 
 /**
  * Heuristic inliner. Calculates a benefice value for every call and inlines
@@ -843,8 +806,11 @@ ir_prog_pass_t *inline_leave_functions_pass(
  *                            maxsize firm nodes.  It may reach this limit by
  *                            inlining.
  * @param inline_threshold    inlining threshold
+ * @param after_inline_opt    optimizations performed immediately after inlining
+ *                            some calls
  */
-void inline_functions(unsigned maxsize, int inline_threshold);
+FIRM_API void inline_functions(unsigned maxsize, int inline_threshold,
+                               opt_ptr after_inline_opt);
 
 /**
  * Creates an ir_prog pass for inline_functions().
@@ -852,13 +818,17 @@ void inline_functions(unsigned maxsize, int inline_threshold);
  * @param name               the name of this pass or NULL
  * @param maxsize            Do not inline any calls if a method has more than
  *                           maxsize firm nodes.  It may reach this limit by
      *                     inlineing.
*                           inlineing.
  * @param inline_threshold   inlining threshold
+ * @param after_inline_opt   a function that is called after inlining a
+ *                           procedure. You should run fast local optimisations
+ *                           here which cleanup the graph before further
+ *                           inlining
  *
  * @return  the newly created ir_prog pass
  */
-ir_prog_pass_t *inline_functions_pass(
-       const char *name, unsigned maxsize, int inline_threshold);
+FIRM_API ir_prog_pass_t *inline_functions_pass(const char *name,
+               unsigned maxsize, int inline_threshold, opt_ptr after_inline_opt);
 
 /**
  * Combines congruent blocks into one.
@@ -867,7 +837,7 @@ ir_prog_pass_t *inline_functions_pass(
  *
  * @return non-zero if the graph was transformed
  */
-int shape_blocks(ir_graph *irg);
+FIRM_API int shape_blocks(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for shape_blocks().
@@ -876,6 +846,261 @@ int shape_blocks(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-ir_graph_pass_t *shape_blocks_pass(const char *name);
+FIRM_API ir_graph_pass_t *shape_blocks_pass(const char *name);
+
+/**
+ * Perform loop inversion on a given graph.
+ * Loop inversion transforms a head controlled loop (like while(...) {} and
+ * for(...) {}) into a foot controlled loop (do {} while(...)).
+ */
+FIRM_API void do_loop_inversion(ir_graph *irg);
+
+/**
+ * Perform loop unrolling on a given graph.
+ * Loop unrolling multiplies the number loop completely by a number found
+ * through a heuristic.
+ */
+FIRM_API void do_loop_unrolling(ir_graph *irg);
+
+/**
+ * Perform loop peeling on a given graph.
+ */
+FIRM_API void do_loop_peeling(ir_graph *irg);
+
+/**
+ * Creates an ir_graph pass for loop inversion.
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *loop_inversion_pass(const char *name);
+
+/**
+ * Creates an ir_graph pass for loop unrolling.
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *loop_unroll_pass(const char *name);
+
+/**
+ * Creates an ir_graph pass for loop peeling.
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *loop_peeling_pass(const char *name);
+
+/**
+ * Creates an ir_graph pass for set_vrp_data()
+ *
+ * @param name The name of this pass or NULL
+ *
+ * @return the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *set_vrp_pass(const char *name);
+
+/**
+ * Removes all entities which are unused.
+ *
+ * Unused entities have ir_visibility_local and are not used directly or
+ * indirectly through entities/code visible outside the compilation unit.
+ * This is usually conservative than gc_irgs, but does not respect properties
+ * of object-oriented programs.
+ */
+FIRM_API void garbage_collect_entities(void);
+
+/** Pass for garbage_collect_entities */
+FIRM_API ir_prog_pass_t *garbage_collect_entities_pass(const char *name);
+
+/**
+ * Performs dead node elimination by copying the ir graph to a new obstack.
+ *
+ *  The major intention of this pass is to free memory occupied by
+ *  dead nodes and outdated analyzes information.  Further this
+ *  function removes Bad predecessors from Blocks and the corresponding
+ *  inputs to Phi nodes.  This opens optimization potential for other
+ *  optimizations.  Further this phase reduces dead Block<->Jmp
+ *  self-cycles to Bad nodes.
+ *
+ *  Dead_node_elimination is only performed if options `optimize' and
+ *  `opt_dead_node_elimination' are set.  The graph may
+ *  not be in state phase_building.  The outs datastructure is freed,
+ *  the outs state set to outs_none.  Backedge information is conserved.
+ *  Removes old attributes of nodes.  Sets link field to NULL.
+ *  Callee information must be freed (irg_callee_info_none).
+ *
+ * @param irg  The graph to be optimized.
+ */
+FIRM_API void dead_node_elimination(ir_graph *irg);
+
+/**
+ * Creates an ir_graph pass for dead_node_elimination().
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *dead_node_elimination_pass(const char *name);
+
+/**
+ * Inlines a method at the given call site.
+ *
+ *  Removes the call node and splits the basic block the call node
+ *  belongs to.  Inserts a copy of the called graph between these nodes.
+ *  Assumes that call is a Call node in current_ir_graph and that
+ *  the type in the Call nodes type attribute is the same as the
+ *  type of the called graph.
+ *  Further it assumes that all Phi nodes in a block of current_ir_graph
+ *  are assembled in a "link" list in the link field of the corresponding
+ *  block nodes.  Further assumes that all Proj nodes are in a "link" list
+ *  in the nodes producing the tuple.  (This is only an optical feature
+ *  for the graph.)  Conserves this feature for the old
+ *  nodes of the graph.  This precondition can be established by a call to
+ *  collect_phisprojs(), see irgmod.h.
+ *  As dead_node_elimination this function reduces dead Block<->Jmp
+ *  self-cycles to Bad nodes.
+ *
+ *  Called_graph must be unequal to current_ir_graph.   Will not inline
+ *  if they are equal.
+ *  Sets visited masterflag in current_ir_graph to the max of the flag in
+ *  current and called graph.
+ *  Assumes that both, the called and the calling graph are in state
+ *  "op_pin_state_pinned".
+ *  It is recommended to call local_optimize_graph() after inlining as this
+ *  function leaves a set of obscure Tuple nodes, e.g. a Proj-Tuple-Jmp
+ *  combination as control flow operation.
+ *
+ *  @param call          the call node that should be inlined
+ *  @param called_graph  the IR-graph that is called at call
+ *
+ *  @return zero if method could not be inlined (recursion for instance),
+ *          non-zero if all went ok
+ */
+FIRM_API int inline_method(ir_node *call, ir_graph *called_graph);
+
+/**
+ * Code Placement.
+ *
+ * Pins all floating nodes to a block where they
+ * will be executed only if needed.   Depends on the flag opt_global_cse.
+ * Graph may not be in phase_building.  Does not schedule control dead
+ * code.  Uses dominator information which it computes if the irg is not
+ * in state dom_consistent.  Destroys the out information as it moves nodes
+ * to other blocks.  Optimizes Tuples in Control edges.
+ *
+ * Call remove_critical_cf_edges() before place_code().  This normalizes
+ * the control flow graph so that for all operations a basic block exists
+ * where they can be optimally placed.
+ */
+FIRM_API void place_code(ir_graph *irg);
+
+/**
+ * Creates an ir_graph pass for place_code().
+ * This pass enables GCSE, runs optimize_graph_df() and finally
+ * place_code();
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *place_code_pass(const char *name);
+
+/**
+ * Determines information about the values of nodes and perform simplifications
+ * using this information.  This optimization performs a data-flow analysis to
+ * find the minimal fixpoint.
+ */
+FIRM_API void fixpoint_vrp(ir_graph*);
+
+/**
+ * Creates an ir_graph pass for fixpoint_vrp().
+ * This pass dDetermines information about the values of nodes
+ * and perform simplifications using this information.
+ * This optimization performs a data-flow analysis to
+ * find the minimal fixpoint.
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+FIRM_API ir_graph_pass_t *fixpoint_vrp_irg_pass(const char *name);
+
+/**
+ * Checks if the value of a node is != 0.
+ *
+ * This is a often needed case, so we handle here Confirm
+ * nodes too.
+ *
+ * @param n        a node representing the value
+ * @param confirm  if n is confirmed to be != 0, returns
+ *                 the the Confirm-node, else NULL
+ */
+FIRM_API int value_not_zero(const ir_node *n, const ir_node **confirm);
+
+/**
+ * Checks if the value of a node cannot represent a NULL pointer.
+ *
+ * - If option sel_based_null_check_elim is enabled, all
+ *   Sel nodes can be skipped.
+ * - A SymConst(entity) is NEVER a NULL pointer
+ * - A Const != NULL is NEVER a NULL pointer
+ * - Confirms are evaluated
+ *
+ * @param n        a node representing the value
+ * @param confirm  if n is confirmed to be != NULL, returns
+ *                 the the Confirm-node, else NULL
+ */
+FIRM_API int value_not_null(const ir_node *n, const ir_node **confirm);
+
+/**
+ * Checks if the value of a node can be confirmed >= 0 or <= 0,
+ * If the mode of the value did not honor signed zeros, else
+ * check for >= 0 or < 0.
+ *
+ * @param n  a node representing the value
+ */
+FIRM_API ir_value_classify_sign classify_value_sign(ir_node *n);
+
+/**
+ * Returns the value of a Cmp if one or both predecessors are Confirm nodes.
+ *
+ * @param cmp       the compare node that will be evaluated
+ * @param left      the left operand of the Cmp
+ * @param right     the right operand of the Cmp
+ * @param relation  the compare relation
+ */
+FIRM_API ir_tarval *computed_value_Cmp_Confirm(
+       const ir_node *cmp, ir_node *left, ir_node *right, ir_relation relation);
+
+/** Type of callbacks for createing entities of the compiler library */
+typedef ir_entity *(*compilerlib_entity_creator_t)(ident *id, ir_type *mt);
+
+/**
+ * Sets the compilerlib entity creation callback that is used to create
+ * compilerlib function entities.
+ *
+ * @param cb  the new compilerlib entity creation callback
+ */
+FIRM_API void set_compilerlib_entity_creator(compilerlib_entity_creator_t cb);
+
+/** Returns the compilerlib entity creation callback. */
+FIRM_API compilerlib_entity_creator_t get_compilerlib_entity_creator(void);
+
+/**
+ * Constructs the entity for a given function using the current compilerlib
+ * entity creation callback.
+ *
+ * @param id  the identifier of the compilerlib function
+ * @param mt  the method type of the compilerlib function
+ */
+FIRM_API ir_entity *create_compilerlib_entity(ident *id, ir_type *mt);
+
+/** @} */
+
+#include "end.h"
 
 #endif