Changed to the new infrastructure
[libfirm] / ir / be / becopystat.c
index bb2d96e..fe491dc 100644 (file)
@@ -72,6 +72,8 @@ enum vals_t {
        I_COPIES_MAX,           /* max possible costs of copies*/
        I_COPIES_INIT,          /* number of copies in initial allocation */
        I_COPIES_HEUR,          /* number of copies after heuristic */
+       I_COPIES_5SEC,          /* number of copies after ilp with max n sec */
+       I_COPIES_30SEC,         /* number of copies after ilp with max n sec */
        I_COPIES_OPT,           /* number of copies after ilp */
        I_COPIES_IF,            /* number of copies inevitable due to root-arg-interf */
 
@@ -312,6 +314,12 @@ void copystat_add_init_costs(int costs) {
 void copystat_add_heur_costs(int costs) {
        curr_vals[I_COPIES_HEUR] += costs;
 }
+void copystat_add_ilp_5_sec_costs(int costs) {
+       curr_vals[I_COPIES_5SEC] += costs;
+}
+void copystat_add_ilp_30_sec_costs(int costs) {
+       curr_vals[I_COPIES_30SEC] += costs;
+}
 void copystat_add_opt_costs(int costs) {
        curr_vals[I_COPIES_OPT] += costs;
 }