remove #ifdef HAVE_CONFIG_Hs
[libfirm] / ir / be / ppc32 / ppc32_new_nodes.c
1 /*
2  * Copyright (C) 1995-2008 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 achitecture specific firm
23  *         opcodes and the coresponding node constructors for the ppc assembler
24  *         irg.
25  * @author  Moritz Kroll, Jens Mueller
26  * @version $Id$
27  */
28 #include "config.h"
29
30 #include <stdlib.h>
31
32 #include "irprog_t.h"
33 #include "irgraph_t.h"
34 #include "irnode_t.h"
35 #include "irmode_t.h"
36 #include "ircons_t.h"
37 #include "iropt_t.h"
38 #include "irop.h"
39 #include "firm_common_t.h"
40 #include "irvrfy_t.h"
41 #include "irprintf.h"
42 #include "xmalloc.h"
43
44 #include "../bearch_t.h"
45
46 #include "ppc32_nodes_attr.h"
47 #include "ppc32_new_nodes.h"
48 #include "gen_ppc32_regalloc_if.h"
49
50
51
52 /***********************************************************************************
53  *      _                                   _       _             __
54  *     | |                                 (_)     | |           / _|
55  *   __| |_   _ _ __ ___  _ __   ___ _ __   _ _ __ | |_ ___ _ __| |_ __ _  ___ ___
56  *  / _` | | | | '_ ` _ \| '_ \ / _ \ '__| | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \
57  * | (_| | |_| | | | | | | |_) |  __/ |    | | | | | ||  __/ |  | || (_| | (_|  __/
58  *  \__,_|\__,_|_| |_| |_| .__/ \___|_|    |_|_| |_|\__\___|_|  |_| \__,_|\___\___|
59  *                       | |
60  *                       |_|
61  ***********************************************************************************/
62
63 /**
64  * Dumps the register requirements for either in or out.
65  */
66 static void dump_reg_req(FILE *F, ir_node *n, const arch_register_req_t **reqs, int inout) {
67         char *dir = inout ? "out" : "in";
68         int   max = inout ? get_ppc32_n_res(n) : get_irn_arity(n);
69         char  buf[1024];
70         int   i;
71
72         memset(buf, 0, sizeof(buf));
73
74         if (reqs) {
75                 for (i = 0; i < max; i++) {
76                         fprintf(F, "%sreq #%d =", dir, i);
77
78                         if (reqs[i]->type == arch_register_req_type_none) {
79                                 fprintf(F, " n/a");
80                         }
81
82                         if (reqs[i]->type & arch_register_req_type_normal) {
83                                 fprintf(F, " %s", reqs[i]->cls->name);
84                         }
85
86                         if (reqs[i]->type & arch_register_req_type_limited) {
87                                 fprintf(F, " %s",
88                                         arch_register_req_format(buf, sizeof(buf), reqs[i], n));
89                         }
90
91                         if (reqs[i]->type & arch_register_req_type_should_be_same) {
92                                 const unsigned other = reqs[i]->other_same;
93                                 int i;
94
95                                 ir_fprintf(F, " same as");
96                                 for (i = 0; 1U << i <= other; ++i) {
97                                         if (other & (1U << i)) {
98                                                 ir_fprintf(F, " %+F", get_irn_n(n, i));
99                                         }
100                                 }
101                         }
102
103                         if (reqs[i]->type & arch_register_req_type_must_be_different) {
104                                 const unsigned other = reqs[i]->other_different;
105                                 int i;
106
107                                 ir_fprintf(F, " different from");
108                                 for (i = 0; 1U << i <= other; ++i) {
109                                         if (other & (1U << i)) {
110                                                 ir_fprintf(F, " %+F", get_irn_n(n, i));
111                                         }
112                                 }
113                         }
114
115                         fprintf(F, "\n");
116                 }
117
118                 fprintf(F, "\n");
119         } else {
120                 fprintf(F, "%sreq = N/A\n", dir);
121         }
122 }
123
124
125 /**
126  * Dumper interface for dumping ppc32 nodes in vcg.
127  * @param n        the node to dump
128  * @param F        the output file
129  * @param reason   indicates which kind of information should be dumped
130  * @return 0 on success or != 0 on failure
131  */
132 static int ppc32_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
133         ir_mode     *mode = NULL;
134         int          bad  = 0;
135         int          i;
136         ppc32_attr_t *attr;
137         const arch_register_req_t **reqs;
138         const arch_register_t     **slots;
139
140         switch (reason) {
141                 case dump_node_opcode_txt:
142                         fprintf(F, "%s", get_irn_opname(n));
143                         break;
144
145                 case dump_node_mode_txt:
146                         mode = get_irn_mode(n);
147
148                         if (mode) {
149                                 fprintf(F, "[%s]", get_mode_name(mode));
150                         }
151                         else {
152                                 fprintf(F, "[?NOMODE?]");
153                         }
154                         break;
155
156                 case dump_node_nodeattr_txt:
157
158                         /* TODO: dump some attributes which should show up */
159                         /* in node name in dump (e.g. consts or the like)  */
160
161                         break;
162
163                 case dump_node_info_txt:
164                         attr = get_ppc32_attr(n);
165                         fprintf(F, "=== ppc attr begin ===\n");
166
167                         /* dump IN requirements */
168                         if (get_irn_arity(n) > 0) {
169                                 reqs = get_ppc32_in_req_all(n);
170                                 dump_reg_req(F, n, reqs, 0);
171                         }
172
173                         /* dump OUT requirements */
174                         if (ARR_LEN(attr->slots) > 0) {
175                                 reqs = get_ppc32_out_req_all(n);
176                                 dump_reg_req(F, n, reqs, 1);
177                         }
178
179                         /* dump assigned registers */
180                         slots = get_ppc32_slots(n);
181                         if (slots && ARR_LEN(attr->slots) > 0) {
182                                 for (i = 0; i < ARR_LEN(attr->slots); i++) {
183                                         if (slots[i]) {
184                                                 fprintf(F, "reg #%d = %s\n", i, slots[i]->name);
185                                         }
186                                         else {
187                                                 fprintf(F, "reg #%d = n/a\n", i);
188                                         }
189                                 }
190                         }
191                         fprintf(F, "\n");
192
193                         /* dump n_res */
194                         fprintf(F, "n_res = %d\n", get_ppc32_n_res(n));
195
196                         /* dump flags */
197                         fprintf(F, "flags =");
198                         if (attr->flags == arch_irn_flags_none) {
199                                 fprintf(F, " none");
200                         }
201                         else {
202                                 if (attr->flags & arch_irn_flags_dont_spill) {
203                                         fprintf(F, " unspillable");
204                                 }
205                                 if (attr->flags & arch_irn_flags_rematerializable) {
206                                         fprintf(F, " remat");
207                                 }
208                                 if (attr->flags & arch_irn_flags_ignore) {
209                                         fprintf(F, " ignore");
210                                 }
211                         }
212                         fprintf(F, " (%d)\n", attr->flags);
213
214                         /* TODO: dump all additional attributes */
215
216                         fprintf(F, "=== ppc attr end ===\n");
217                         /* end of: case dump_node_info_txt */
218                         break;
219         }
220
221
222         return bad;
223 }
224
225
226
227 /***************************************************************************************************
228  *        _   _                   _       __        _                    _   _               _
229  *       | | | |                 | |     / /       | |                  | | | |             | |
230  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
231  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
232  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
233  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
234  *                                        __/ |
235  *                                       |___/
236  ***************************************************************************************************/
237
238 ppc32_attr_t *get_ppc32_attr(ir_node *node) {
239         assert(is_ppc32_irn(node) && "need ppc node to get attributes");
240         return (ppc32_attr_t *)get_irn_generic_attr(node);
241 }
242
243 const ppc32_attr_t *get_ppc32_attr_const(const ir_node *node) {
244         assert(is_ppc32_irn(node) && "need ppc node to get attributes");
245         return (const ppc32_attr_t *)get_irn_generic_attr_const(node);
246 }
247
248
249
250 /**
251  * Returns the argument register requirements of a ppc node.
252  */
253 const arch_register_req_t **get_ppc32_in_req_all(const ir_node *node) {
254         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
255         return attr->in_req;
256 }
257
258 /**
259  * Returns the result register requirements of an ppc node.
260  */
261 const arch_register_req_t **get_ppc32_out_req_all(const ir_node *node) {
262         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
263         return attr->out_req;
264 }
265
266 /**
267  * Returns the argument register requirement at position pos of an ppc node.
268  */
269 const arch_register_req_t *get_ppc32_in_req(const ir_node *node, int pos) {
270         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
271         return attr->in_req[pos];
272 }
273
274 /**
275  * Returns the result register requirement at position pos of an ppc node.
276  */
277 const arch_register_req_t *get_ppc32_out_req(const ir_node *node, int pos) {
278         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
279         return attr->out_req[pos];
280 }
281
282 /**
283  * Sets the OUT register requirements at position pos.
284  */
285 void set_ppc32_req_out(ir_node *node, const arch_register_req_t *req, int pos) {
286         ppc32_attr_t *attr   = get_ppc32_attr(node);
287         attr->out_req[pos] = req;
288 }
289
290 /**
291  * Sets the IN register requirements at position pos.
292  */
293 void set_ppc32_req_in(ir_node *node, const arch_register_req_t *req, int pos) {
294         ppc32_attr_t *attr  = get_ppc32_attr(node);
295         attr->in_req[pos] = req;
296 }
297
298 /**
299  * Returns the register flag of an ppc node.
300  */
301 arch_irn_flags_t get_ppc32_flags(const ir_node *node) {
302         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
303         return attr->flags;
304 }
305
306 /**
307  * Sets the register flag of an ppc node.
308  */
309 void set_ppc32_flags(ir_node *node, arch_irn_flags_t flags) {
310         ppc32_attr_t *attr = get_ppc32_attr(node);
311         attr->flags      = flags;
312 }
313
314 /**
315  * Returns the result register slots of an ppc node.
316  */
317 const arch_register_t **get_ppc32_slots(const ir_node *node) {
318         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
319         return attr->slots;
320 }
321
322 /**
323  * Returns the name of the OUT register at position pos.
324  */
325 const char *get_ppc32_out_reg_name(const ir_node *node, int pos) {
326         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
327
328         assert(is_ppc32_irn(node) && "Not an ppc node.");
329         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
330         assert(attr->slots[pos]  && "No register assigned");
331
332         return arch_register_get_name(attr->slots[pos]);
333 }
334
335 /**
336  * Returns the index of the OUT register at position pos within its register class.
337  */
338 int get_ppc32_out_regnr(const ir_node *node, int pos) {
339         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
340
341         assert(is_ppc32_irn(node) && "Not an ppc node.");
342         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
343         assert(attr->slots[pos]  && "No register assigned");
344
345         return arch_register_get_index(attr->slots[pos]);
346 }
347
348 /**
349  * Returns the OUT register at position pos.
350  */
351 const arch_register_t *get_ppc32_out_reg(const ir_node *node, int pos) {
352         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
353
354         assert(is_ppc32_irn(node) && "Not an ppc node.");
355         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
356         assert(attr->slots[pos]  && "No register assigned");
357
358         return attr->slots[pos];
359 }
360
361 /**
362  * Returns the number of results.
363  */
364 int get_ppc32_n_res(const ir_node *node) {
365         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
366         return ARR_LEN(attr->slots);
367 }
368
369 /**
370  * Sets the type of the constant (if any)
371  * May be either iro_Const or iro_SymConst
372  */
373 /* void set_ppc32_type(const ir_node *node, opcode type) {
374         ppc32_attr_t *attr = get_ppc32_attr(node);
375         attr->type      = type;
376 }  */
377
378 /**
379  * Returns the type of the content (if any)
380  */
381 ppc32_attr_content_type get_ppc32_type(const ir_node *node) {
382         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
383         return attr->content_type;
384 }
385
386 /**
387  * Sets a tarval type content (also updating the content_type)
388  */
389 void set_ppc32_constant_tarval(ir_node *node, tarval *const_tarval) {
390         ppc32_attr_t *attr = get_ppc32_attr(node);
391         attr->content_type = ppc32_ac_Const;
392         attr->data.constant_tarval = const_tarval;
393 }
394
395 /**
396  * Returns a tarval type constant
397  */
398 tarval *get_ppc32_constant_tarval(const ir_node *node) {
399         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
400         return attr->data.constant_tarval;
401 }
402
403 /**
404  * Sets an ident type constant (also updating the content_type)
405  */
406 void set_ppc32_symconst_ident(ir_node *node, ident *symconst_ident) {
407         ppc32_attr_t *attr = get_ppc32_attr(node);
408         attr->content_type = ppc32_ac_SymConst;
409         attr->data.symconst_ident = symconst_ident;
410 }
411
412 /**
413  * Returns an ident type constant
414  */
415 ident *get_ppc32_symconst_ident(const ir_node *node) {
416         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
417         return attr->data.symconst_ident;
418 }
419
420
421 /**
422  * Sets an entity (also updating the content_type)
423  */
424 void set_ppc32_frame_entity(ir_node *node, ir_entity *ent) {
425         ppc32_attr_t *attr = get_ppc32_attr(node);
426         attr->content_type = ppc32_ac_FrameEntity;
427         attr->data.frame_entity = ent;
428 }
429
430 /**
431  * Returns an entity
432  */
433 ir_entity *get_ppc32_frame_entity(const ir_node *node) {
434         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
435         return attr->data.frame_entity;
436 }
437
438 /**
439  * Sets a Rlwimi const (also updating the content_type)
440  */
441 void set_ppc32_rlwimi_const(ir_node *node, unsigned shift, unsigned maskA, unsigned maskB) {
442         ppc32_attr_t *attr = get_ppc32_attr(node);
443         attr->content_type = ppc32_ac_RlwimiConst;
444         attr->data.rlwimi_const.shift = shift;
445         attr->data.rlwimi_const.maskA = maskA;
446         attr->data.rlwimi_const.maskB = maskB;
447 }
448
449 /**
450  * Returns the rlwimi const structure
451  */
452 const rlwimi_const_t *get_ppc32_rlwimi_const(const ir_node *node) {
453         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
454         return &attr->data.rlwimi_const;
455 }
456
457 /**
458  * Sets a Proj number (also updating the content_type)
459  */
460 void set_ppc32_proj_nr(ir_node *node, int proj_nr) {
461         ppc32_attr_t *attr = get_ppc32_attr(node);
462         attr->content_type = ppc32_ac_BranchProj;
463         attr->data.proj_nr = proj_nr;
464 }
465
466 /**
467  * Returns the proj number
468  */
469 int get_ppc32_proj_nr(const ir_node *node) {
470         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
471         return attr->data.proj_nr;
472 }
473
474 /**
475  * Sets an offset for a memory access (also updating the content_type)
476  */
477 void set_ppc32_offset(ir_node *node, int offset) {
478         ppc32_attr_t *attr = get_ppc32_attr(node);
479         attr->content_type = ppc32_ac_Offset;
480         attr->data.offset  = offset;
481 }
482
483 /**
484  * Returns the offset
485  */
486 int get_ppc32_offset(const ir_node *node) {
487         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
488         return attr->data.offset;
489 }
490
491 /**
492  * Sets the offset mode (ppc32_ao_None, ppc32_ao_Lo16, ppc32_ao_Hi16 or ppc32_ao_Ha16)
493  */
494 void set_ppc32_offset_mode(ir_node *node, ppc32_attr_offset_mode mode) {
495         ppc32_attr_t *attr = get_ppc32_attr(node);
496         attr->offset_mode = mode;
497 }
498
499 /**
500  * Returns the offset mode
501  */
502 ppc32_attr_offset_mode get_ppc32_offset_mode(const ir_node *node) {
503         const ppc32_attr_t *attr = get_ppc32_attr_const(node);
504         return attr->offset_mode;
505 }
506
507
508 /**
509  * Initializes ppc specific node attributes
510  */
511 void init_ppc32_attributes(ir_node *node, int flags,
512                                                  const arch_register_req_t **in_reqs, const arch_register_req_t **out_reqs,
513                                                  const be_execution_unit_t ***execution_units,
514                                                  int n_res) {
515         ir_graph       *irg  = get_irn_irg(node);
516         struct obstack *obst = get_irg_obstack(irg);
517         ppc32_attr_t   *attr = get_ppc32_attr(node);
518         (void) execution_units;
519
520         attr->flags   = flags;
521         attr->in_req  = in_reqs;
522         attr->out_req = out_reqs;
523
524         attr->content_type = ppc32_ac_None;
525         attr->offset_mode  = ppc32_ao_Illegal;
526         attr->data.empty   = NULL;
527
528         attr->slots = NEW_ARR_D(const arch_register_t*, obst, n_res);
529         memset(attr->slots, 0, n_res * sizeof(attr->slots[0]));
530 }
531
532
533 /***************************************************************************************
534  *                  _                            _                   _
535  *                 | |                          | |                 | |
536  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
537  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
538  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
539  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
540  *
541  ***************************************************************************************/
542
543 /* Include the generated constructor functions */
544 #include "gen_ppc32_new_nodes.c.inl"