Added opts initialization
[libfirm] / ir / common / firm.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/common/firm.c
4  * Purpose:     Central firm functionality.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #ifdef HAVE_STRING_H
18 # include <string.h>
19 #endif
20
21 # include <stdio.h>
22
23 #ifdef WITH_LIBCORE
24 #include <libcore/lc_opts.h>
25 #endif
26
27 # include "ident_t.h"
28 # include "firm.h"
29 # include "irflag_t.h"
30 # include "mangle.h"
31 /* init functions are not public */
32 # include "tv_t.h"
33 # include "tpop_t.h"
34 # include "irprog_t.h"
35 # include "irnode_t.h"
36 # include "irmode_t.h"
37 # include "ircons_t.h"
38 # include "irgraph_t.h"
39 # include "type_t.h"
40 # include "entity_t.h"
41 # include "type_identify.h"
42 # include "firmstat.h"
43 # include "irreflect_t.h"
44 # include "irarch.h"
45 # include "reassoc_t.h"
46 # include "irhooks.h"
47 # include "iredges_t.h"
48 # include "debugger.h"
49
50 #ifdef WITH_LIBCORE
51 lc_opt_entry_t *firm_opt_get_root(void)
52 {
53         static lc_opt_entry_t *grp = NULL;
54         if(!grp)
55                 grp = lc_opt_get_grp(lc_opt_root_grp(), "firm");
56         return grp;
57 }
58 #endif
59
60 void
61 init_firm(const firm_parameter_t *param)
62 {
63   firm_parameter_t def_params;
64   unsigned int     size;
65
66   memset(&def_params, 0, sizeof(def_params));
67
68   if (param) {
69     /* check for reasonable size */
70     assert(param->size <= sizeof(def_params) && (param->size & 3) == 0 &&
71            "parameter struct not initialized ???");
72     size = sizeof(def_params);
73     if (param->size < size)
74       size = param->size;
75
76     memcpy(&def_params, param, size);
77   }
78
79 #ifdef WITH_LIBCORE
80   lc_opt_init();
81 #endif
82
83         /* initialize firm flags */
84         firm_init_flags();
85   /* initialize all ident stuff */
86   init_ident(def_params.id_if, 1024);
87   /* initialize Firm hooks */
88   init_hooks();
89   /* enhanced statistics, need idents and hooks */
90   init_stat(def_params.enable_statistics);
91   /* Edges need hooks. */
92   init_edges();
93   /* create the type kinds. */
94   init_tpop();
95   /* create an obstack and put all tarvals in a pdeq */
96   init_tarval_1();
97   /* Builds a basic program representation, so modes can be added. */
98   init_irprog_1();
99   /* initialize all modes an ir node can consist of */
100   init_mode();
101   /* initialize tarvals, and floating point arithmetic */
102   init_tarval_2();
103   /* init graph construction */
104   firm_init_irgraph();
105   /* kind of obstack initialization */
106   firm_init_mangle();
107   /* initialize all op codes an irnode can consist of */
108   init_op();
109   /* called once for each run of this library */
110   init_cons(def_params.initialize_local_func);
111   /* initialize reassociation */
112   firm_init_reassociation();
113   /* Builds a construct allowing to access all information to be constructed
114      later. */
115   init_irprog_2();
116   /* Initialize the type module and construct some idents needed. */
117   firm_init_type(def_params.builtin_dbg, def_params.cc_mask);
118   /* initialize the entity module */
119   firm_init_entity();
120   /* allocate a hash table. */
121   init_type_identify(def_params.ti_if);
122   /* Init reflection facility. */
123   firm_init_rflct();
124
125   /* Init architecture dependent optimizations. */
126   arch_dep_init(arch_dep_default_factory);
127   arch_dep_set_opts(arch_dep_mul_to_shift | arch_dep_div_by_const | arch_dep_mod_by_const);
128
129   firm_archops_init(def_params.arch_op_settings);
130
131 #ifndef NDEBUG
132   /* integrated debugger extension */
133   firm_init_debugger();
134 #endif
135
136 #ifdef WITH_LIBCORE
137         /* Process command line and ini file. */
138
139         if(def_params.ini_file) {
140                 FILE *f = fopen(def_params.ini_file, "rt");
141                 if(f) {
142                         lc_opt_from_file(def_params.ini_file, f, NULL);
143                         fclose(f);
144                 }
145         }
146
147         lc_opt_from_argv(firm_opt_get_root(), def_params.arg_prefix,
148                         def_params.argc, def_params.argv, NULL);
149
150 #endif
151 }
152
153 void free_firm(void) {
154   int i;
155
156   for (i = get_irp_n_irgs() - 1; i >= 0; --i)
157     free_ir_graph(get_irp_irg(i));
158
159   free_type_entities(get_glob_type());
160   for (i = get_irp_n_types() - 1; i >= 0; --i)
161     free_type_entities(get_irp_type(i));
162
163   for (i = get_irp_n_types() - 1; i >= 0; --i)
164     free_type(get_irp_type(i));
165
166   free_ir_prog();
167
168   finish_tarval();
169   finish_op();
170   finish_mode();
171   finish_tpop();
172   finish_ident();
173 }