ddc39c01ed8921e96cbcdcd13ff617324a03be85
[libfirm] / ir / be / bemodule.c
1 /*
2  * Author:      Matthias Braun
3  * Date:        29.09.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  * CVS-Id:      $Id$
7  */
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #include <stdlib.h>
13
14 #include "bemodule_t.h"
15 #include "xmalloc.h"
16
17 void be_init_sched(void);
18 void be_init_blocksched(void);
19 void be_init_spill(void);
20 void be_init_listsched(void);
21 void be_init_schedrss(void);
22 void be_init_chordal(void);
23 void be_init_copycoal(void);
24 void be_init_copyheur2(void);
25 void be_init_raextern(void);
26 void be_init_copystat(void);
27 void be_init_arch_ia32(void);
28 void be_init_arch_ppc32(void);
29 void be_init_arch_mips(void);
30 void be_init_arch_arm(void);
31 void be_init_arch_sta(void);
32 void be_init_ilpsched(void);
33 void be_init_copyilp(void);
34 void be_init_javacoal(void);
35 void be_init_ra(void);
36 void be_init_spillbelady(void);
37 void be_init_spillmorgan(void);
38 void be_init_spillremat(void);
39 void be_init_ifg(void);
40
41 void be_quit_copystat(void);
42
43 /**
44  * Driver for module intialization.
45  * Call your module initialization function here.
46  */
47 void be_init_modules(void)
48 {
49         static int run_once = 0;
50
51         if (run_once)
52                 return;
53         run_once = 1;
54
55         be_init_sched();
56         be_init_blocksched();
57         be_init_spill();
58         be_init_listsched();
59         be_init_schedrss();
60         be_init_chordal();
61         be_init_copycoal();
62         be_init_copyheur2();
63         be_init_raextern();
64         be_init_copystat();
65         be_init_ra();
66         be_init_spillbelady();
67         be_init_spillmorgan();
68         be_init_ifg();
69
70         be_init_arch_ia32();
71         be_init_arch_ppc32();
72         be_init_arch_mips();
73         be_init_arch_arm();
74
75 #ifdef WITH_ILP
76         be_init_ilpsched();
77         be_init_copyilp();
78         be_init_spillremat();
79 #endif /* WITH_ILP */
80
81 #ifdef WITH_JVM
82         be_init_javacoal();
83 #endif /* WITH_JVM */
84
85 #if PLUGIN_IR_BE_STA
86         be_init_arch_sta();
87 #endif /* PLUGIN_IR_BE_STA */
88 }
89
90 void be_quit_modules(void)
91 {
92         be_quit_copystat();
93 }
94
95 //---------------------------------------------------------------------------
96
97 typedef struct module_opt_data_t {
98         void **var;
99         be_module_list_entry_t * const *list_head;
100 } module_opt_data_t;
101
102 /**
103  * Searches in list for module option. If found, set option to given value and return true.
104  * Beware: return value of 0 means error.
105  */
106 static int set_opt_module(const char *name, lc_opt_type_t type, void *data,
107                           size_t length, ...)
108 {
109         module_opt_data_t            *moddata = data;
110         int                          res      = 0;
111         va_list                      args;
112         const char                   *opt;
113         const be_module_list_entry_t *module;
114
115         va_start(args, length);
116         opt = va_arg(args, const char*);
117
118         for (module = *(moddata->list_head); module != NULL; module = module->next) {
119                 if (strcmp(module->name, opt) == 0) {
120                         *(moddata->var) = module->data;
121                         res = 1;
122                         break;
123                 }
124         }
125         va_end(args);
126
127         return res;
128 }
129
130 /**
131  * Dump the names of all registered module options.
132  */
133 int dump_opt_module(char *buf, size_t buflen, const char *name,
134                     lc_opt_type_t type, void *data, size_t length)
135 {
136         module_opt_data_t            *moddata = data;
137         const be_module_list_entry_t *module;
138
139         for (module = *(moddata->list_head); module != NULL; module = module->next) {
140                 if (module->data == *(moddata->var)) {
141                         snprintf(buf, buflen, "%s", module->name);
142                         return strlen(buf);
143                 }
144         }
145
146         snprintf(buf, buflen, "none");
147         return strlen(buf);
148 }
149
150 /**
151  * Dump the values of all register module options.
152  */
153 int dump_opt_module_vals(char *buf, size_t buflen, const char *name,
154                          lc_opt_type_t type, void *data, size_t len)
155 {
156         module_opt_data_t            *moddata = data;
157         char                         *p       = buf;
158         const be_module_list_entry_t *module;
159
160         for (module = *(moddata->list_head); module != NULL; module = module->next) {
161                 size_t len = strlen(module->name);
162
163                 if (module != *(moddata->list_head)) {
164                         p       = strncat(p, ", ", buflen - 1);
165                         buflen -= 2;
166                 }
167
168                 p = strncat(p, module->name, buflen - 1);
169
170                 if (len >= buflen)
171                         break;
172
173                 buflen -= len;
174         }
175
176         return strlen(buf);
177 }
178
179 /**
180  * Add a new module to list.
181  */
182 void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name,
183                            void *module)
184 {
185         be_module_list_entry_t *entry;
186
187     entry       = xmalloc(sizeof(entry[0]));
188         entry->name = name;
189         entry->data = module;
190         entry->next = *list_head;
191         *list_head  = entry;
192 }
193
194 /**
195  * Add an option for a module.
196  */
197 void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name,
198                             const char *description,
199                             be_module_list_entry_t * const * list_head,
200                             void **var)
201 {
202         module_opt_data_t *moddata;
203
204         moddata            = xmalloc(sizeof(moddata[0]));
205         moddata->var       = var;
206         moddata->list_head = list_head;
207
208         lc_opt_add_opt(grp, name, description, lc_opt_type_enum,
209                        moddata, sizeof(moddata[0]),
210                        set_opt_module, dump_opt_module, dump_opt_module_vals,
211                                    NULL);
212 }