makefile updates
[libfirm] / ir / be / mips / mips_new_nodes.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    This file implements the creation of the architecture specific firm
23  *           opcodes and the corresponding node constructors for the MIPS
24  *           assembler irg.
25  * @author   Matthias Braun, Mehdi
26  * @version  $Id$
27  */
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #include <stdlib.h>
33
34 #include "irprog_t.h"
35 #include "irgraph_t.h"
36 #include "irnode_t.h"
37 #include "irmode_t.h"
38 #include "ircons_t.h"
39 #include "iropt_t.h"
40 #include "irop.h"
41 #include "firm_common_t.h"
42 #include "irvrfy_t.h"
43 #include "irprintf.h"
44 #include "xmalloc.h"
45
46 #include "../bearch_t.h"
47
48 #include "mips_nodes_attr.h"
49 #include "mips_new_nodes.h"
50 #include "gen_mips_regalloc_if.h"
51
52
53
54 /***********************************************************************************
55  *      _                                   _       _             __
56  *     | |                                 (_)     | |           / _|
57  *   __| |_   _ _ __ ___  _ __   ___ _ __   _ _ __ | |_ ___ _ __| |_ __ _  ___ ___
58  *  / _` | | | | '_ ` _ \| '_ \ / _ \ '__| | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \
59  * | (_| | |_| | | | | | | |_) |  __/ |    | | | | | ||  __/ |  | || (_| | (_|  __/
60  *  \__,_|\__,_|_| |_| |_| .__/ \___|_|    |_|_| |_|\__\___|_|  |_| \__,_|\___\___|
61  *                       | |
62  *                       |_|
63  ***********************************************************************************/
64
65 /**
66  * Dumps the register requirements for either in or out.
67  */
68 static void dump_reg_req(FILE *F, ir_node *n, const arch_register_req_t **reqs,
69                          int inout)
70 {
71         const mips_attr_t *attr = get_mips_attr_const(n);
72         char *dir = inout ? "out" : "in";
73         int   max = inout ? ARR_LEN(attr->slots) : get_irn_arity(n);
74         char  buf[1024];
75         int   i;
76
77         memset(buf, 0, sizeof(buf));
78
79         if (reqs) {
80                 for (i = 0; i < max; i++) {
81                         fprintf(F, "%sreq #%d =", dir, i);
82
83                         if (reqs[i]->type == arch_register_req_type_none) {
84                                 fprintf(F, " n/a");
85                         }
86
87                         if (reqs[i]->type & arch_register_req_type_normal) {
88                                 fprintf(F, " %s", reqs[i]->cls->name);
89                         }
90
91                         if (reqs[i]->type & arch_register_req_type_limited) {
92                                 fprintf(F, " %s",
93                                         arch_register_req_format(buf, sizeof(buf), reqs[i], n));
94                         }
95
96                         if (reqs[i]->type & arch_register_req_type_should_be_same) {
97                                 ir_fprintf(F, " same as %+F", get_irn_n(n, reqs[i]->other_same));
98                         }
99
100                         if (reqs[i]->type & arch_register_req_type_should_be_different) {
101                                 ir_fprintf(F, " different from %+F", get_irn_n(n, reqs[i]->other_different));
102                         }
103
104                         fprintf(F, "\n");
105                 }
106
107                 fprintf(F, "\n");
108         } else {
109                 fprintf(F, "%sreq = N/A\n", dir);
110         }
111 }
112
113
114 /**
115  * Dumper interface for dumping mips nodes in vcg.
116  * @param n        the node to dump
117  * @param F        the output file
118  * @param reason   indicates which kind of information should be dumped
119  * @return 0 on success or != 0 on failure
120  */
121 static int mips_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
122         int          bad  = 0;
123         int          i;
124         const mips_attr_t *attr = get_mips_attr_const(n);
125         const arch_register_req_t **reqs;
126         const arch_register_t     **slots;
127
128         switch (reason) {
129                 case dump_node_opcode_txt:
130                         fprintf(F, "%s", get_irn_opname(n));
131                         break;
132
133                 case dump_node_mode_txt:
134                         break;
135
136                 case dump_node_nodeattr_txt:
137
138                         if(is_mips_Immediate(n)) {
139                                 const mips_immediate_attr_t *attr
140                                         = get_mips_immediate_attr_const(n);
141                                 switch(attr->imm_type) {
142                                 case MIPS_IMM_CONST:
143                                         fprintf(F, " %ld ", attr->val);
144                                         break;
145                                 case MIPS_IMM_SYMCONST_LO:
146                                         fprintf(F, " lo(%s", get_entity_ld_name(attr->entity));
147                                         if(attr->val != 0) {
148                                                 fprintf(F, "%+ld", attr->val);
149                                         }
150                                         fprintf(F, ") ");
151                                         break;
152                                 case MIPS_IMM_SYMCONST_HI:
153                                         fprintf(F, " hi(%s", get_entity_ld_name(attr->entity));
154                                         if(attr->val != 0) {
155                                                 fprintf(F, "%+ld", attr->val);
156                                         }
157                                         fprintf(F, ") ");
158                                         break;
159                                 default:
160                                         fprintf(F, " INVALID ");
161                                         break;
162                                 }
163                         }
164                         break;
165
166                 case dump_node_info_txt:
167                         attr = get_mips_attr(n);
168                         fprintf(F, "=== mips attr begin ===\n");
169
170                         /* dump IN requirements */
171                         if (get_irn_arity(n) > 0) {
172                                 reqs = get_mips_in_req_all(n);
173                                 dump_reg_req(F, n, reqs, 0);
174                         }
175
176                         /* dump OUT requirements */
177                         if (ARR_LEN(attr->slots) > 0) {
178                                 reqs = get_mips_out_req_all(n);
179                                 dump_reg_req(F, n, reqs, 1);
180                         }
181
182                         /* dump assigned registers */
183                         slots = get_mips_slots(n);
184                         if (slots && ARR_LEN(attr->slots) > 0) {
185                                 for (i = 0; i < ARR_LEN(attr->slots); i++) {
186                                         if (slots[i]) {
187                                                 fprintf(F, "reg #%d = %s\n", i, slots[i]->name);
188                                         }
189                                         else {
190                                                 fprintf(F, "reg #%d = n/a\n", i);
191                                         }
192                                 }
193                         }
194                         fprintf(F, "\n");
195
196                         /* dump n_res */
197                         fprintf(F, "n_res = %d\n", ARR_LEN(attr->slots));
198
199                         /* dump flags */
200                         fprintf(F, "flags =");
201                         if (attr->flags == arch_irn_flags_none) {
202                                 fprintf(F, " none");
203                         }
204                         else {
205                                 if (attr->flags & arch_irn_flags_dont_spill) {
206                                         fprintf(F, " unspillable");
207                                 }
208                                 if (attr->flags & arch_irn_flags_rematerializable) {
209                                         fprintf(F, " remat");
210                                 }
211                                 if (attr->flags & arch_irn_flags_ignore) {
212                                         fprintf(F, " ignore");
213                                 }
214                         }
215                         fprintf(F, " (%d)\n", attr->flags);
216
217                         fprintf(F, "=== mips attr end ===\n");
218                         /* end of: case dump_node_info_txt */
219                         break;
220         }
221
222
223         return bad;
224 }
225
226
227
228 /***************************************************************************************************
229  *        _   _                   _       __        _                    _   _               _
230  *       | | | |                 | |     / /       | |                  | | | |             | |
231  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
232  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
233  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
234  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
235  *                                        __/ |
236  *                                       |___/
237  ***************************************************************************************************/
238
239 mips_attr_t *get_mips_attr(ir_node *node)
240 {
241         assert(is_mips_irn(node) && "need mips node to get attributes");
242         return (mips_attr_t *) get_irn_generic_attr(node);
243 }
244
245 const mips_attr_t *get_mips_attr_const(const ir_node *node)
246 {
247         assert(is_mips_irn(node) && "need mips node to get attributes");
248         return get_irn_generic_attr_const(node);
249 }
250
251 const mips_immediate_attr_t *get_mips_immediate_attr_const(const ir_node *node)
252 {
253         assert(is_mips_irn(node) && "need mips node to get attributes");
254         return get_irn_generic_attr_const(node);
255 }
256
257 const mips_load_store_attr_t *get_mips_load_store_attr_const(
258                 const ir_node *node)
259 {
260         assert(is_mips_irn(node) && "need mips node to get attributes");
261         return get_irn_generic_attr_const(node);
262 }
263
264 /**
265  * Returns the argument register requirements of a mips node.
266  */
267 const arch_register_req_t **get_mips_in_req_all(const ir_node *node)
268 {
269         const mips_attr_t *attr = get_mips_attr_const(node);
270         return attr->in_req;
271 }
272
273 /**
274  * Returns the result register requirements of an mips node.
275  */
276 const arch_register_req_t **get_mips_out_req_all(const ir_node *node)
277 {
278         const mips_attr_t *attr = get_mips_attr_const(node);
279         return attr->out_req;
280 }
281
282 /**
283  * Returns the argument register requirement at position pos of an mips node.
284  */
285 const arch_register_req_t *get_mips_in_req(const ir_node *node, int pos)
286 {
287         const mips_attr_t *attr = get_mips_attr_const(node);
288         return attr->in_req[pos];
289 }
290
291 /**
292  * Returns the result register requirement at position pos of an mips node.
293  */
294 const arch_register_req_t *get_mips_out_req(const ir_node *node, int pos)
295 {
296         const mips_attr_t *attr = get_mips_attr_const(node);
297         return attr->out_req[pos];
298 }
299
300 /**
301  * Sets the OUT register requirements at position pos.
302  */
303 void set_mips_req_out(ir_node *node, const arch_register_req_t *req, int pos)
304 {
305         mips_attr_t *attr   = get_mips_attr(node);
306         attr->out_req[pos] = req;
307 }
308
309 /**
310  * Sets the IN register requirements at position pos.
311  */
312 void set_mips_req_in(ir_node *node, const arch_register_req_t *req, int pos)
313 {
314         mips_attr_t *attr  = get_mips_attr(node);
315         attr->in_req[pos] = req;
316 }
317
318 /**
319  * Returns the register flag of an mips node.
320  */
321 arch_irn_flags_t get_mips_flags(const ir_node *node)
322 {
323         const mips_attr_t *attr = get_mips_attr_const(node);
324         return attr->flags;
325 }
326
327 /**
328  * Sets the register flag of an mips node.
329  */
330 void set_mips_flags(ir_node *node, arch_irn_flags_t flags)
331 {
332         mips_attr_t *attr = get_mips_attr(node);
333         attr->flags      = flags;
334 }
335
336 /**
337  * Returns the result register slots of an mips node.
338  */
339 const arch_register_t **get_mips_slots(const ir_node *node)
340 {
341         const mips_attr_t *attr = get_mips_attr_const(node);
342         return attr->slots;
343 }
344
345 /**
346  * Returns the name of the OUT register at position pos.
347  */
348 const char *get_mips_out_reg_name(const ir_node *node, int pos)
349 {
350         const mips_attr_t *attr = get_mips_attr_const(node);
351
352         assert(is_mips_irn(node) && "Not an mips node.");
353         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
354         assert(attr->slots[pos]  && "No register assigned");
355
356         return arch_register_get_name(attr->slots[pos]);
357 }
358
359 /**
360  * Returns the index of the OUT register at position pos within its register class.
361  */
362 int get_mips_out_regnr(const ir_node *node, int pos)
363 {
364         const mips_attr_t *attr = get_mips_attr_const(node);
365
366         assert(is_mips_irn(node) && "Not an mips node.");
367         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
368         assert(attr->slots[pos]  && "No register assigned");
369
370         return arch_register_get_index(attr->slots[pos]);
371 }
372
373 /**
374  * Returns the OUT register at position pos.
375  */
376 const arch_register_t *get_mips_out_reg(const ir_node *node, int pos)
377 {
378         const mips_attr_t *attr = get_mips_attr_const(node);
379
380         assert(is_mips_irn(node) && "Not an mips node.");
381         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
382         assert(attr->slots[pos]  && "No register assigned");
383
384         return attr->slots[pos];
385 }
386
387 /**
388  * Initializes the nodes attributes.
389  */
390 static void init_mips_attributes(ir_node *node, arch_irn_flags_t flags,
391                                  const arch_register_req_t **in_reqs,
392                                  const arch_register_req_t **out_reqs,
393                                  const be_execution_unit_t ***execution_units,
394                                  int n_res, unsigned latency)
395 {
396         ir_graph       *irg  = get_irn_irg(node);
397         struct obstack *obst = get_irg_obstack(irg);
398         mips_attr_t    *attr = get_mips_attr(node);
399         (void) execution_units;
400         (void) latency;
401
402         attr->flags   = flags;
403         attr->out_req = out_reqs;
404         attr->in_req  = in_reqs;
405
406         attr->slots = NEW_ARR_D(const arch_register_t*, obst, n_res);
407         memset(attr->slots, 0, n_res * sizeof(attr->slots[0]));
408 }
409
410 static void init_mips_immediate_attributes(ir_node *node,
411                                            mips_immediate_type_t type,
412                                            ir_entity *entity, long val)
413 {
414         mips_immediate_attr_t *attr = get_irn_generic_attr(node);
415
416         attr->imm_type = type;
417         attr->entity   = entity;
418         attr->val      = val;
419 }
420
421 static void init_mips_load_store_attributes(ir_node *node, ir_entity *entity,
422                                             long offset)
423 {
424         mips_load_store_attr_t *attr = get_irn_generic_attr(node);
425         attr->stack_entity = entity;
426         attr->offset       = offset;
427 }
428
429 static int mips_compare_nodes_attr(ir_node *node_a, ir_node *node_b)
430 {
431         const mips_attr_t *a = get_mips_attr_const(node_a);
432         const mips_attr_t *b = get_mips_attr_const(node_b);
433
434         if(a->flags != b->flags)
435                 return 1;
436         if(ARR_LEN(a->slots) != ARR_LEN(b->slots))
437                 return 1;
438         if(a->switch_default_pn != b->switch_default_pn)
439                 return 1;
440
441         return 0;
442 }
443
444 static int mips_compare_immediate_attr(ir_node *node_a, ir_node *node_b)
445 {
446         const mips_immediate_attr_t *a = get_mips_immediate_attr_const(node_a);
447         const mips_immediate_attr_t *b = get_mips_immediate_attr_const(node_b);
448
449         if(a->attr.flags != b->attr.flags)
450                 return 1;
451         if(a->val != b->val)
452                 return 1;
453
454         return 0;
455 }
456
457 static int mips_compare_load_store_attr(ir_node *node_a, ir_node *node_b)
458 {
459         const mips_load_store_attr_t *a = get_mips_load_store_attr_const(node_a);
460         const mips_load_store_attr_t *b = get_mips_load_store_attr_const(node_b);
461
462         if(mips_compare_nodes_attr(node_a, node_b))
463                 return 1;
464         if(a->stack_entity != b->stack_entity)
465                 return 1;
466         if(a->offset != b->offset)
467                 return 1;
468
469         return 0;
470 }
471
472 static void mips_copy_attr(const ir_node *old_node , ir_node *new_node)
473 {
474         ir_graph          *irg      = get_irn_irg(new_node);
475         struct obstack    *obst     = get_irg_obstack(irg);
476         const mips_attr_t *attr_old = get_mips_attr_const(old_node);
477         mips_attr_t       *attr_new = get_mips_attr(new_node);
478
479         /* copy the attributes */
480         memcpy(attr_new, attr_old, get_op_attr_size(get_irn_op(old_node)));
481
482         /* copy register assignments */
483         attr_new->slots = DUP_ARR_D(arch_register_t*, obst, attr_old->slots);
484 }
485
486 /***************************************************************************************
487  *                  _                            _                   _
488  *                 | |                          | |                 | |
489  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
490  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
491  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
492  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
493  *
494  ***************************************************************************************/
495
496 /* Include the generated constructor functions */
497 #include "gen_mips_new_nodes.c.inl"