partially revert 2e9fdf8841de40f008697ba8bf711fa3f3f2c0e8
[libfirm] / ir / common / firm.c
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief     Central firm functionality.
23  * @author    Martin Trapp, Christian Schaefer, Goetz Lindenmaier
24  */
25 #include "config.h"
26
27 #ifdef HAVE_FIRM_REVISION_H
28 # include "firm_revision.h"
29 #endif
30
31 #include <string.h>
32 #include <stdio.h>
33
34 #include "lc_opts.h"
35
36 #include "ident_t.h"
37 #include "firm.h"
38 #include "irflag_t.h"
39 #include "tv_t.h"
40 #include "tpop_t.h"
41 #include "irprog_t.h"
42 #include "irnode_t.h"
43 #include "irmode_t.h"
44 #include "ircons_t.h"
45 #include "irgraph_t.h"
46 #include "type_t.h"
47 #include "entity_t.h"
48 #include "firmstat.h"
49 #include "irarch.h"
50 #include "irhooks.h"
51 #include "iredges_t.h"
52 #include "irmemory_t.h"
53 #include "opt_init.h"
54 #include "debugger.h"
55 #include "be_t.h"
56 #include "irtools.h"
57
58 /* returns the firm root */
59 lc_opt_entry_t *firm_opt_get_root(void)
60 {
61         static lc_opt_entry_t *grp = NULL;
62         if (!grp)
63                 grp = lc_opt_get_grp(lc_opt_root_grp(), "firm");
64         return grp;
65 }
66
67 void ir_init(void)
68 {
69         /* for historical reasons be_init must be run first */
70         firm_be_init();
71
72         /* initialize firm flags */
73         firm_init_flags();
74         /* initialize all ident stuff */
75         init_ident();
76         /* Edges need hooks. */
77         init_edges();
78         /* create the type kinds. */
79         init_tpop();
80         /* create an obstack and put all tarvals in a pdeq */
81         init_tarval_1(0l, /* support_quad_precision */0);
82         /* Builds a basic program representation, so modes can be added. */
83         init_irprog_1();
84         /* initialize all modes an ir node can consist of */
85         init_mode();
86         /* initialize tarvals, and floating point arithmetic */
87         init_tarval_2();
88         /* init graph construction */
89         firm_init_irgraph();
90         /* kind of obstack initialization */
91         firm_init_mangle();
92         /* initialize all op codes an irnode can consist of */
93         init_op();
94         /* initialize reassociation */
95         firm_init_reassociation();
96         /* initialize function call optimization */
97         firm_init_funccalls();
98         /* initialize function inlining */
99         firm_init_inline();
100         /* initialize scalar replacement */
101         firm_init_scalar_replace();
102         /* Builds a construct allowing to access all information to be constructed
103            later. */
104         init_irprog_2();
105         /* Initialize the type module and construct some idents needed. */
106         ir_init_type();
107         /* initialize the entity module */
108         ir_init_entity();
109         /* class cast optimization */
110         firm_init_class_casts_opt();
111         /* memory disambiguation */
112         firm_init_memory_disambiguator();
113         firm_init_loop_opt();
114
115         /* Init architecture dependent optimizations. */
116         arch_dep_set_opts(arch_dep_none);
117
118         init_irnode();
119
120 #ifdef DEBUG_libfirm
121         /* integrated debugger extension */
122         firm_init_debugger();
123 #endif
124 }
125
126 void ir_finish(void)
127 {
128         free_ir_prog();
129
130         ir_finish_entity();
131         ir_finish_type();
132
133         finish_tarval();
134         finish_mode();
135         finish_tpop();
136         finish_ident();
137
138         firm_be_finish();
139 }
140
141 unsigned ir_get_version_major(void)
142 {
143         return libfirm_VERSION_MAJOR;
144 }
145
146 unsigned ir_get_version_minor(void)
147 {
148         return libfirm_VERSION_MINOR;
149 }
150
151 const char *ir_get_version_revision(void)
152 {
153 #ifdef libfirm_VERSION_REVISION
154         return libfirm_VERSION_REVISION;
155 #else
156         return "";
157 #endif
158 }
159
160 const char *ir_get_version_build(void)
161 {
162         return "";
163 }