moved ycomp debugger extension init to edg frontend
[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 #ifdef HAVE_CONFIG_H
13 # include "config.h"
14 #endif
15
16 #ifdef HAVE_STRING_H
17 # include <string.h>
18 #endif
19 #ifdef HAVE_STDIO_H
20 # include <stdio.h>
21 #endif
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 /* returns the firm root */
52 lc_opt_entry_t *firm_opt_get_root(void) {
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
59 void firm_init_options(const char *arg_prefix, int argc, const char **argv) {
60   /* parse any init files for firm */
61   lc_opts_init("firm", firm_opt_get_root(), arg_prefix, argc, argv);
62 }
63 #endif /* WITH_LIBCORE */
64
65 void
66 init_firm(const firm_parameter_t *param)
67 {
68   firm_parameter_t def_params;
69   unsigned int     size;
70
71   memset(&def_params, 0, sizeof(def_params));
72
73   if (param) {
74     /* check for reasonable size */
75     assert(param->size <= sizeof(def_params) && (param->size & 3) == 0 &&
76            "parameter struct not initialized ???");
77     size = sizeof(def_params);
78     if (param->size < size)
79       size = param->size;
80
81     memcpy(&def_params, param, size);
82   }
83
84   /* initialize firm flags */
85   firm_init_flags();
86   /* initialize all ident stuff */
87   init_ident(def_params.id_if, 1024);
88   /* initialize Firm hooks */
89   firm_init_hooks();
90   /* enhanced statistics, need idents and hooks */
91   firm_init_stat(def_params.enable_statistics);
92   /* Edges need hooks. */
93   init_edges();
94   /* create the type kinds. */
95   init_tpop();
96   /* create an obstack and put all tarvals in a pdeq */
97   init_tarval_1(0l);
98   /* Builds a basic program representation, so modes can be added. */
99   init_irprog_1();
100   /* initialize all modes an ir node can consist of */
101   init_mode();
102   /* initialize tarvals, and floating point arithmetic */
103   init_tarval_2();
104   /* init graph construction */
105   firm_init_irgraph();
106   /* kind of obstack initialization */
107   firm_init_mangle();
108   /* initialize all op codes an irnode can consist of */
109   init_op();
110   /* called once for each run of this library */
111   init_cons(def_params.initialize_local_func);
112   /* initialize reassociation */
113   firm_init_reassociation();
114   /* Builds a construct allowing to access all information to be constructed
115      later. */
116   init_irprog_2();
117   /* Initialize the type module ancd cr d construct some idents needed. */
118   firm_init_type(def_params.builtin_dbg, def_params.cc_mask);
119   /* initialize the entity module */
120   firm_init_entity();
121   /* allocate a hash table. */
122   init_type_identify(def_params.ti_if);
123   /* Init reflection facility. */
124   firm_init_rflct();
125
126   /* Init architecture dependent optimizations. */
127   arch_dep_init(arch_dep_default_factory);
128   arch_dep_set_opts(arch_dep_mul_to_shift | arch_dep_div_by_const | arch_dep_mod_by_const);
129
130   firm_archops_init(def_params.arch_op_settings);
131
132 #ifndef NDEBUG
133   /* integrated debugger extension */
134   firm_init_debugger();
135 #endif
136 }
137
138 void free_firm(void) {
139   int i;
140
141   for (i = get_irp_n_irgs() - 1; i >= 0; --i)
142     free_ir_graph(get_irp_irg(i));
143
144   free_type_entities(get_glob_type());
145   for (i = get_irp_n_types() - 1; i >= 0; --i)
146     free_type_entities(get_irp_type(i));
147
148   for (i = get_irp_n_types() - 1; i >= 0; --i)
149     free_type(get_irp_type(i));
150
151   finish_op();
152   free_ir_prog();
153
154   finish_tarval();
155   finish_mode();
156   finish_tpop();
157   finish_ident();
158 }
159
160 /* Returns the libFirm version number. */
161 void firm_get_version(firm_version_t *version) {
162   version->major = libFirm_VERSION_MAJOR;
163   version->minor = libFirm_VERSION_MINOR;
164 }