X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firflag_t.h;h=422c31e2a2d06b2af001088ff172d41ac17bcbb8;hb=d6d313f6d3744aa43367459c8b31c95f98eeafc7;hp=3e37935f45f5254db5812a0ddec595757983771f;hpb=19a8e44d561f4eb9d766a790a007641086d00581;p=libfirm diff --git a/ir/ir/irflag_t.h b/ir/ir/irflag_t.h index 3e37935f4..422c31e2a 100644 --- a/ir/ir/irflag_t.h +++ b/ir/ir/irflag_t.h @@ -25,176 +25,58 @@ * current libFIRM optimizations */ typedef enum { - /** Common subexpression eliminations: Hash the nodes. */ - OPT_CSE = 0x00000001, +#define E_FLAG(name, value, def) irf_##name = (1 << value), +#define I_FLAG(name, value, def) irf_##name = (1 << value), - /** Don't use block predecessor for comparison. - * Default must be zero as code placement must - * be run right after a local optimize walk with - * opt_global_cse on. */ - OPT_GLOBAL_CSE = 0x00000002, - - /** Evaluate operations. */ - OPT_CONSTANT_FOLDING = 0x00000004, - - /** Bad node propagation. */ - OPT_UNREACHABLE_CODE = 0x00000008, - - /** */ - OPT_CONTROL_FLOW_STRAIGHTENING = 0x00000010, - - /** */ - OPT_CONTROL_FLOW_WEAK_SIMPLIFICATION = 0x00000020, - - /** */ - OPT_CONTROL_FLOW_STRONG_SIMPLIFICATION = 0x00000040, - - /** */ - OPT_CRITICAL_EDGES = 0x00000080, - - /** Reclaim memory. */ - OPT_DEAD_NODE_ELIMINATION = 0x00000100, - - /** Reassociate nodes. */ - OPT_REASSOCIATION = 0x00000200, - - /** Do inlining transformation. */ - OPT_INLINE = 0x00000400, - - /** Remove dynamic method dispatch. */ - OPT_DYN_METH_DISPATCH = 0x00000800, - - /** Transformations that normalize the firm representation - * as removing Ids and Tuples, useless Phis, SymConst(id) -> Const(entity) ... - */ - OPT_NORMALIZE = 0x00001000, - - /** Remove tail-recursion. */ - OPT_TAIL_RECURSION = 0x00002000, - - /** Free never called methods */ - OPT_DEAD_METHOD_ELIMINATION = 0x00004000, - - /** precise exception context */ - OPT_PRECISE_EXC_CONTEXT = 0x00008000, - - /** Free never called methods */ - OPT_DEAD_METHOD_ELIMINATION_VERBOSE = 0x00010000, - - /** Turn off all optimizations. */ - OPT_OPTIMIZED = 0x40000000, +#include "irflag_t.def" + irf_last +#undef I_FLAG +#undef E_FLAG } libfirm_opts_t; extern optimization_state_t libFIRM_opt; +extern optimization_state_t libFIRM_verb; -/** Returns constant folding optimization setting. */ -static INLINE int get_opt_cse(void) -{ - return libFIRM_opt & OPT_CSE; -} +extern int firm_verbosity_level; -/** Returns constant subexpression elimination setting. */ -static INLINE int get_opt_global_cse(void) -{ - return libFIRM_opt & OPT_GLOBAL_CSE; +/* generate the getter functions for external access */ +#define E_FLAG(name, value, def) \ +static INLINE int _get_opt_##name(void) { \ + return libFIRM_opt & irf_##name; \ +} \ +static INLINE int get_opt_##name##_verbose(void) { \ + return libFIRM_verb & irf_##name; \ } -/** Returns global constant subexpression elimination setting. */ -static INLINE int get_opt_constant_folding(void) -{ - return libFIRM_opt & OPT_CONSTANT_FOLDING; +/* generate the getter functions for internal access */ +#define I_FLAG(name, value, def) \ + static INLINE int get_opt_##name(void) { \ + return libFIRM_opt & irf_##name; \ +} \ + static INLINE int get_opt_##name##_verbose(void) { \ + return libFIRM_verb & irf_##name; \ } -/** Returns unreachable code elimination setting. */ -static INLINE int get_opt_unreachable_code(void) -{ - return libFIRM_opt & OPT_UNREACHABLE_CODE; -} +#include "irflag_t.def" -/** Returns Straightening setting. */ -static INLINE int get_opt_control_flow_straightening(void) -{ - return libFIRM_opt & OPT_CONTROL_FLOW_STRAIGHTENING; -} +#undef I_FLAG +#undef E_FLAG -/** Returns if simplifications in local optimizations setting. */ -static INLINE int get_opt_control_flow_weak_simplification(void) -{ - return libFIRM_opt & OPT_CONTROL_FLOW_WEAK_SIMPLIFICATION; -} -/** Returns strong if and loop simplification setting */ -static INLINE int get_opt_control_flow_strong_simplification(void) -{ - return libFIRM_opt & OPT_CONTROL_FLOW_STRONG_SIMPLIFICATION; +static INLINE int _get_firm_verbosity (void) { + return firm_verbosity_level; } -/** Returns whether critical edges are removed */ -static INLINE int get_opt_critical_edges(void) -{ - return libFIRM_opt & OPT_CRITICAL_EDGES; +static INLINE int _get_optimize (void) { + return get_opt_optimize(); } -/** Returns reassociation setting. */ -static INLINE int get_opt_reassociation(void) -{ - return libFIRM_opt & OPT_REASSOCIATION; -} - -/** Returns dead node elimination setting. */ -static INLINE int get_opt_dead_node_elimination(void) -{ - return libFIRM_opt & OPT_DEAD_NODE_ELIMINATION; -} - -/** Returns dead method elimination setting. */ -static INLINE int get_opt_dead_method_elimination(void) -{ - return libFIRM_opt & OPT_DEAD_METHOD_ELIMINATION; -} - -/** Returns dead method elimination setting. */ -static INLINE int get_opt_dead_method_elimination_verbose(void) -{ - return libFIRM_opt & OPT_DEAD_METHOD_ELIMINATION_VERBOSE; -} - -/** Returns global optimization setting */ -static INLINE int get_opt_optimize(void) -{ - return libFIRM_opt & OPT_OPTIMIZED; -} - -/** Returns inlining setting. */ -static INLINE int get_opt_inline(void) -{ - return libFIRM_opt & OPT_INLINE; -} - -static INLINE int get_opt_dyn_meth_dispatch(void) -{ - return libFIRM_opt & OPT_DYN_METH_DISPATCH; -} - -static INLINE int get_opt_normalize(void) -{ - return libFIRM_opt & OPT_NORMALIZE; -} - -/** Returns tail-recursion setting. */ -static INLINE int get_opt_tail_recursion(void) -{ - return libFIRM_opt & 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_optimize() _get_optimize() +#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_ */