remove morgan spiller, it's unused and the coming bespill changes won't support morga...
[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_spillbelady2(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 initialization.
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_spillbelady2();
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         (void) type;
156         (void) name;
157
158         va_start(args, length);
159         opt = va_arg(args, const char*);
160
161         for (module = *(moddata->list_head); module != NULL; module = module->next) {
162                 if (strcmp(module->name, opt) == 0) {
163                         *(moddata->var) = module->data;
164                         res = 1;
165                         break;
166                 }
167         }
168         va_end(args);
169
170         return res;
171 }
172
173 /**
174  * Dump the names of all registered module options.
175  */
176 int dump_opt_module(char *buf, size_t buflen, const char *name,
177                     lc_opt_type_t type, void *data, size_t length)
178 {
179         module_opt_data_t            *moddata = data;
180         const be_module_list_entry_t *module;
181         (void) name;
182         (void) type;
183         (void) length;
184
185         for (module = *(moddata->list_head); module != NULL; module = module->next) {
186                 if (module->data == *(moddata->var)) {
187                         snprintf(buf, buflen, "%s", module->name);
188                         return strlen(buf);
189                 }
190         }
191
192         snprintf(buf, buflen, "none");
193         return strlen(buf);
194 }
195
196 /**
197  * Dump the values of all register module options.
198  */
199 int dump_opt_module_vals(char *buf, size_t buflen, const char *name,
200                          lc_opt_type_t type, void *data, size_t len)
201 {
202         module_opt_data_t            *moddata = data;
203         char                         *p       = buf;
204         const be_module_list_entry_t *module;
205         (void) name;
206         (void) type;
207         (void) len;
208
209         for (module = *(moddata->list_head); module != NULL; module = module->next) {
210                 size_t len = strlen(module->name);
211
212                 if (module != *(moddata->list_head)) {
213                         p       = strncat(p, ", ", buflen - 1);
214                         buflen -= 2;
215                 }
216
217                 p = strncat(p, module->name, buflen - 1);
218
219                 if (len >= buflen)
220                         break;
221
222                 buflen -= len;
223         }
224
225         return strlen(buf);
226 }
227
228 /**
229  * Add a new module to list.
230  */
231 void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name,
232                            void *module)
233 {
234         be_module_list_entry_t *entry;
235
236     entry       = xmalloc(sizeof(entry[0]));
237         entry->name = name;
238         entry->data = module;
239         entry->next = *list_head;
240         *list_head  = entry;
241 }
242
243 /**
244  * Add an option for a module.
245  */
246 void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name,
247                             const char *description,
248                             be_module_list_entry_t * const * list_head,
249                             void **var)
250 {
251         module_opt_data_t *moddata;
252
253         moddata            = xmalloc(sizeof(moddata[0]));
254         moddata->var       = var;
255         moddata->list_head = list_head;
256
257         lc_opt_add_opt(grp, name, description, lc_opt_type_enum,
258                        moddata, sizeof(moddata[0]),
259                        set_opt_module, dump_opt_module, dump_opt_module_vals,
260                                    NULL);
261 }