removed bearch_firm, it's now in it's own subdir
[libfirm] / ir / be / bemain.c
index ab22f64..6af5e1f 100644 (file)
@@ -8,7 +8,6 @@
 #endif
 
 #include <stdarg.h>
-#include <mcheck.h>
 
 #include "obst.h"
 #include "bitset.h"
@@ -23,6 +22,7 @@
 #include "irloop_t.h"
 
 #include "be_t.h"
+#include "beifg.h"
 #include "bechordal_t.h"
 #include "benumb_t.h"
 #include "besched_t.h"
 #include "benode_t.h"
 #include "beirgmod.h"
 #include "bespillilp.h"
+#include "bespillbelady.h"
 
 #include "beasm_dump_globals.h"
 #include "beasm_asm_gnu.h"
 
-#undef DUMP_ALLOCATED
-#define DUMP_PREPARED
-#define DUMP_SPILL
+#include "firm2arch.h"
+
+#undef DUMP_BEGIN
+#undef DUMP_PREPARED
+#define DUMP_TRANSFORM
 #define DUMP_SCHED
-#undef DUMP_POST
+#define DUMP_SPILL
+#undef DUMP_ALLOCATED
+#undef DUMP_COPYMIN
+#undef DUMP_SSADESTR
+#undef DUMP_END
 
+#undef DO_SSADESTR
 
 #define N_PHASES 256
 
-
 void be_init(void)
 {
        be_sched_init();
@@ -78,9 +85,16 @@ static be_main_env_t *be_init_env(be_main_env_t *env)
   env->node_factory = obstack_alloc(&env->obst, sizeof(*env->node_factory));
   be_node_factory_init(env->node_factory, isa);
 
-  arch_env_add_irn_handler(env->arch_env, &firm_irn_handler);
-  arch_env_add_irn_handler(env->arch_env,
-      be_node_get_irn_handler(env->node_factory));
+  /* Register the irn handler of the architecture */
+  if (isa->irn_handler)
+               arch_env_add_irn_handler(env->arch_env, isa->irn_handler);
+
+  /*
+   * Register the node handler of the back end infrastructure.
+   * This irn handler takes care of the platform independent
+   * spill, reload and perm nodes.
+   */
+  arch_env_add_irn_handler(env->arch_env, be_node_get_irn_handler(env->node_factory));
 
   return env;
 }
@@ -123,31 +137,30 @@ static void prepare_graph(be_main_session_env_t *s)
        if (get_irg_loopinfo_state(s->irg) != (loopinfo_valid & loopinfo_cf_consistent))
                construct_cf_backedges(s->irg);
 
