fehler109
[libfirm] / ir / be / be_t.h
index 59b5eb7..15d9323 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -30,6 +30,7 @@
 #include "obst.h"
 #include "debug.h"
 #include "bitset.h"
+#include "timing.h"
 
 #include "be.h"
 #include "bearch.h"
@@ -93,7 +94,46 @@ struct be_main_env_t {
 * @param bs   The bitset (may be NULL).
 * @return The number of registers to be ignored.
 */
-unsigned be_put_ignore_regs(const be_irg_t *birg, const arch_register_class_t *cls,
-                       bitset_t *bs);
+unsigned be_put_ignore_regs(const be_irg_t *birg,
+               const arch_register_class_t *cls, bitset_t *bs);
+
+extern int be_timing;
+
+#define BE_TIMER_PUSH(timer)                                              \
+    if (be_timing) {                                                      \
+        int res = ir_timer_push(timer);                                   \
+        (void) res;                                                       \
+               assert(res && "Timer already on stack, cannot be pushed twice."); \
+    }
+
+#define BE_TIMER_POP(timer)                                               \
+    if (be_timing) {                                                      \
+        ir_timer_t *tmp = ir_timer_pop();                                 \
+        (void) tmp;                                                       \
+        assert(tmp == timer && "Attempt to pop wrong timer.");            \
+    }
+
+extern ir_timer_t *t_abi;
+extern ir_timer_t *t_codegen;
+extern ir_timer_t *t_sched;
+extern ir_timer_t *t_constr;
+extern ir_timer_t *t_finish;
+extern ir_timer_t *t_emit;
+extern ir_timer_t *t_other;
+extern ir_timer_t *t_execfreq;
+extern ir_timer_t *t_verify;
+extern ir_timer_t *t_heights;
+extern ir_timer_t *t_live;         /**< timer for liveness calculation */
+extern ir_timer_t *t_ssa_constr;   /**< timer for ssa reconstruction */
+extern ir_timer_t *t_ra_prolog;    /**< timer for prolog */
+extern ir_timer_t *t_ra_epilog;    /**< timer for epilog */
+extern ir_timer_t *t_ra_constr;    /**< timer for spill constraints */
+extern ir_timer_t *t_ra_spill;     /**< timer for spilling */
+extern ir_timer_t *t_ra_spill_apply;
+extern ir_timer_t *t_ra_color;     /**< timer for graph coloring */
+extern ir_timer_t *t_ra_ifg;       /**< timer for building interference graph */
+extern ir_timer_t *t_ra_copymin;   /**< timer for copy minimization */
+extern ir_timer_t *t_ra_ssa;       /**< timer for ssa destruction */
+extern ir_timer_t *t_ra_other;     /**< timer for remaining stuff */
 
 #endif /* FIRM_BE_BE_T_H */