changed inline to INLINE, removed C99
[libfirm] / ir / stat / firmstat.h
index 7c94113..5f6fc12 100644 (file)
@@ -14,9 +14,6 @@
 /**
  * @file firmstat.h
  */
-#include "irop.h"
-#include "irnode.h"
-#include "irgraph.h"
 #include "irhooks.h"
 
 /**
@@ -30,6 +27,7 @@ enum firmstat_options_t {
   FIRMSTAT_COUNT_DELETED   = 0x00000010,    /**< if set, count deleted graphs */
   FIRMSTAT_COUNT_SELS      = 0x00000020,    /**< if set, count Sel(Sel(..)) differently */
   FIRMSTAT_COUNT_CONSTS    = 0x00000040,    /**< if set, count Const statistics */
+  FIRMSTAT_COUNT_EXTBB     = 0x00000080,    /**< if set, count extended Basic Block statistics */
   FIRMSTAT_CSV_OUTPUT      = 0x10000000     /**< CSV output of some mini-statistic */
 };
 
@@ -42,7 +40,10 @@ enum firmstat_optimizations_t {
   FS_OPT_ADD_A_A,                           /**< a + a = a * 2 */
   FS_OPT_ADD_A_MINUS_B,                     /**< a + -b = a - b */
   FS_OPT_ADD_SUB,                           /**< (a + x) - x = (a - x) + x */
+  FS_OPT_ADD_MUL_A_X_A,                     /**< a * x + a = a * (x + 1) */
   FS_OPT_SUB_0_A,                           /**< 0 - a = -a */
+  FS_OPT_SUB_MUL_A_X_A,                     /**< a * x - a = a * (x - 1) */
+  FS_OPT_SUB_SUB_X_Y_Z,                     /**< (x - y) - z = x - (y + z) */
   FS_OPT_MUL_MINUS_1,                       /**< a * -1 = -a */
   FS_OPT_OR,                                /**< a | a = a | 0 = 0 | a = a */
   FS_OPT_AND,                               /**< a & 0b1...1 = 0b1...1 & a =  a & a = a */
@@ -62,6 +63,18 @@ enum firmstat_optimizations_t {
   FS_OPT_MUX_TO_MAX,                        /**< Mux(a > b, a, b) = Max(a,b) */
   FS_OPT_MUX_TO_ABS,                        /**< Mux(a > b, a, b) = Abs(a,b) */
   FS_OPT_MUX_TO_SHR,                        /**< Mux(a > b, a, b) = a >> b */
+  FS_OPT_CONST_PHI,                         /**< Constant evaluation on Phi */
+  FS_BE_IA32_LEA,                           /**< Lea was created */
+  FS_BE_IA32_LOAD_LEA,                      /**< Load merged with a Lea */
+  FS_BE_IA32_STORE_LEA,                     /**< Store merged with a Lea */
+  FS_BE_IA32_AM_S,                          /**< Source address mode node created */
+  FS_BE_IA32_AM_D,                          /**< Destination address mode node created */
+  FS_BE_IA32_CJMP,                          /**< CJmp created to save a cmp/test */
+  FS_BE_IA32_2ADDRCPY,                      /**< Copy created due to 2-Addresscode constraints */
+  FS_BE_IA32_SPILL2ST,                      /**< Created Store for a Spill */
+  FS_BE_IA32_RELOAD2LD,                     /**< Created Load for a Reload */
+  FS_BE_IA32_SUB2NEGADD,                    /**< Created Neg-Add for a Sub due to 2-Addresscode constraints */
+  FS_BE_IA32_LEA2ADD,                       /**< Transformed Lea back into Add */
   FS_OPT_MAX
 };
 
@@ -70,19 +83,26 @@ enum firmstat_optimizations_t {
  * Never called from libFirm should be called from user.
  *
  * @param name   base name of the statistic output file
+ * @param phase  a phase name. Prefix will be firmstat-<phase>-
  */
-void stat_dump_snapshot(const char *name);
+void stat_dump_snapshot(const char *name, const char *phase);
 
 /**
  * initialize the statistics module.
  *
  * @param enable_options  a bitmask containing the statistic options
  */
-void init_stat(unsigned enable_options);
+void firm_init_stat(unsigned enable_options);
 
 /**
  * terminates the statistics module, frees all memory
  */
 void stat_term(void);
 
+/**
+ * returns 1 if statistic module is active, 0 otherwise
+ */
+int stat_is_active(void);
+
+
 #endif /* _FIRMSTAT_H_ */