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