X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firflag_t.h;h=601ad27efb436866177437093c5d17d453c4736d;hb=637542932dc27dcdfc7def09b58d9d5d4c34fb77;hp=2b18953b06bf7790494bb15a18d72dc50513d051;hpb=0d61e9cc180a7f713c62e563b24871106558c91f;p=libfirm diff --git a/ir/ir/irflag_t.h b/ir/ir/irflag_t.h index 2b18953b0..601ad27ef 100644 --- a/ir/ir/irflag_t.h +++ b/ir/ir/irflag_t.h @@ -78,8 +78,10 @@ typedef enum { /** precise exception context */ OPT_PRECISE_EXC_CONTEXT = 0x00008000, + /** EMPTY SLOT !!! TO BE ASSIGNED */ - /** EMPTY SLOT !!! TO BE ASSIGNED */ + /** Do loop unrolling */ + OPT_LOOP_UNROLLING = 0x00010000, /** Do Strength reduction */ OPT_STRENGTH_RED = 0x00020000, @@ -87,6 +89,19 @@ typedef enum { /** Optimize Loads and Stores */ OPT_REDUNDANT_LOADSTORE = 0x00040000, + /** Optimize Fragile OPs */ + OPT_FRAGILE_OPS = 0x00080000, + + /** If conversion. */ + OPT_IF_CONVERSION = 0x00100000, + + /** Optimize real function calls. */ + OPT_REAL_FUNC_CALL = 0x00200000, + + /** Optimize cast nodes. */ + OPT_CLASS_CASTS = 0x00400000, + OPT_SUPPRESS_DOWNCAST_OPT = 0x00800000, + /** Turn off all optimizations. */ OPT_OPTIMIZED = 0x40000000, @@ -110,6 +125,17 @@ static INLINE int get_opt_global_cse(void) return libFIRM_opt & OPT_GLOBAL_CSE; } +static INLINE int get_opt_loop_unrolling(void) +{ + return libFIRM_opt & OPT_LOOP_UNROLLING; +} + +/** Returns verbosity for loop unrolling. */ +static INLINE int get_opt_loop_unrolling_verbose(void) +{ + return libFIRM_verb & OPT_LOOP_UNROLLING; +} + static INLINE int get_opt_strength_red(void) { return libFIRM_opt & OPT_STRENGTH_RED; @@ -203,11 +229,23 @@ static INLINE int get_opt_inline(void) return libFIRM_opt & OPT_INLINE; } -static INLINE int get_opt_dyn_meth_dispatch(void) +static INLINE int _get_opt_dyn_meth_dispatch(void) { return libFIRM_opt & OPT_DYN_METH_DISPATCH; } +static INLINE int _get_opt_optimize_class_casts (void) { + return libFIRM_opt & OPT_CLASS_CASTS; +} + +static INLINE int _get_opt_optimize_class_casts_verbose (void) { + return libFIRM_verb & OPT_CLASS_CASTS; +} + +static INLINE int _get_opt_suppress_downcast_optimization (void) { + return libFIRM_opt & OPT_SUPPRESS_DOWNCAST_OPT; +} + static INLINE int get_opt_normalize(void) { return libFIRM_opt & OPT_NORMALIZE; @@ -231,9 +269,29 @@ static INLINE int get_opt_precise_exc_context(void) return libFIRM_opt & OPT_PRECISE_EXC_CONTEXT; } +/** Returns fragile ops setting. */ +static INLINE int get_opt_fragile_ops(void) +{ + return libFIRM_opt & OPT_FRAGILE_OPS; +} +/** Returns if conversion setting. */ +static INLINE int get_opt_if_conversion(void) +{ + return libFIRM_opt & OPT_IF_CONVERSION; +} + +/** Returns real function call optimization setting. */ +static INLINE int get_opt_real_func_call(void) +{ + return libFIRM_opt & OPT_REAL_FUNC_CALL; +} -#define get_opt_cse() _get_opt_cse() -#define get_firm_verbosity() _get_firm_verbosity() +#define get_opt_cse() _get_opt_cse() +#define get_firm_verbosity() _get_firm_verbosity() +#define get_opt_dyn_meth_dispatch() _get_opt_dyn_meth_dispatch() +#define get_opt_optimize_class_casts() _get_opt_optimize_class_casts() +#define get_opt_optimize_class_casts_verbose() _get_opt_optimize_class_casts_verbose() +#define get_opt_suppress_downcast_optimization() _get_opt_suppress_downcast_optimization() #endif /* _IRFLAG_T_H_ */