X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopystat.h;h=d5f5f20ee650cf49dcdc40fd9f849edb14564b3b;hb=6e3e499d6c68aee0c6a9ada6a99f16c4f6f8445b;hp=8f465afc014c8aa811321619dbbf06e94feb31a5;hpb=b9776d1f90b9376855ea7f3f875ce22e65b39272;p=libfirm diff --git a/ir/be/becopystat.h b/ir/be/becopystat.h index 8f465afc0..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,35 +17,48 @@ 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); +void copystat_add_ilp_vars(int vars); +void copystat_add_ilp_csts(int csts); void copystat_add_ilp_iter(int iters); void copystat_dump(ir_graph *irg); void copystat_dump_pretty(ir_graph *irg); -#else /* DO_STAT */ +/** + * Compares different solutions of the same problem + */ +void co_compare_solvers(be_chordal_env_t *chordal_env); + +#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_ilp_time(int time); -#define copystat_add_ilp_iter(int iters); +#define copystat_add_heur_time(time); +#define copystat_add_ilp_time(time); +#define copystat_add_ilp_vars(vars); +#define copystat_add_ilp_csts(csts); +#define copystat_add_ilp_iter(iters); #define copystat_dump(irg); #define copystat_dump(irg); #define copystat_dump_pretty(irg); -#endif /* DO_STAT */ +#endif /* COPYOPT_STAT */ #endif /* _BECOPYSTAT_H */