added DUMP const for belower
[libfirm] / ir / be / ia32 / bearch_ia32.c
1 #include "pseudo_irg.h"
2 #include "irgwalk.h"
3 #include "irprog.h"
4 #include "irprintf.h"
5 #include "bearch_ia32.h"
6
7 #include "bitset.h"
8 #include "debug.h"
9
10 #include <obstack.h>
11
12 #ifdef obstack_chunk_alloc
13 # undef obstack_chunk_alloc
14 # define obstack_chunk_alloc malloc
15 #else
16 # define obstack_chunk_alloc malloc
17 # define obstack_chunk_free free
18 #endif
19
20 #include "../bearch.h"                /* the general register allocator interface */
21
22 #include "ia32_new_nodes.h"           /* ia32 nodes interface */
23 #include "gen_ia32_regalloc_if.h"     /* the generated interface (register type and class defenitions) */
24 #include "ia32_gen_decls.h"           /* interface declaration emitter */
25 #include "ia32_transform.h"
26 #include "ia32_emitter.h"
27 #include "ia32_map_regs.h"
28
29 #define DEBUG_MODULE "be.isa.ia32"
30
31 /* TODO: ugly */
32 static set *cur_reg_set = NULL;
33
34 /**
35  * Stuff needed for dummy register requirements to keep register allocator
36  * happy during development.
37  */
38 static arch_register_t       ia32_dummy_regs[500];
39 static arch_register_class_t ia32_dummy_reg_class = {
40         "dummy",
41         500,
42         ia32_dummy_regs
43 };
44
45 static arch_register_req_t ia32_dummy_register_req = {
46         arch_register_req_type_normal,
47         &ia32_dummy_reg_class,
48         { NULL }
49 };
50
51
52
53 /**************************************************
54  *                         _ _              _  __
55  *                        | | |            (_)/ _|
56  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
57  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
58  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
59  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
60  *            __/ |
61  *           |___/
62  **************************************************/
63
64 static ir_node *my_skip_proj(const ir_node *n) {
65         while (is_Proj(n))
66                 n = get_Proj_pred(n);
67         return (ir_node *)n;
68 }
69
70 /**
71  * Return register requirements for an ia32 node.
72  * If the node returns a tuple (mode_T) then the proj's
73  * will be asked for this information.
74  */
75 static const arch_register_req_t *ia32_get_irn_reg_req(const arch_irn_ops_t *self, arch_register_req_t *req, const ir_node *irn, int pos) {
76         const arch_register_req_t **irn_req;
77         long node_pos = pos == -1 ? 0 : pos;
78         ir_mode *mode = get_irn_mode(irn);
79         firm_dbg_module_t *mod = firm_dbg_register(DEBUG_MODULE);
80
81         if (mode == mode_T || mode == mode_M) {
82                 DBG((mod, LEVEL_1, "ignoring mode_T, mode_M node %+F\n", irn));
83                 return NULL;
84         }
85
86         DBG((mod, LEVEL_1, "get requirements at pos %d for %+F ... ", pos, irn));
87
88         if (is_Proj(irn)) {
89                 if (pos == -1)
90                         node_pos = translate_proj_pos(irn);
91                 else
92                         node_pos = pos;
93
94                 irn = my_skip_proj(irn);
95
96                 DBG((mod, LEVEL_1, "skipping Proj, going to %+F at pos %d ... ", irn, node_pos));
97         }
98
99         if (is_ia32_irn(irn)) {
100                 if (pos >= 0) {
101                         irn_req = get_ia32_in_req(irn);
102                 }
103                 else {
104                         irn_req = get_ia32_out_req(irn);
105                         pos     = node_pos;
106                 }
107
108                 DBG((mod, LEVEL_1, "returning reqs for %+F at pos %d\n", irn, pos));
109
110                 memcpy(req, irn_req[pos], sizeof(*req));
111                 return req;
112         }
113         else {
114                 /* treat Phi like Const with default requirements */
115                 if (is_Phi(irn)) {
116                         DBG((mod, LEVEL_1, "returning standard reqs for %+F\n", irn));
117                         if (mode_is_float(mode))
118                                 memcpy(req, &ia32_default_req_ia32_floating_point, sizeof(*req));
119                         else if (mode_is_int(mode) || mode_is_reference(mode))
120                                 memcpy(req, &ia32_default_req_ia32_general_purpose, sizeof(*req));
121                         else if (mode == mode_T || mode == mode_M) {
122                                 DBG((mod, LEVEL_1, "ignoring Phi node %+F\n", irn));
123                                 return NULL;
124                         }
125                         else
126                                 assert(0 && "unsupported Phi-Mode");
127                 }
128                 else if (get_irn_op(irn) == op_Start) {
129                         DBG((mod, LEVEL_1, "returning reqs none for ProjX -> Start (%+F )\n", irn));
130                         switch (node_pos) {
131                                 case pn_Start_X_initial_exec:
132                                 case pn_Start_P_value_arg_base:
133                                 case pn_Start_P_globals:
134                                 case pn_Start_P_frame_base:
135                                         memcpy(req, &ia32_default_req_none, sizeof(*req));
136                                         break;
137                                 case pn_Start_T_args:
138                                         assert(0 && "ProjT(pn_Start_T_args) should not be asked");
139                         }
140                 }
141                 else if (get_irn_op(irn) == op_Return && pos >= 0) {
142                         DBG((mod, LEVEL_1, "returning reqs EAX for %+F\n", irn));
143                         memcpy(req, &ia32_default_req_ia32_general_purpose_eax, sizeof(*req));
144                 }
145                 else {
146                         DBG((mod, LEVEL_1, "returning standard reqs for %+F (not ia32)\n", irn));
147                         memcpy(req, &ia32_dummy_register_req, sizeof(*req));
148                 }
149         }
150
151         return req;
152 }
153
154 static void ia32_set_irn_reg(const arch_irn_ops_t *self, ir_node *irn, const arch_register_t *reg) {
155         int pos = 0;
156
157         if (is_Proj(irn)) {
158                 pos = translate_proj_pos(irn);
159                 irn = my_skip_proj(irn);
160         }
161
162         if (is_ia32_irn(irn)) {
163                 const arch_register_t **slots;
164
165                 slots      = get_ia32_slots(irn);
166                 slots[pos] = reg;
167         }
168         else {
169                 ia32_set_firm_reg(self, irn, reg, cur_reg_set);
170         }
171 }
172
173 static const arch_register_t *ia32_get_irn_reg(const arch_irn_ops_t *self, const ir_node *irn) {
174         int pos = 0;
175         const arch_register_t *reg = NULL;
176
177         if (is_Proj(irn)) {
178                 pos = translate_proj_pos(irn);
179                 irn = my_skip_proj(irn);
180         }
181
182         if (is_ia32_irn(irn)) {
183                 const arch_register_t **slots;
184                 slots = get_ia32_slots(irn);
185                 reg   = slots[pos];
186         }
187         else {
188                 reg = ia32_get_firm_reg(self, irn, cur_reg_set);
189         }
190
191         return reg;
192 }
193
194 static arch_irn_class_t ia32_classify(const arch_irn_ops_t *self, const ir_node *irn) {
195         irn = my_skip_proj(irn);
196         if (is_cfop(irn))
197                 return arch_irn_class_branch;
198         else
199                 return arch_irn_class_normal;
200 }
201
202 static arch_irn_flags_t ia32_get_flags(const arch_irn_ops_t *self, const ir_node *irn) {
203         irn = my_skip_proj(irn);
204         if (is_ia32_irn(irn))
205                 return get_ia32_flags(irn);
206         else {
207                 ir_printf("don't know flags of %+F\n", irn);
208                 return 0;
209         }
210 }
211
212 /* fill register allocator interface */
213
214 static const arch_irn_ops_t ia32_irn_ops = {
215         ia32_get_irn_reg_req,
216         ia32_set_irn_reg,
217         ia32_get_irn_reg,
218         ia32_classify,
219         ia32_get_flags
220 };
221
222
223
224 /**************************************************
225  *                _                         _  __
226  *               | |                       (_)/ _|
227  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
228  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
229  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
230  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
231  *                        __/ |
232  *                       |___/
233  **************************************************/
234
235 typedef struct _ia32_code_gen_t {
236         const arch_code_generator_if_t *impl;    /* implementation */
237         ir_graph                       *irg;     /* current irg */
238         FILE                           *out;     /* output file */
239         set                            *reg_set; /* set to memorize registers for non-ia32 nodes (e.g. phi nodes) */
240         firm_dbg_module_t              *mod;     /* debugging module */
241         int                             emit_decls;
242 } ia32_code_gen_t;
243
244
245
246 /**
247  * Transforms the standard firm graph into
248  * an ia32 firm graph
249  */
250 static void ia32_prepare_graph(void *self) {
251         ia32_code_gen_t   *cg  = self;
252
253         if (! is_pseudo_ir_graph(cg->irg))
254                 irg_walk_blkwise_graph(cg->irg, NULL, ia32_transform_node, cg->mod);
255 }
256
257
258
259 /**
260  * Dummy functions for hooks we don't need but which must be filled.
261  */
262 static void ia32_before_sched(void *self) {
263 }
264
265 static void ia32_before_ra(void *self) {
266 }
267
268
269
270 /**
271  * Emits the code, closes the output file and frees
272  * the code generator interface.
273  */
274 static void ia32_codegen(void *self) {
275         ia32_code_gen_t *cg = self;
276         ir_graph       *irg = cg->irg;
277         FILE           *out = cg->out;
278
279         if (cg->emit_decls) {
280                 ia32_gen_decls(cg->out);
281                 cg->emit_decls = 0;
282         }
283
284 //      ia32_finish_irg(irg);
285         ia32_gen_routine(out, irg, cur_reg_set);
286
287         cur_reg_set = NULL;
288
289         /* de-allocate code generator */
290         del_set(cg->reg_set);
291         free(self);
292 }
293
294 static const arch_code_generator_if_t ia32_code_gen_if = {
295         ia32_prepare_graph,
296         ia32_before_sched,   /* before scheduling hook */
297         ia32_before_ra,      /* before register allocation hook */
298         ia32_codegen         /* emit && done */
299 };
300
301
302
303 /*****************************************************************
304  *  ____             _                  _   _____  _____
305  * |  _ \           | |                | | |_   _|/ ____|  /\
306  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
307  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
308  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
309  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
310  *
311  *****************************************************************/
312
313 typedef struct _ia32_isa_t {
314         const arch_isa_if_t *impl;
315         int                  num_codegens;
316         FILE                *output_file;
317 } ia32_isa_t;
318
319 /**
320  * Initializes the backend ISA and opens the output file.
321  */
322 static void *ia32_init(FILE *out) {
323         int i;
324         static struct obstack obst;
325         static int inited    = 0;
326         ia32_isa_t *isa      = malloc(sizeof(*isa));
327
328         isa->impl = &ia32_isa_if;
329
330         if(inited)
331                 return NULL;
332
333         inited = 1;
334
335         isa->output_file  = out;
336         isa->num_codegens = 0;
337
338         /* init dummy register requirements */
339         obstack_init(&obst);
340
341         for (i = 0; i < 500; i++) {
342                 int n;
343                 char buf[5];
344                 char *name;
345                 arch_register_t *reg = &ia32_dummy_regs[i];
346
347                 n = snprintf(buf, sizeof(buf), "d%d", i);
348                 name = obstack_copy0(&obst, buf, n);
349
350                 reg->name      = name;
351                 reg->reg_class = &ia32_dummy_reg_class;
352                 reg->index     = i;
353                 reg->type      = arch_register_type_none;
354         }
355
356         obstack_free(&obst, NULL);
357
358         ia32_register_init();
359         ia32_create_opcodes();
360
361         return isa;
362 }
363
364
365
366 /**
367  * Closes the output file and frees the ISA structure.
368  */
369 static void ia32_done(void *self) {
370         free(self);
371 }
372
373
374
375 static int ia32_get_n_reg_class(const void *self) {
376         return N_CLASSES;
377 }
378
379 static const arch_register_class_t *ia32_get_reg_class(const void *self, int i) {
380         assert(i >= 0 && i < N_CLASSES && "Invalid ia32 register class requested.");
381         return &ia32_reg_classes[i];
382 }
383
384 static const arch_irn_ops_t *ia32_get_irn_ops(const arch_irn_handler_t *self, const ir_node *irn) {
385         return &ia32_irn_ops;
386 }
387
388 const arch_irn_handler_t ia32_irn_handler = {
389         ia32_get_irn_ops
390 };
391
392 const arch_irn_handler_t *ia32_get_irn_handler(const void *self) {
393         return &ia32_irn_handler;
394 }
395
396
397
398 /**
399  * Initializes the code generator interface.
400  */
401 static arch_code_generator_t *ia32_make_code_generator(void *self, ir_graph *irg) {
402         ia32_isa_t      *isa = self;
403         ia32_code_gen_t *cg  = malloc(sizeof(*cg));
404
405         cg->impl       = &ia32_code_gen_if;
406         cg->irg        = irg;
407         cg->reg_set    = new_set(cmp_irn_reg_assoc, 1024);
408         cg->mod        = firm_dbg_register("be.transform.ia32");
409         cg->out        = isa->output_file;
410
411         isa->num_codegens++;
412
413         if (isa->num_codegens > 1)
414                 cg->emit_decls = 0;
415         else
416                 cg->emit_decls = 1;
417
418         cur_reg_set = cg->reg_set;
419
420         return (arch_code_generator_t *)cg;
421 }
422
423 /**
424  * Returns the default scheduler
425  */
426 static const list_sched_selector_t *ia32_get_list_sched_selector(const void *self) {
427         return trivial_selector;
428 }
429
430 #ifdef WITH_LIBCORE
431 static void ia32_register_options(lc_opt_entry_t *ent)
432 {
433 }
434 #endif /* WITH_LIBCORE */
435
436 const arch_isa_if_t ia32_isa_if = {
437 #ifdef WITH_LIBCORE
438         ia32_register_options,
439 #endif
440         ia32_init,
441         ia32_done,
442         ia32_get_n_reg_class,
443         ia32_get_reg_class,
444         ia32_get_irn_handler,
445         ia32_make_code_generator,
446         ia32_get_list_sched_selector
447 };