Remove the unused facility to register space /in front of/ a node.
[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 #include "execfreq_t.h"
58
59 /* returns the firm root */
60 lc_opt_entry_t *firm_opt_get_root(void)
61 {
62         static lc_opt_entry_t *grp = NULL;
63         if (!grp)
64                 grp = lc_opt_get_grp(lc_opt_root_grp(), "firm");
65         return grp;
66 }
67
68 void ir_init(void)
69 {
70         /* for historical reasons be_init must be run first */
71         firm_be_init();
72
73         /* initialize firm flags */
74         firm_init_flags();
75         /* initialize all ident stuff */
76         init_ident();
77         /* Edges need hooks. */
78         init_edges();
79         /* create the type kinds. */
80         init_tpop();
81         /* create an obstack and put all tarvals in a pdeq */
82         init_tarval_1(0l, /* support_quad_precision */0);
83         /* Builds a basic program representation, so modes can be added. */
84         init_irprog_1();
85         /* initialize all modes an ir node can consist of */
86         init_mode();
87         /* initialize tarvals, and floating point arithmetic */
88         init_tarval_2();
89         /* initialize node opcodes */
90         firm_init_op();
91         /* init graph construction */
92         firm_init_irgraph();
93         /* kind of obstack initialization */
94         firm_init_mangle();
95         /* initialize reassociation */
96         firm_init_reassociation();
97         /* initialize function call optimization */
98         firm_init_funccalls();
99         /* initialize function inlining */
100         firm_init_inline();
101         /* initialize scalar replacement */
102         firm_init_scalar_replace();
103         /* Builds a construct allowing to access all information to be constructed
104            later. */
105         init_irprog_2();
106         /* class cast optimization */
107         firm_init_class_casts_opt();
108         /* memory disambiguation */
109         firm_init_memory_disambiguator();
110         firm_init_loop_opt();
111
112         /* Init architecture dependent optimizations. */
113         arch_dep_set_opts(arch_dep_none);
114
115         init_execfreq();
116
117 #ifdef DEBUG_libfirm
118         /* integrated debugger extension */
119         firm_init_debugger();
120 #endif
121 }
122
123 void ir_finish(void)
124 {
125 #ifdef DEBUG_libfirm
126         firm_finish_debugger();
127 #endif
128         exit_execfreq();
129         firm_be_finish();
130
131         free_ir_prog();
132         firm_finish_op();
133         finish_tarval();
134         finish_mode();
135         finish_tpop();
136         firm_finish_mangle();
137         finish_ident();
138 }
139
140 unsigned ir_get_version_major(void)
141 {
142         return libfirm_VERSION_MAJOR;
143 }
144
145 unsigned ir_get_version_minor(void)
146 {
147         return libfirm_VERSION_MINOR;
148 }
149
150 const char *ir_get_version_revision(void)
151 {
152 #ifdef libfirm_VERSION_REVISION
153         return libfirm_VERSION_REVISION;
154 #else
155         return "";
156 #endif
157 }
158
159 const char *ir_get_version_build(void)
160 {
161         return "";
162 }