-#ifdef DUMP_PREPARED
-       dump_dominator_information(true);
-       dump_ir_block_graph(s->irg, "-prepared");
-       dump_dominator_information(false);
-#endif
+       be_check_dominance(s->irg);
 }
 
 static void be_main_loop(void)
 {
-       int i, n;
+       int i, j, m, n;
        be_main_env_t env;
        const arch_isa_if_t *isa;
 
        be_init_env(&env);
        isa = arch_env_get_isa(env.arch_env);
 
+        /* create required irop's */
+        create_bearch_asm_opcodes();
+
        /* For all graphs */
        for(i = 0, n = get_irp_n_irgs(); i < n; ++i) {
-               int j, m;
                ir_graph *irg = get_irp_irg(i);
                be_main_session_env_t session;
 
-               dump_ir_block_graph(irg, "-be-begin");
-
-               DBG((env.dbg, LEVEL_1, "====> IRG: %F\n", irg));
+               DBG((env.dbg, LEVEL_2, "====> IRG: %F\n", irg));
+#ifdef DUMP_BEGIN
+               dump_ir_block_graph(irg, "-begin");
+#endif
 
                /* Init the session. */
                be_init_session_env(&session, &env, irg);
@@ -155,8 +168,23 @@ static void be_main_loop(void)
                /* Compute some analyses and prepare the graph for backend use. */
                prepare_graph(&session);
 
+                transform_firm(irg);
+
+#ifdef DUMP_TRANSFORM
+               dump_ir_block_graph(irg, "-transformed");
+#endif
+
+
+#ifdef DUMP_PREPARED
+               dump_dominator_information(true);
+               dump_ir_block_graph(irg, "-prepared");
+               dump_dominator_information(false);
+#endif
+
                /* Schedule the graphs. */
                list_sched(irg, trivial_selector);
+               be_sched_imm(irg);
+
 #ifdef DUMP_SCHED
                dump_ir_block_graph_sched(irg, "-sched");
 #endif
@@ -170,11 +198,14 @@ static void be_main_loop(void)
                /* Perform the following for each register class. */
                for(j = 0, m = isa->get_n_reg_class(); j < m; ++j) {
                        be_chordal_env_t *chordal_env;
-                       const arch_register_class_t *cls = isa->get_reg_class(j);
+                       be_ifg_t *ifg;
 
+                       const arch_register_class_t *cls = isa->get_reg_class(j);
                        DBG((env.dbg, LEVEL_1, "----> Reg class: %s\n", cls->name));
 
-                       be_spill_ilp(&session, cls);
+                       /* spilling */
+                       //be_spill_ilp(&session, cls);
+                       be_spill_belady(&session, cls);
 #ifdef DUMP_SPILL
                        dump_ir_block_graph_sched(session.irg, "-spill");
 #endif
@@ -182,38 +213,38 @@ static void be_main_loop(void)
                        be_numbering(irg);
                        be_check_pressure(&session, cls);
 
-#if 0
-                       {
-                               FILE *f;
-                               char buf[128];
-                               ir_snprintf(buf, sizeof(buf), "%F_%s-live.txt", irg, cls->name);
-                               if((f = fopen(buf, "wt")) != NULL) {
-                                       be_liveness_dump(session.irg, f);
-                                       fclose(f);
-                               }
-                       }
-#endif
-
+                       /* allocation */
                        chordal_env = be_ra_chordal(&session, cls);
-
 #ifdef DUMP_ALLOCATED
                        dump_allocated_irg(env.arch_env, irg, "");
 #endif
-                       copystat_collect_cls(chordal_env);
 
-                       dump_allocated_irg(env.arch_env, irg, "pre");
+                       /* Build the interference graph. */
+                       ifg = be_ifg_std_new(chordal_env);
+
+#ifdef DO_SSADESTR
+                       /* copy minimization */
+                       copystat_collect_cls(chordal_env);
                        be_copy_opt(chordal_env);
-                       dump_allocated_irg(env.arch_env, irg, "post");
+#ifdef DUMP_COPYMIN
+                       dump_allocated_irg(env.arch_env, irg, "-copymin");
+#endif
 
+                       /* ssa destruction */
                        be_ssa_destruction(chordal_env);
                        be_ssa_destruction_check(chordal_env);
                        be_ra_chordal_check(chordal_env);
+#ifdef DUMP_SSADESTR
+                       dump_allocated_irg(env.arch_env, irg, "-ssadestr");
+#endif
+#endif
 
+                       be_ifg_free(ifg);
                        be_ra_chordal_done(chordal_env);
                        be_numbering_done(irg);
                }
-#ifdef DUMP_POST
-               dump_ir_block_graph_sched(session.irg, "-post");
+#ifdef DUMP_END
+               dump_ir_block_graph_sched(session.irg, "-end");
 #endif
                copystat_dump(irg);
        }
@@ -221,18 +252,11 @@ static void be_main_loop(void)
 
 void be_main(int argc, const char *argv[])
 {
-       assembler_t *gnu_assembler;
-       FILE *asm_output_file;
+  FILE *asm_output_file;
 
-       be_main_loop();
+  be_main_loop();
 
-#if 0
-       gnu_assembler = gnuasm_create_assembler();
-       asm_output_file = fopen("asm_output.asm", "w");
-
-       asm_dump_globals(gnu_assembler);
-       gnuasm_dump(gnu_assembler, asm_output_file);
-       gnuasm_delete_assembler(gnu_assembler);
-       fclose(asm_output_file);
-#endif
+  asm_output_file = fopen(argv[0], "w");
+  firmbe_gen_code(asm_output_file);
+  fclose(asm_output_file);
 }