preprocessor flag for node_nr
[libfirm] / ir / ir / irflag_t.h
index 2d8babf..7754096 100644 (file)
@@ -69,159 +69,170 @@ typedef enum {
    */
   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,
+
+
+  /** 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
+  OPT_OPTIMIZED                          = 0x40000000,
+
 } libfirm_opts_t;
 
 extern optimization_state_t libFIRM_opt;
+extern optimization_state_t libFIRM_verb;
 
-/* take care of the INLINE/USE_GCC_INLINE mess */
-
-# ifndef INLINE
-# ifdef USE_GCC_INLINE
-# define INLINE __extension__ ((__inline__))
-# else /* defined USE_GCC_INLINE */
-# define INLINE
-# endif /* define USE_GCC_INLINE */
-# endif /* defined INLINE */
+extern int firm_verbosity_level;
 
 
 /** Returns constant folding optimization setting. */
-INLINE int get_opt_cse(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_cse(void)
 {
   return libFIRM_opt & OPT_CSE;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns constant subexpression elimination setting. */
-INLINE int get_opt_global_cse(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_global_cse(void)
 {
   return libFIRM_opt & OPT_GLOBAL_CSE;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
+
+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. */
-INLINE int get_opt_constant_folding(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_constant_folding(void)
 {
   return libFIRM_opt & OPT_CONSTANT_FOLDING;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
+
+/** 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. */
-INLINE int get_opt_unreachable_code(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_unreachable_code(void)
 {
   return libFIRM_opt & OPT_UNREACHABLE_CODE;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns Straightening setting. */
-INLINE int get_opt_control_flow_straightening(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_control_flow_straightening(void)
 {
   return libFIRM_opt & OPT_CONTROL_FLOW_STRAIGHTENING;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns if simplifications in local optimizations setting. */
-INLINE int get_opt_control_flow_weak_simplification(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_control_flow_weak_simplification(void)
 {
   return libFIRM_opt & OPT_CONTROL_FLOW_WEAK_SIMPLIFICATION;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns strong if and loop simplification setting */
-INLINE int get_opt_control_flow_strong_simplification(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_control_flow_strong_simplification(void)
 {
   return libFIRM_opt & OPT_CONTROL_FLOW_STRONG_SIMPLIFICATION;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns whether critical edges are removed */
-INLINE int get_opt_critical_edges(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_critical_edges(void)
 {
   return libFIRM_opt & OPT_CRITICAL_EDGES;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns reassociation setting. */
-INLINE int get_opt_reassociation(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_reassociation(void)
 {
   return libFIRM_opt & OPT_REASSOCIATION;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
 /** Returns dead node elimination setting. */
-INLINE int get_opt_dead_node_elimination(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_dead_node_elimination(void)
 {
   return libFIRM_opt & OPT_DEAD_NODE_ELIMINATION;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
+
+/** 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_verb & OPT_DEAD_METHOD_ELIMINATION;
+}
 
 /** Returns global optimization setting */
-INLINE int get_opt_optimize(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_optimize(void)
 {
   return libFIRM_opt & OPT_OPTIMIZED;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
+
+static INLINE int __get_firm_verbosity (void) {
+  return firm_verbosity_level;
+}
 
 /** Returns inlining setting. */
-INLINE int get_opt_inline(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_inline(void)
 {
   return libFIRM_opt & OPT_INLINE;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
-INLINE int get_opt_dyn_meth_dispatch(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_dyn_meth_dispatch(void)
 {
   return libFIRM_opt & OPT_DYN_METH_DISPATCH;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
 
-INLINE int get_opt_normalize(void)
-# ifdef USE_GCC_INLINE
+static INLINE int get_opt_normalize(void)
 {
   return libFIRM_opt & OPT_NORMALIZE;
 }
-# else /* defined USE_GCC_INLINE */
-;
-# endif /* not defined USE_GCC_INLINE */
+
+/** Returns tail-recursion setting. */
+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)
+{
+  return libFIRM_opt & OPT_PRECISE_EXC_CONTEXT;
+}
+
+
+
+#define get_firm_verbosity()  __get_firm_verbosity()
 
 #endif /* _IRFLAG_T_H_ */