02331c6fe93ccbc4f553af39ece523135f6ee05f
[libfirm] / ir / be / bemodule.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       Backend module interface.
23  * @author      Matthias Braun
24  * @date        29.09.2005
25  */
26 #include "config.h"
27
28 #include <stdlib.h>
29 #include <stdbool.h>
30
31 #include "bemodule_t.h"
32 #include "xmalloc.h"
33
34 void be_init_abi(void);
35 void be_init_sched(void);
36 void be_init_blocksched(void);
37 void be_init_spill(void);
38 void be_init_spilloptions(void);
39 void be_init_listsched(void);
40 void be_init_sched_rand(void);
41 void be_init_sched_normal(void);
42 void be_init_sched_regpress(void);
43 void be_init_sched_trace(void);
44 void be_init_sched_trivial(void);
45 void be_init_chordal(void);
46 void be_init_pbqp_coloring(void);
47 void be_init_chordal_main(void);
48 void be_init_chordal_common(void);
49 void be_init_copyopt(void);
50 void be_init_copyheur(void);
51 void be_init_copyheur2(void);
52 void be_init_copyheur4(void);
53 void be_init_copyilp2(void);
54 void be_init_copynone(void);
55 void be_init_copystat(void);
56 void be_init_daemelspill(void);
57 void be_init_dwarf(void);
58 void be_init_arch_ia32(void);
59 void be_init_arch_arm(void);
60 void be_init_arch_amd64(void);
61 void be_init_arch_sta(void);
62 void be_init_arch_sparc(void);
63 void be_init_arch_TEMPLATE(void);
64 void be_init_copyilp(void);
65 void be_init_peephole(void);
66 void be_init_ra(void);
67 void be_init_spillbelady(void);
68 void be_init_ssaconstr(void);
69 void be_init_pref_alloc(void);
70 void be_init_irgmod(void);
71 void be_init_loopana(void);
72 void be_init_spillslots(void);
73 void be_init_live(void);
74 void be_init_state(void);
75 void be_init_pbqp(void);
76
77 void be_quit_copystat(void);
78 void be_quit_pbqp(void);
79
80 /**
81  * Driver for module initialization.
82  * Call your module initialization function here.
83  */
84 void be_init_modules(void)
85 {
86         static bool run_once = false;
87
88         if (run_once)
89                 return;
90         run_once = true;
91
92         be_init_abi();
93         be_init_irgmod();
94         be_init_loopana();
95         be_init_live();
96         be_init_spillslots();
97         be_init_sched();
98         be_init_blocksched();
99         be_init_spill();
100         be_init_spilloptions();
101
102         be_init_listsched();
103         be_init_sched_normal();
104         be_init_sched_trace();
105         be_init_sched_regpress();
106         be_init_sched_rand();
107         be_init_sched_trivial();
108
109         be_init_chordal_main();
110         be_init_chordal_common();
111         be_init_chordal();
112         be_init_copyopt();
113         be_init_copyheur4();
114         be_init_copyheur();
115         be_init_copyheur2();
116         be_init_copyilp2();
117         be_init_pbqp_coloring();
118         be_init_copynone();
119         be_init_copystat();
120         be_init_peephole();
121         be_init_ra();
122         be_init_spillbelady();
123         be_init_daemelspill();
124         be_init_dwarf();
125         be_init_ssaconstr();
126         be_init_pref_alloc();
127         be_init_state();
128
129         be_init_arch_ia32();
130         be_init_arch_arm();
131         be_init_arch_sparc();
132         be_init_arch_amd64();
133         be_init_arch_TEMPLATE();
134
135         be_init_copyilp();
136
137 #if PLUGIN_IR_BE_STA
138         be_init_arch_sta();
139 #endif /* PLUGIN_IR_BE_STA */
140
141 #ifdef FIRM_GRGEN_BE
142         be_init_pbqp();
143 #endif
144 }
145
146 void be_quit_modules(void)
147 {
148         be_quit_copystat();
149 #ifdef FIRM_GRGEN_BE
150         be_quit_pbqp();
151 #endif
152 }
153
154 //---------------------------------------------------------------------------
155
156 typedef struct module_opt_data_t {
157         void **var;
158         be_module_list_entry_t * const *list_head;
159 } module_opt_data_t;
160
161 /**
162  * Searches in list for module option. If found, set option to given value and return true.
163  * Beware: return value of 0 means error.
164  */
165 static int set_opt_module(const char *name, lc_opt_type_t type, void *data,
166                           size_t length, ...)
167 {
168         module_opt_data_t            *moddata = (module_opt_data_t*)data;
169         int                          res      = 0;
170         va_list                      args;
171         const char                   *opt;
172         const be_module_list_entry_t *module;
173         (void) type;
174         (void) name;
175
176         va_start(args, length);
177         opt = va_arg(args, const char*);
178
179         for (module = *(moddata->list_head); module != NULL; module = module->next) {
180                 if (strcmp(module->name, opt) == 0) {
181                         *(moddata->var) = module->data;
182                         res = 1;
183                         break;
184                 }
185         }
186         va_end(args);
187
188         return res;
189 }
190
191 /**
192  * Dump the names of all registered module options.
193  */
194 static int dump_opt_module(char *buf, size_t buflen, const char *name,
195                            lc_opt_type_t type, void *data, size_t length)
196 {
197         module_opt_data_t            *moddata = (module_opt_data_t*)data;
198         const be_module_list_entry_t *module;
199         (void) name;
200         (void) type;
201         (void) length;
202
203         for (module = *(moddata->list_head); module != NULL; module = module->next) {
204                 if (module->data == *(moddata->var)) {
205                         snprintf(buf, buflen, "%s", module->name);
206                         return strlen(buf);
207                 }
208         }
209
210         snprintf(buf, buflen, "none");
211         return strlen(buf);
212 }
213
214 /**
215  * Dump the values of all register module options.
216  */
217 static int dump_opt_module_vals(char *buf, size_t buflen, const char *name,
218                                 lc_opt_type_t type, void *data, size_t len)
219 {
220         module_opt_data_t            *moddata = (module_opt_data_t*)data;
221         char                         *p       = buf;
222         const be_module_list_entry_t *module;
223         (void) name;
224         (void) type;
225         (void) len;
226
227         for (module = *(moddata->list_head); module != NULL; module = module->next) {
228                 size_t name_len = strlen(module->name);
229
230                 if (module != *(moddata->list_head)) {
231                         p       = strncat(p, ", ", buflen - 1);
232                         buflen -= 2;
233                 }
234
235                 p = strncat(p, module->name, buflen - 1);
236
237                 if (name_len >= buflen)
238                         break;
239
240                 buflen -= name_len;
241         }
242
243         return strlen(buf);
244 }
245
246 /**
247  * Add a new module to list.
248  */
249 void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name,
250                            void *module)
251 {
252         be_module_list_entry_t *entry = XMALLOC(be_module_list_entry_t);
253         entry->name = name;
254         entry->data = module;
255         entry->next = *list_head;
256         *list_head  = entry;
257 }
258
259 /**
260  * Add an option for a module.
261  */
262 void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name,
263                             const char *description,
264                             be_module_list_entry_t * const * list_head,
265                             void **var)
266 {
267         module_opt_data_t *moddata = XMALLOC(module_opt_data_t);
268         moddata->var       = var;
269         moddata->list_head = list_head;
270
271         lc_opt_add_opt(grp, name, description, lc_opt_type_enum,
272                        moddata, sizeof(moddata[0]),
273                        set_opt_module, dump_opt_module, dump_opt_module_vals,
274                                    NULL);
275 }