typo fixed
[libfirm] / ir / be / becopyilp.c
index d17de6e..1dca9e6 100644 (file)
@@ -7,13 +7,18 @@
  * Common stuff used by all ILP fomulations.
  *
  */
-
-#include "bestatevent.h"
-
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif /* HAVE_CONFIG_H */
 
+#include "irtools.h"
+#include "irprintf.h"
+
+#include "bestatevent.h"
+#include "beirg_t.h"
+#include "bemodule.h"
+#include "error.h"
+
 #ifdef WITH_ILP
 
 #define DUMP_ILP 1
@@ -38,19 +43,26 @@ static lc_opt_enum_mask_var_t dump_var = {
 };
 
 static const lc_opt_table_entry_t options[] = {
-       LC_OPT_ENT_INT      ("limit", "time limit for solving in seconds (0 for unlimited, default 60)", &time_limit),
-       LC_OPT_ENT_BOOL     ("net",   "solve over the net (default: yes)", &solve_net),
+       LC_OPT_ENT_INT      ("limit", "time limit for solving in seconds (0 for unlimited)", &time_limit),
+       LC_OPT_ENT_BOOL     ("net",   "solve over the net", &solve_net),
        LC_OPT_ENT_BOOL     ("log",   "show ilp solving log",              &solve_log),
-       LC_OPT_ENT_ENUM_MASK("dump",  "dump flags (ilp, sol)",             &dump_var),
+       LC_OPT_ENT_ENUM_MASK("dump",  "dump flags",             &dump_var),
        { NULL }
 };
 
-void be_co_ilp_register_options(lc_opt_entry_t *grp)
+void be_init_copyilp(void)
 {
-       lc_opt_entry_t *ilp_grp = lc_opt_get_grp(grp, "ilp");
+       lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
+       lc_opt_entry_t *ra_grp = lc_opt_get_grp(be_grp, "ra");
+       lc_opt_entry_t *chordal_grp = lc_opt_get_grp(ra_grp, "chordal");
+       lc_opt_entry_t *co_grp = lc_opt_get_grp(chordal_grp, "co");
+       lc_opt_entry_t *ilp_grp = lc_opt_get_grp(co_grp, "ilp");
+
        lc_opt_add_table(ilp_grp, options);
 }
-#endif
+
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_copyilp);
+#endif /* WITH_LIBCORE */
 
 
 #include "becopyilp_t.h"
@@ -223,7 +235,15 @@ lpp_sol_state_t ilp_go(ilp_env_t *ienv) {
        be_stat_ev_dbl("co_ilp_sol_time",   ienv->lp->sol_time);
 
        if(dump_flags & DUMP_ILP) {
-               FILE *f = be_chordal_open(ienv->co->cenv, "", "-co.ilp");
+               char buf[128];
+               FILE *f;
+
+               ir_snprintf(buf, sizeof(buf), "%F_%s-co.ilp", ienv->co->cenv->irg,
+                           ienv->co->cenv->cls->name);
+               f = fopen(buf, "wt");
+               if(f == NULL) {
+                       panic("Couldn't open '%s' for writing", buf);
+               }
                lpp_dump_plain(ienv->lp, f);
                fclose(f);
        }