introduction of bemodule
[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  */
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif
10
11 #include <stdlib.h>
12
13 #include "bemodule_t.h"
14 #include "xmalloc.h"
15
16 void be_init_sched(void);
17 void be_init_blocksched(void);
18 void be_init_spill(void);
19 void be_init_listsched(void);
20 void be_init_schedrss(void);
21 void be_init_chordal(void);
22 void be_init_copycoal(void);
23 void be_init_copyheur2(void);
24 void be_init_raextern(void);
25 void be_init_copystat(void);
26 void be_init_arch_ia32(void);
27 void be_init_arch_ppc32(void);
28 void be_init_arch_mips(void);
29 void be_init_arch_arm(void);
30 void be_init_ilpsched(void);
31 void be_init_copyilp(void);
32 void be_init_spillremat(void);
33 void be_init_javacoal(void);
34 void be_init_ra(void);
35
36 void be_quit_copystat(void);
37
38 void be_init_modules(void)
39 {
40         static int run_once = 0;
41
42         if(run_once)
43                 return;
44         run_once = 1;
45
46         be_init_sched();
47         be_init_blocksched();
48         be_init_spill();
49         be_init_listsched();
50         be_init_schedrss();
51         be_init_chordal();
52         be_init_copycoal();
53         be_init_copyheur2();
54         be_init_raextern();
55         be_init_copystat();
56         be_init_ra();
57
58         be_init_arch_ia32();
59         be_init_arch_ppc32();
60         be_init_arch_mips();
61         be_init_arch_arm();
62
63 #ifdef WITH_ILP
64         be_init_ilpsched();
65         be_init_copyilp();
66         be_init_spillremat();
67 #endif
68
69 #ifdef WITH_JVM
70         be_init_javacoal();
71 #endif
72 }
73
74 void be_quit_modules(void)
75 {
76         be_quit_copystat();
77 }
78
79 //---------------------------------------------------------------------------
80
81 typedef struct module_opt_data_t {
82         void **var;
83         const be_module_list_entry_t * const *list_head;
84 } module_opt_data_t;
85
86 static int set_opt_module(const char *name, lc_opt_type_t type, void *data, size_t length, ...)
87 {
88         module_opt_data_t *moddata = data;
89         va_list args;
90         const char* opt;
91         const be_module_list_entry_t *module;
92
93         va_start(args, length);
94         opt = va_arg(args, const char*);
95
96         for(module = *(moddata->list_head); module != NULL; module = module->next) {
97                 if(strcmp(module->name, opt) == 0) {
98                         *(moddata->var) = module->data;
99                         break;
100                 }
101         }
102         va_end(args);
103
104         return 0;
105 }
106
107 int dump_opt_module(char *buf, size_t buflen, const char *name,
108                     lc_opt_type_t type, void *data, size_t length)
109 {
110         module_opt_data_t *moddata = data;
111         const be_module_list_entry_t *module;
112
113         for(module = *(moddata->list_head); module != NULL; module = module->next) {
114                 if(module->data == *(moddata->var)) {
115                         snprintf(buf, buflen, "%s", module->name);
116                         return strlen(buf);
117                 }
118         }
119
120         snprintf(buf, buflen, "none");
121         return strlen(buf);
122 }
123
124 int dump_opt_module_vals(char *buf, size_t buflen, const char *name,
125                          lc_opt_type_t type, void *data, size_t len)
126 {
127         module_opt_data_t *moddata = data;
128         const be_module_list_entry_t *module;
129         char *p = buf;
130
131         for(module = *(moddata->list_head); module != NULL; module = module->next) {
132                 size_t len = strlen(module->name);
133
134                 if(module != *(moddata->list_head)) {
135                         p = strncat(p, ", ", buflen - 1);
136                         buflen -= 2;
137                 }
138
139                 p = strncat(p, module->name, buflen - 1);
140                 if(len >= buflen) {
141                         break;
142                 }
143                 buflen -= len;
144         }
145
146         return strlen(buf);
147 }
148
149
150 void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name,
151                            void *module)
152 {
153         be_module_list_entry_t *entry = xmalloc(sizeof(entry[0]));
154         entry->name = name;
155         entry->data = module;
156         entry->next = *list_head;
157         *list_head = entry->next;
158 }
159
160 void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name,
161                             const char *description,
162                             const be_module_list_entry_t * const * list_head,
163                             void **var)
164 {
165         module_opt_data_t *moddata = xmalloc(sizeof(moddata[0]));
166         moddata->var = var;
167         moddata->list_head = list_head;
168
169         lc_opt_add_opt(grp, name, description, lc_opt_type_enum,
170                        moddata, sizeof(moddata[0]),
171                        set_opt_module, dump_opt_module, dump_opt_module_vals,
172                                    NULL);
173 }