X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopystat.h;h=d5f5f20ee650cf49dcdc40fd9f849edb14564b3b;hb=e46954901a16f1d49f3523be6bfd3eb60ee61dfa;hp=3674ee2117ffb450b4ea73dbfcf68d05801cbea7;hpb=8805e4fb65465abb2ed0ccde2377097c8f9d48c9;p=libfirm diff --git a/ir/be/becopystat.h b/ir/be/becopystat.h index 3674ee211..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" @@ -17,12 +17,13 @@ void copystat_init(void); void copystat_reset(void); -void copystat_collect_irg(ir_graph *irg, arch_env_t *arch_env); void copystat_collect_cls(be_chordal_env_t *chordal_env); 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_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_irg(irg, arch_env); #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_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 */