X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopystat.h;h=d5f5f20ee650cf49dcdc40fd9f849edb14564b3b;hb=4d7a9507baf1737297cd4f7fc91eab209fd5d398;hp=1cf25f020e964189ed3ad1305ba8cbae2805568a;hpb=e03dd955762d16d38fdec0e2d7c24bf36d0ecc2e;p=libfirm diff --git a/ir/be/becopystat.h b/ir/be/becopystat.h index 1cf25f020..d5f5f20ee 100644 --- a/ir/be/becopystat.h +++ b/ir/be/becopystat.h @@ -7,9 +7,9 @@ #ifndef _BECOPYSTAT_H #define _BECOPYSTAT_H -#define DO_STAT +#undef COPYOPT_STAT -#ifdef DO_STAT +#ifdef COPYOPT_STAT #include "irgraph.h" #include "bearch.h" @@ -22,7 +22,8 @@ void copystat_add_max_costs(int costs); void copystat_add_inevit_costs(int costs); void copystat_add_init_costs(int costs); void copystat_add_heur_costs(int costs); -void copystat_add_ilp_n_sec_costs(int costs); +void copystat_add_ilp_5_sec_costs(int costs); +void copystat_add_ilp_30_sec_costs(int costs); void copystat_add_opt_costs(int costs); void copystat_add_heur_time(int time); void copystat_add_ilp_time(int time); @@ -32,17 +33,22 @@ void copystat_add_ilp_iter(int iters); void copystat_dump(ir_graph *irg); void copystat_dump_pretty(ir_graph *irg); +/** + * Compares different solutions of the same problem + */ +void co_compare_solvers(be_chordal_env_t *chordal_env); -#else /* DO_STAT */ +#else /* COPYOPT_STAT */ -#define copy_copystat_init(); +#define copystat_init(); #define copystat_reset(); #define copystat_collect_cls(env); #define copystat_add_max_costs(costs); #define copystat_add_inevit_costs(costs); #define copystat_add_init_costs(costs); #define copystat_add_heur_costs(costs); -#define copystat_add_ilp_n_sec_costs(costs); +#define copystat_add_ilp_5_sec_costs(costs); +#define copystat_add_ilp_30_sec_costs(costs); #define copystat_add_opt_costs(costs); #define copystat_add_heur_time(time); #define copystat_add_ilp_time(time); @@ -53,6 +59,6 @@ void copystat_dump_pretty(ir_graph *irg); #define copystat_dump(irg); #define copystat_dump_pretty(irg); -#endif /* DO_STAT */ +#endif /* COPYOPT_STAT */ #endif /* _BECOPYSTAT_H */