remove license stuff from files
[libfirm] / ir / common / firm.c
index 162ac0c..4ec3807 100644 (file)
@@ -1,27 +1,12 @@
 /*
- * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
- *
  * This file is part of libFirm.
- *
- * This file may be distributed and/or modified under the terms of the
- * GNU General Public License version 2 as published by the Free Software
- * Foundation and appearing in the file LICENSE.GPL included in the
- * packaging of this file.
- *
- * Licensees holding valid libFirm Professional Edition licenses may use
- * this file in accordance with the libFirm Commercial License.
- * Agreement provided with the Software.
- *
- * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
 /**
  * @file
  * @brief     Central firm functionality.
  * @author    Martin Trapp, Christian Schaefer, Goetz Lindenmaier
- * @version   $Id$
  */
 #include "config.h"
 
@@ -55,6 +40,8 @@
 #include "debugger.h"
 #include "be_t.h"
 #include "irtools.h"
+#include "execfreq_t.h"
+#include "firmstat_t.h"
 
 /* returns the firm root */
 lc_opt_entry_t *firm_opt_get_root(void)
@@ -86,12 +73,12 @@ void ir_init(void)
        init_mode();
        /* initialize tarvals, and floating point arithmetic */
        init_tarval_2();
+       /* initialize node opcodes */
+       firm_init_op();
        /* init graph construction */
        firm_init_irgraph();
        /* kind of obstack initialization */
        firm_init_mangle();
-       /* initialize all op codes an irnode can consist of */
-       init_op();
        /* initialize reassociation */
        firm_init_reassociation();
        /* initialize function call optimization */
@@ -103,12 +90,6 @@ void ir_init(void)
        /* Builds a construct allowing to access all information to be constructed
           later. */
        init_irprog_2();
-       /* Initialize the type module and construct some idents needed. */
-       ir_init_type();
-       /* initialize the entity module */
-       ir_init_entity();
-       /* class cast optimization */
-       firm_init_class_casts_opt();
        /* memory disambiguation */
        firm_init_memory_disambiguator();
        firm_init_loop_opt();
@@ -116,7 +97,9 @@ void ir_init(void)
        /* Init architecture dependent optimizations. */
        arch_dep_set_opts(arch_dep_none);
 
-       init_irnode();
+       init_execfreq();
+
+       init_stat();
 
 #ifdef DEBUG_libfirm
        /* integrated debugger extension */
@@ -126,31 +109,19 @@ void ir_init(void)
 
 void ir_finish(void)
 {
-       size_t i;
-
-       /* must iterate backwards here */
-       for (i = get_irp_n_irgs(); i > 0;)
-               free_ir_graph(get_irp_irg(--i));
-
-       free_type_entities(get_glob_type());
-       /* must iterate backwards here */
-       for (i = get_irp_n_types(); i > 0;)
-               free_type_entities(get_irp_type(--i));
-
-       for (i = get_irp_n_types(); i > 0;)
-               free_type(get_irp_type(--i));
+#ifdef DEBUG_libfirm
+       firm_finish_debugger();
+#endif
+       exit_execfreq();
+       firm_be_finish();
 
        free_ir_prog();
-
-       ir_finish_entity();
-       ir_finish_type();
-
+       firm_finish_op();
        finish_tarval();
        finish_mode();
        finish_tpop();
+       firm_finish_mangle();
        finish_ident();
-
-       firm_be_finish();
 }
 
 unsigned ir_get_version_major(void)