X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firflag_t.h;h=775409623314dcd041ef9c783641ad2e08e74713;hb=cb91bddc9cacdab7c28e4336847bd3dc248aa549;hp=3e37935f45f5254db5812a0ddec595757983771f;hpb=19a8e44d561f4eb9d766a790a007641086d00581;p=libfirm diff --git a/ir/ir/irflag_t.h b/ir/ir/irflag_t.h index 3e37935f4..775409623 100644 --- a/ir/ir/irflag_t.h +++ b/ir/ir/irflag_t.h @@ -78,14 +78,25 @@ typedef enum { /** precise exception context */ OPT_PRECISE_EXC_CONTEXT = 0x00008000, - /** Free never called methods */ - OPT_DEAD_METHOD_ELIMINATION_VERBOSE = 0x00010000, + + /** EMPTY SLOT !!! TO BE ASSIGNED */ + + /** Do Strength reduction */ + OPT_STRENGTH_RED = 0x00020000, + + /** Optimize Loads and Stores */ + OPT_REDUNDANT_LOADSTORE = 0x00040000, /** Turn off all optimizations. */ OPT_OPTIMIZED = 0x40000000, + } libfirm_opts_t; extern optimization_state_t libFIRM_opt; +extern optimization_state_t libFIRM_verb; + +extern int firm_verbosity_level; + /** Returns constant folding optimization setting. */ static INLINE int get_opt_cse(void) @@ -99,12 +110,29 @@ static INLINE int get_opt_global_cse(void) return libFIRM_opt & OPT_GLOBAL_CSE; } +static INLINE int get_opt_strength_red(void) +{ + return libFIRM_opt & OPT_STRENGTH_RED; +} + +/** Returns verbosity for strength reduction. */ +static INLINE int get_opt_strength_red_verbosity(void) +{ + return libFIRM_verb & OPT_STRENGTH_RED; +} + /** Returns global constant subexpression elimination setting. */ static INLINE int get_opt_constant_folding(void) { return libFIRM_opt & OPT_CONSTANT_FOLDING; } +/** Returns global constant subexpression elimination setting. */ +static INLINE int get_opt_redundant_LoadStore(void) +{ + return libFIRM_opt & OPT_REDUNDANT_LOADSTORE; +} + /** Returns unreachable code elimination setting. */ static INLINE int get_opt_unreachable_code(void) { @@ -156,7 +184,7 @@ static INLINE int get_opt_dead_method_elimination(void) /** Returns dead method elimination setting. */ static INLINE int get_opt_dead_method_elimination_verbose(void) { - return libFIRM_opt & OPT_DEAD_METHOD_ELIMINATION_VERBOSE; + return libFIRM_verb & OPT_DEAD_METHOD_ELIMINATION; } /** Returns global optimization setting */ @@ -165,6 +193,10 @@ static INLINE int get_opt_optimize(void) return libFIRM_opt & OPT_OPTIMIZED; } +static INLINE int __get_firm_verbosity (void) { + return firm_verbosity_level; +} + /** Returns inlining setting. */ static INLINE int get_opt_inline(void) { @@ -187,14 +219,20 @@ static INLINE int get_opt_tail_recursion(void) return libFIRM_opt & OPT_TAIL_RECURSION; } +/** Returns tail-recursion setting. */ +static INLINE int get_opt_tail_recursion_verbose(void) +{ + return libFIRM_verb & OPT_TAIL_RECURSION; +} + /** Returns precise exception context setting. */ static INLINE int get_opt_precise_exc_context(void) { -#if PRECISE_EXC_CONTEXT - return 0; -#else return libFIRM_opt & OPT_PRECISE_EXC_CONTEXT; -#endif } + + +#define get_firm_verbosity() __get_firm_verbosity() + #endif /* _IRFLAG_T_H_ */