X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Firoptimize.h;h=5607b0e62c9b1bdc0a88c0158c0b0d89aebdcc5c;hb=8f530048146e640fdfeb16b8ebe8bc997a1c8abe;hp=7a1c1ba50b1945f4315de33e80e5b1785206fbbe;hpb=769f270363251af20e4f4211b1c341f81f4974d1;p=libfirm diff --git a/include/libfirm/iroptimize.h b/include/libfirm/iroptimize.h index 7a1c1ba50..5607b0e62 100644 --- a/include/libfirm/iroptimize.h +++ b/include/libfirm/iroptimize.h @@ -44,6 +44,17 @@ */ void optimize_cf(ir_graph *irg); +/** + * Creates an ir_graph pass for optimize_cf(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *optimize_cf_pass(const char *name, int verify, int dump); + /** * Perform path-sensitive jump threading on the given graph. * @@ -51,6 +62,17 @@ void optimize_cf(ir_graph *irg); */ void opt_jumpthreading(ir_graph* irg); +/** + * Creates an ir_graph pass for opt_jumpthreading(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *opt_jumpthreading_pass(const char *name, int verify, int dump); + /** * Try to simplify boolean expression in the given ir graph. * eg. x < 5 && x < 6 becomes x < 5 @@ -59,6 +81,17 @@ void opt_jumpthreading(ir_graph* irg); */ void opt_bool(ir_graph *irg); +/** + * Creates an ir_graph pass for opt_bool(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *opt_bool_pass(const char *name, int verify, int dump); + /** * Try to reduce the number of conv nodes in the given ir graph. * @@ -68,6 +101,17 @@ void opt_bool(ir_graph *irg); */ int conv_opt(ir_graph *irg); +/** + * Creates an ir_graph pass for conv_opt(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *conv_opt_pass(const char *name, int verify, int dump); + /** * Do the scalar replacement optimization. * Make a date flow analyze and split the @@ -153,6 +197,25 @@ void escape_analysis(int run_scalar_replace, check_alloc_entity_func callback); */ void optimize_funccalls(int force_run, check_alloc_entity_func callback); +/** + * Creates an ir_prog pass for optimize_funccalls(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * @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 verify, int dump, + int force_run, check_alloc_entity_func callback); + /** * Does Partial Redundancy Elimination combined with * Global Value Numbering. @@ -164,6 +227,17 @@ void optimize_funccalls(int force_run, check_alloc_entity_func callback); */ void do_gvn_pre(ir_graph *irg); +/** + * Creates an ir_graph pass for do_gvn_pre(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *do_gvn_pre_pass(const char *name, int verify, int dump); + /** * This function is called to evaluate, if a mux can build * of the current architecture. @@ -198,8 +272,32 @@ struct ir_settings_if_conv_t { */ void opt_if_conv(ir_graph *irg, const ir_settings_if_conv_t *params); +/** + * Creates an ir_graph pass for opt_if_conv(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * @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, int verify, int dump, const ir_settings_if_conv_t *params); + void opt_sync(ir_graph *irg); +/** + * Creates an ir_graph pass for opt_sync(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *opt_sync_pass(const char *name, int verify, int dump); + /* * Check if we can replace the load by a given const from * the const code irg. @@ -242,6 +340,17 @@ ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c); */ int optimize_load_store(ir_graph *irg); +/** + * Creates an ir_graph pass for optimize_load_store(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *optimize_load_store_pass(const char *name, int verify, int dump); + /** * New experimental alternative to optimize_load_store. * Based on a dataflow analysis, so load/stores are moved out of loops @@ -249,11 +358,33 @@ int optimize_load_store(ir_graph *irg); */ int opt_ldst(ir_graph *irg); +/** + * Creates an ir_graph pass for opt_ldst(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *opt_ldst_pass(const char *name, int verify, int dump); + /** * Do Loop unrolling in the given graph. */ void optimize_loop_unrolling(ir_graph *irg); +/** + * Creates an ir_graph pass for optimize_loop_unrolling(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *optimize_loop_unrolling_pass(const char *name, int verify, int dump); + /** * Optimize the frame type of an irg by removing * never touched entities. @@ -266,6 +397,17 @@ void optimize_loop_unrolling(ir_graph *irg); */ void opt_frame_irg(ir_graph *irg); +/** + * Creates an ir_graph pass for opt_frame_irg(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *opt_frame_irg_pass(const char *name, int verify, int dump); + /** Possible flags for the Operator Scalar Replacement. */ typedef enum osr_flags { osr_flag_none = 0, /**< no additional flags */ @@ -341,6 +483,18 @@ typedef enum osr_flags { */ void opt_osr(ir_graph *irg, unsigned flags); +/** + * Creates an ir_graph pass for remove_phi_cycles(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * @param flags set of osr_flags + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *opt_osr_pass(const char *name, int verify, int dump, unsigned flags); + /** * Removes useless Phi cycles, i.e cycles of Phi nodes with only one * non-Phi node. @@ -353,6 +507,19 @@ void opt_osr(ir_graph *irg, unsigned flags); */ void remove_phi_cycles(ir_graph *irg); +/** + * Creates an ir_graph pass for remove_phi_cycles(). + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * @param params The parameters for the if conversion. + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *remove_phi_cycles_pass(const char *name, int verify, int dump); + + /** A default threshold. */ #define DEFAULT_CLONE_THRESHOLD 300 @@ -550,6 +717,17 @@ void optimize_class_casts(void); */ void combo(ir_graph *irg); +/** + * Creates an ir_graph pass for combo. + * + * @param name the name of this pass or NULL + * @param verify should this pass be verified? + * @param dump should this pass result be dumped? + * + * @return the newly created ir_graph pass + */ +ir_graph_pass_t *combo_pass(const char *name, int verify, int dump); + /** Inlines all small methods at call sites where the called address comes * from a SymConst node that references the entity representing the called * method.