added sieve
[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 #if 0
72         be_init_arch_ppc32();
73         be_init_arch_mips();
74         be_init_arch_arm();
75 #endif
76
77 #ifdef WITH_ILP
78         be_init_ilpsched();
79         be_init_copyilp();
80         be_init_spillremat();
81 #endif /* WITH_ILP */
82
83 #ifdef WITH_JVM
84         be_init_javacoal();
85 #endif /* WITH_JVM */
86
87 #if PLUGIN_IR_BE_STA
88         be_init_arch_sta();
89 #endif /* PLUGIN_IR_BE_STA */
90 }
91
92 void be_quit_modules(void)
93 {
94         be_quit_copystat();
95 }
96
97 //---------------------------------------------------------------------------
98
99 typedef struct module_opt_data_t {
100         void **var;
101         be_module_list_entry_t * const *list_head;
102 } module_opt_data_t;
103
104 /**
105  * Searches in list for module option. If found, set option to given value and return true.
106  * Beware: return value of 0 means error.
107  */
108 static int set_opt_module(const char *name, lc_opt_type_t type, void *data,
109                           size_t length, ...)
110 {
111         module_opt_data_t            *moddata = data;
112         int                          res      = 0;
113         va_list                      args;
114         const char                   *opt;
115         const be_module_list_entry_t *module;
116
117         va_start(args, length);
118         opt = va_arg(args, const char*);
119
120         for (module = *(moddata->list_head); module != NULL; module = module->next) {
121                 if (strcmp(module->name, opt) == 0) {
122                         *(moddata->var) = module->data;
123                         res = 1;
124                         break;
125                 }
126         }
127         va_end(args);
128
129         return res;
130 }
131
132 /**
133  * Dump the names of all registered module options.
134  */
135 int dump_opt_module(char *buf, size_t buflen, const char *name,
136                     lc_opt_type_t type, void *data, size_t length)
137 {
138         module_opt_data_t            *moddata = data;
139         const be_module_list_entry_t *module;
140
141         for (module = *(moddata->list_head); module != NULL; module = module->next) {
142                 if (module->data == *(moddata->var)) {
143                         snprintf(buf, buflen, "%s", module->name);
144                         return strlen(buf);
145                 }
146         }
147
148         snprintf(buf, buflen, "none");
149         return strlen(buf);
150 }
151
152 /**
153  * Dump the values of all register module options.
154  */
155 int dump_opt_module_vals(char *buf, size_t buflen, const char *name,
156                          lc_opt_type_t type, void *data, size_t len)
157 {
158         module_opt_data_t            *moddata = data;
159         char                         *p       = buf;
160         const be_module_list_entry_t *module;
161
162         for (module = *(moddata->list_head); module != NULL; module = module->next) {
163                 size_t len = strlen(module->name);
164
165                 if (module != *(moddata->list_head)) {
166                         p       = strncat(p, ", ", buflen - 1);
167                         buflen -= 2;
168                 }
169
170                 p = strncat(p, module->name, buflen - 1);
171
172                 if (len >= buflen)
173                         break;
174
175                 buflen -= len;
176         }
177
178         return strlen(buf);
179 }
180
181 /**
182  * Add a new module to list.
183  */
184 void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name,
185                            void *module)
186 {
187         be_module_list_entry_t *entry;
188
189     entry       = xmalloc(sizeof(entry[0]));
190         entry->name = name;
191         entry->data = module;
192         entry->next = *list_head;
193         *list_head  = entry;
194 }
195
196 /**
197  * Add an option for a module.
198  */
199 void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name,
200                             const char *description,
201                             be_module_list_entry_t * const * list_head,
202                             void **var)
203 {
204         module_opt_data_t *moddata;
205
206         moddata            = xmalloc(sizeof(moddata[0]));
207         moddata->var       = var;
208         moddata->list_head = list_head;
209
210         lc_opt_add_opt(grp, name, description, lc_opt_type_enum,
211                        moddata, sizeof(moddata[0]),
212                        set_opt_module, dump_opt_module, dump_opt_module_vals,
213                                    NULL);
214 }