more firm_config includes removed
[libfirm] / ir / common / firm.c
1 /*
2  * Copyright (C) 1995-2008 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  * @version   $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #ifdef HAVE_FIRM_REVISION_H
31 # include "firm_revision.h"
32 #endif
33
34 #ifdef HAVE_STRING_H
35 # include <string.h>
36 #endif
37 #ifdef HAVE_STDIO_H
38 # include <stdio.h>
39 #endif
40
41 #include "lc_opts.h"
42
43 #include "ident_t.h"
44 #include "firm.h"
45 #include "irflag_t.h"
46 /* init functions are not public */
47 #include "tv_t.h"
48 #include "tpop_t.h"
49 #include "irprog_t.h"
50 #include "irnode_t.h"
51 #include "irmode_t.h"
52 #include "ircons_t.h"
53 #include "irgraph_t.h"
54 #include "type_t.h"
55 #include "entity_t.h"
56 #include "opt_inline_t.h"
57 #include "scalar_replace.h"
58 #include "firmstat.h"
59 #include "irarch.h"
60 #include "reassoc_t.h"
61 #include "funccall_t.h"
62 #include "irhooks.h"
63 #include "iredges_t.h"
64 #include "irmemory_t.h"
65 #include "tropt.h"
66 #include "debugger.h"
67 #include "be_t.h"
68
69 /* returns the firm root */
70 lc_opt_entry_t *firm_opt_get_root(void) {
71         static lc_opt_entry_t *grp = NULL;
72         if (!grp)
73                 grp = lc_opt_get_grp(lc_opt_root_grp(), "firm");
74         return grp;
75 }
76
77 void firm_init_options(const char *arg_prefix, int argc, const char **argv) {
78         /* parse any init files for firm */
79         lc_opts_init("firm", firm_opt_get_root(), arg_prefix, argc, argv);
80 }
81
82 void init_firm(const firm_parameter_t *param)
83 {
84         firm_parameter_t def_params;
85         unsigned int     size;
86
87         /* for historical reasons be_init must be run first */
88         firm_be_init();
89
90         memset(&def_params, 0, sizeof(def_params));
91
92         if (param) {
93                 /* check for reasonable size */
94                 assert(param->size <= sizeof(def_params) && (param->size & 3) == 0 &&
95                                 "parameter struct not initialized ???");
96                 size = sizeof(def_params);
97                 if (param->size < size)
98                         size = param->size;
99
100                 memcpy(&def_params, param, size);
101         }
102
103         /* initialize firm flags */
104         firm_init_flags();
105         /* initialize all ident stuff */
106         init_ident(def_params.id_if, 1024);
107         /* initialize Firm hooks */
108         firm_init_hooks();
109         /* enhanced statistics, need idents and hooks */
110         firm_init_stat(def_params.enable_statistics);
111         /* Edges need hooks. */
112         init_edges();
113         /* create the type kinds. */
114         init_tpop();
115         /* create an obstack and put all tarvals in a pdeq */
116         init_tarval_1(0l, /* support_quad_precision */0);
117         /* Builds a basic program representation, so modes can be added. */
118         init_irprog_1();
119         /* initialize all modes an ir node can consist of */
120         init_mode();
121         /* initialize tarvals, and floating point arithmetic */
122         init_tarval_2();
123         /* init graph construction */
124         firm_init_irgraph();
125         /* kind of obstack initialization */
126         firm_init_mangle();
127         /* initialize all op codes an irnode can consist of */
128         init_op();
129         /* called once for each run of this library */
130         firm_init_cons(def_params.initialize_local_func);
131         /* initialize reassociation */
132         firm_init_reassociation();
133         /* initialize function call optimization */
134         firm_init_funccalls();
135         /* initialize function inlining */
136         firm_init_inline();
137         /* initialize scalar replacement */
138         firm_init_scalar_replace();
139         /* Builds a construct allowing to access all information to be constructed
140            later. */
141         init_irprog_2();
142         /* Initialize the type module and construct some idents needed. */
143         firm_init_type(def_params.builtin_dbg, def_params.cc_mask);
144         /* initialize the entity module */
145         firm_init_entity();
146         /* allocate a hash table. */
147         init_type_identify(def_params.ti_if);
148         /* class cast optimization */
149         firm_init_class_casts_opt();
150         /* memory disambiguation */
151         firm_init_memory_disambiguator();
152
153         /* Init architecture dependent optimizations. */
154         arch_dep_init(arch_dep_default_factory);
155         arch_dep_set_opts(0);
156
157         firm_archops_init(def_params.arch_op_settings);
158
159 #ifdef DEBUG_libfirm
160         /* integrated debugger extension */
161         firm_init_debugger();
162 #endif
163 }
164
165 void free_firm(void) {
166         int i;
167
168         for (i = get_irp_n_irgs() - 1; i >= 0; --i)
169                 free_ir_graph(get_irp_irg(i));
170
171         free_type_entities(get_glob_type());
172         for (i = get_irp_n_types() - 1; i >= 0; --i)
173                 free_type_entities(get_irp_type(i));
174
175         for (i = get_irp_n_types() - 1; i >= 0; --i)
176                 free_type(get_irp_type(i));
177
178         free_ir_prog();
179
180         finish_tarval();
181         finish_mode();
182         finish_tpop();
183         finish_ident();
184
185         firm_be_finish();
186 }
187
188 /* Returns the libFirm version number. */
189 void firm_get_version(firm_version_t *version) {
190         version->major    = libfirm_VERSION_MAJOR;
191         version->minor    = libfirm_VERSION_MINOR;
192 #ifdef libfirm_VERSION_REVISION
193         version->revision = libfirm_VERSION_REVISION;
194 #else
195         version->revision = "";
196 #endif
197         version->build    = "";
198 }