Comments, beautify
[libfirm] / ir / be / bemain.c
index 430330c..4cc5396 100644 (file)
@@ -3,6 +3,9 @@
  * @author Sebastian Hack
  * @date 25.11.2004
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <stdarg.h>
 
@@ -11,6 +14,7 @@
 
 #include "irprog.h"
 #include "irgraph.h"
+#include "irdump.h"
 
 #include "be_t.h"
 #include "bera_t.h"
 #include "besched_t.h"
 #include "belistsched.h"
 #include "belive_t.h"
+#include "beutil.h"
 #include "bephicongr_t.h"
+#include "bechordal.h"
+#include "bechordal.h"
+#include "bephiopt.h"
 #include "phistat.h"
 
+#undef DUMP_ALLOCATED
+#undef DUMP_LOCALIZED
+
 #define N_PHASES 256
 
 typedef struct _be_graph_info_t {
@@ -89,7 +100,8 @@ void be_init(void)
        be_liveness_init();
        be_numbering_init();
        be_ra_init();
-       be_phi_congr_class_init();
+       be_ra_chordal_init();
+       be_phi_opt_init();
 }
 
 extern void be_ra_chordal(ir_graph *irg);
@@ -101,15 +113,20 @@ static void be_main_loop(void)
        for(i = 0, n = get_irp_n_irgs(); i < n; ++i) {
                ir_graph *irg = get_irp_irg(i);
 
+               localize_consts(irg);
+#ifdef DUMP_LOCALIZED
+               dump_consts_local(0);
+               dump_ir_block_graph(irg, "-local-const");
+#endif
                be_numbering(irg);
                list_sched(irg, trivial_selector, NULL);
                be_liveness(irg);
                be_ra_chordal(irg);
-               be_phi_congr_classes(irg);
-
 
+#ifdef DUMP_ALLOCATED
                dump_allocated_irg(irg);
-
+#endif
+               //be_phi_opt(irg);
 
                be_ra_chordal_done(irg);
                be_numbering_done(irg);
@@ -119,5 +136,4 @@ static void be_main_loop(void)
 void be_main(int argc, const char *argv[])
 {
        be_main_loop();
-       do_phi_statistics();
 }