s/\<\(LC_\)\?INLINE\>/inline/.
[libfirm] / ir / be / benode.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       Backend node support for generic backend nodes.
23  * @author      Sebastian Hack
24  * @date        17.05.2005
25  * @version     $Id$
26  *
27  * Backend node support for generic backend nodes.
28  * This file provides Perm, Copy, Spill and Reload nodes.
29  */
30 #include "config.h"
31
32 #include <stdlib.h>
33
34 #include "obst.h"
35 #include "set.h"
36 #include "pmap.h"
37 #include "util.h"
38 #include "debug.h"
39 #include "fourcc.h"
40 #include "offset.h"
41 #include "bitfiddle.h"
42 #include "raw_bitset.h"
43 #include "error.h"
44 #include "array_t.h"
45
46 #include "irop_t.h"
47 #include "irmode_t.h"
48 #include "irnode_t.h"
49 #include "ircons_t.h"
50 #include "irprintf.h"
51 #include "irgwalk.h"
52 #include "iropt_t.h"
53
54 #include "be_t.h"
55 #include "belive_t.h"
56 #include "besched_t.h"
57 #include "benode_t.h"
58 #include "bearch_t.h"
59
60 #include "beirgmod.h"
61
62 #define OUT_POS(x) (-((x) + 1))
63
64 #define get_irn_attr(irn) get_irn_generic_attr(irn)
65 #define get_irn_attr_const(irn) get_irn_generic_attr_const(irn)
66
67 typedef struct {
68         arch_register_req_t req;
69         arch_irn_flags_t    flags;
70 } be_req_t;
71
72 typedef struct {
73         const arch_register_t *reg;
74         be_req_t               req;
75         be_req_t               in_req;
76 } be_reg_data_t;
77
78 /** The generic be nodes attribute type. */
79 typedef struct {
80         be_reg_data_t *reg_data;
81 } be_node_attr_t;
82
83 /** The be_Return nodes attribute type. */
84 typedef struct {
85         be_node_attr_t node_attr;     /**< base attributes of every be node. */
86         int            num_ret_vals;  /**< number of return values */
87         unsigned       pop;           /**< number of bytes that should be popped */
88         int            emit_pop;      /**< if set, emit pop bytes, even if pop = 0 */
89 } be_return_attr_t;
90
91 /** The be_IncSP attribute type. */
92 typedef struct {
93         be_node_attr_t node_attr;   /**< base attributes of every be node. */
94         int            offset;      /**< The offset by which the stack shall be expanded/shrinked. */
95         int            align;       /**< whether stack should be aligned after the
96                                          IncSP */
97 } be_incsp_attr_t;
98
99 /** The be_Frame attribute type. */
100 typedef struct {
101         be_node_attr_t  node_attr;   /**< base attributes of every be node. */
102         ir_entity      *ent;
103         int             offset;
104 } be_frame_attr_t;
105
106 /** The be_Call attribute type. */
107 typedef struct {
108         be_node_attr_t  node_attr;  /**< base attributes of every be node. */
109         ir_entity      *ent;        /**< The called entity if this is a static call. */
110         unsigned        pop;
111         ir_type        *call_tp;    /**< The call type, copied from the original Call node. */
112 } be_call_attr_t;
113
114 typedef struct {
115         be_node_attr_t   node_attr;  /**< base attributes of every be node. */
116         ir_entity      **in_entities;
117         ir_entity      **out_entities;
118 } be_memperm_attr_t;
119
120 ir_op *op_be_Spill;
121 ir_op *op_be_Reload;
122 ir_op *op_be_Perm;
123 ir_op *op_be_MemPerm;
124 ir_op *op_be_Copy;
125 ir_op *op_be_Keep;
126 ir_op *op_be_CopyKeep;
127 ir_op *op_be_Call;
128 ir_op *op_be_Return;
129 ir_op *op_be_IncSP;
130 ir_op *op_be_AddSP;
131 ir_op *op_be_SubSP;
132 ir_op *op_be_RegParams;
133 ir_op *op_be_FrameAddr;
134 ir_op *op_be_Barrier;
135 ir_op *op_be_Unwind;
136
137 static const ir_op_ops be_node_op_ops;
138
139 #define N   irop_flag_none
140 #define L   irop_flag_labeled
141 #define C   irop_flag_commutative
142 #define X   irop_flag_cfopcode
143 #define I   irop_flag_ip_cfopcode
144 #define F   irop_flag_fragile
145 #define Y   irop_flag_forking
146 #define H   irop_flag_highlevel
147 #define c   irop_flag_constlike
148 #define K   irop_flag_keep
149 #define M   irop_flag_uses_memory
150
151 static int be_reqs_equal(const be_req_t *req1, const be_req_t *req2)
152 {
153         if(!reg_reqs_equal(&req1->req, &req2->req))
154                 return 0;
155         if(req1->flags != req2->flags)
156                 return 0;
157
158         return 1;
159 }
160
161 /**
162  * Compare two be node attributes.
163  *
164  * @return zero if both attributes are identically
165  */
166 static int _node_cmp_attr(const be_node_attr_t *a, const be_node_attr_t *b) {
167         int i, len;
168
169         if (ARR_LEN(a->reg_data) != ARR_LEN(b->reg_data))
170                 return 1;
171
172         len = ARR_LEN(a->reg_data);
173         for (i = 0; i < len; ++i) {
174                 if (a->reg_data[i].reg != b->reg_data[i].reg ||
175                                 !be_reqs_equal(&a->reg_data[i].in_req, &b->reg_data[i].in_req) ||
176                             !be_reqs_equal(&a->reg_data[i].req,    &b->reg_data[i].req))
177                         return 1;
178         }
179
180         return 0;
181 }
182
183 /**
184  * Compare the node attributes of two be_node's.
185  *
186  * @return zero if both nodes have identically attributes
187  */
188 static int node_cmp_attr(ir_node *a, ir_node *b) {
189         const be_node_attr_t *a_attr = get_irn_attr_const(a);
190         const be_node_attr_t *b_attr = get_irn_attr_const(b);
191
192         return _node_cmp_attr(a_attr, b_attr);
193 }
194
195 /**
196  * Compare the attributes of two be_FrameAddr nodes.
197  *
198  * @return zero if both nodes have identically attributes
199  */
200 static int FrameAddr_cmp_attr(ir_node *a, ir_node *b) {
201         const be_frame_attr_t *a_attr = get_irn_attr_const(a);
202         const be_frame_attr_t *b_attr = get_irn_attr_const(b);
203
204         if (a_attr->ent != b_attr->ent || a_attr->offset != b_attr->offset)
205                 return 1;
206
207         return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
208 }
209
210 /**
211  * Compare the attributes of two be_Return nodes.
212  *
213  * @return zero if both nodes have identically attributes
214  */
215 static int Return_cmp_attr(ir_node *a, ir_node *b) {
216         const be_return_attr_t *a_attr = get_irn_attr_const(a);
217         const be_return_attr_t *b_attr = get_irn_attr_const(b);
218
219         if (a_attr->num_ret_vals != b_attr->num_ret_vals)
220                 return 1;
221         if (a_attr->pop != b_attr->pop)
222                 return 1;
223         if (a_attr->emit_pop != b_attr->emit_pop)
224                 return 1;
225
226         return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
227 }
228
229 /**
230  * Compare the attributes of two be_IncSP nodes.
231  *
232  * @return zero if both nodes have identically attributes
233  */
234 static int IncSP_cmp_attr(ir_node *a, ir_node *b) {
235         const be_incsp_attr_t *a_attr = get_irn_attr_const(a);
236         const be_incsp_attr_t *b_attr = get_irn_attr_const(b);
237
238         if (a_attr->offset != b_attr->offset)
239                 return 1;
240
241         return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
242 }
243
244 /**
245  * Compare the attributes of two be_Call nodes.
246  *
247  * @return zero if both nodes have identically attributes
248  */
249 static int Call_cmp_attr(ir_node *a, ir_node *b) {
250         const be_call_attr_t *a_attr = get_irn_attr_const(a);
251         const be_call_attr_t *b_attr = get_irn_attr_const(b);
252
253         if (a_attr->ent != b_attr->ent ||
254                         a_attr->call_tp != b_attr->call_tp)
255                 return 1;
256
257         return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
258 }
259
260 static inline be_req_t *get_be_req(const ir_node *node, int pos)
261 {
262         int idx;
263         const be_node_attr_t *attr;
264         be_reg_data_t *rd;
265
266         assert(is_be_node(node));
267         attr = get_irn_attr_const(node);
268
269         if(pos < 0) {
270                 idx = -(pos + 1);
271         } else {
272                 idx = pos;
273                 assert(idx < get_irn_arity(node));
274         }
275         assert(idx < ARR_LEN(attr->reg_data));
276         rd = &attr->reg_data[idx];
277
278         return pos < 0 ? &rd->req : &rd->in_req;
279 }
280
281 static inline arch_register_req_t *get_req(const ir_node *node, int pos)
282 {
283         be_req_t *bereq = get_be_req(node, pos);
284         return &bereq->req;
285 }
286
287 /**
288  * Initializes the generic attribute of all be nodes and return ir.
289  */
290 static void *init_node_attr(ir_node *node, int max_reg_data)
291 {
292         ir_graph *irg = get_irn_irg(node);
293         struct obstack *obst = get_irg_obstack(irg);
294         be_node_attr_t *a = get_irn_attr(node);
295
296         memset(a, 0, sizeof(get_op_attr_size(get_irn_op(node))));
297
298         if(max_reg_data >= 0) {
299                 a->reg_data = NEW_ARR_D(be_reg_data_t, obst, max_reg_data);
300                 memset(a->reg_data, 0, max_reg_data * sizeof(a->reg_data[0]));
301         } else {
302                 a->reg_data = NEW_ARR_F(be_reg_data_t, 0);
303         }
304
305         return a;
306 }
307
308 static void add_register_req(ir_node *node)
309 {
310         be_node_attr_t *a = get_irn_attr(node);
311         be_reg_data_t regreq;
312         memset(&regreq, 0, sizeof(regreq));
313         ARR_APP1(be_reg_data_t, a->reg_data, regreq);
314 }
315
316 /**
317  * Skip Proj nodes and return their Proj numbers.
318  *
319  * If *node is a Proj or Proj(Proj) node, skip it.
320  *
321  * @param node  points to the node to be skipped
322  *
323  * @return 0 if *node was no Proj node, its Proj number else.
324  */
325 static int redir_proj(const ir_node **node)
326 {
327         const ir_node *n = *node;
328
329         if(is_Proj(n)) {
330                 ir_node *irn;
331
332                 *node = irn = get_Proj_pred(n);
333                 if(is_Proj(irn)) {
334                         assert(get_irn_mode(irn) == mode_T);
335                         *node = get_Proj_pred(irn);
336                 }
337                 return get_Proj_proj(n);
338         }
339
340         return 0;
341 }
342
343 static be_reg_data_t *retrieve_reg_data(const ir_node *node)
344 {
345         const be_node_attr_t *attr;
346         int pos = 0;
347
348         if(is_Proj(node)) {
349                 pos = get_Proj_proj(node);
350                 node = get_Proj_pred(node);
351         }
352
353         assert(is_be_node(node));
354         attr = get_irn_attr_const(node);
355         assert(pos >= 0 && pos < ARR_LEN(attr->reg_data) && "illegal proj number");
356
357         return &attr->reg_data[pos];
358 }
359
360 static void
361 be_node_set_irn_reg(ir_node *irn, const arch_register_t *reg)
362 {
363         be_reg_data_t *r = retrieve_reg_data(irn);
364         r->reg = reg;
365 }
366
367 ir_node *be_new_Spill(const arch_register_class_t *cls, const arch_register_class_t *cls_frame,
368         ir_graph *irg, ir_node *bl, ir_node *frame, ir_node *to_spill)
369 {
370         be_frame_attr_t *a;
371         ir_node         *in[2];
372         ir_node         *res;
373
374         in[0]     = frame;
375         in[1]     = to_spill;
376         res       = new_ir_node(NULL, irg, bl, op_be_Spill, mode_M, 2, in);
377         a         = init_node_attr(res, 2);
378         a->ent    = NULL;
379         a->offset = 0;
380
381         be_node_set_reg_class(res, be_pos_Spill_frame, cls_frame);
382         be_node_set_reg_class(res, be_pos_Spill_val, cls);
383         return res;
384 }
385
386 ir_node *be_new_Reload(const arch_register_class_t *cls, const arch_register_class_t *cls_frame,
387         ir_graph *irg, ir_node *bl, ir_node *frame, ir_node *mem, ir_mode *mode)
388 {
389         ir_node *in[2];
390         ir_node *res;
391
392         in[0] = frame;
393         in[1] = mem;
394         res   = new_ir_node(NULL, irg, bl, op_be_Reload, mode, 2, in);
395
396         init_node_attr(res, 2);
397         be_node_set_reg_class(res, -1, cls);
398         be_node_set_reg_class(res, be_pos_Reload_frame, cls_frame);
399         be_node_set_flags(res, -1, arch_irn_flags_rematerializable);
400         return res;
401 }
402
403 ir_node *be_get_Reload_mem(const ir_node *irn)
404 {
405         assert(be_is_Reload(irn));
406         return get_irn_n(irn, be_pos_Reload_mem);
407 }
408
409 ir_node *be_get_Reload_frame(const ir_node *irn)
410 {
411         assert(be_is_Reload(irn));
412         return get_irn_n(irn, be_pos_Reload_frame);
413 }
414
415 ir_node *be_get_Spill_val(const ir_node *irn)
416 {
417         assert(be_is_Spill(irn));
418         return get_irn_n(irn, be_pos_Spill_val);
419 }
420
421 ir_node *be_get_Spill_frame(const ir_node *irn)
422 {
423         assert(be_is_Spill(irn));
424         return get_irn_n(irn, be_pos_Spill_frame);
425 }
426
427 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
428 {
429         int i;
430         ir_node *irn = new_ir_node(NULL, irg, bl, op_be_Perm, mode_T, n, in);
431         init_node_attr(irn, n);
432         for(i = 0; i < n; ++i) {
433                 be_node_set_reg_class(irn, i, cls);
434                 be_node_set_reg_class(irn, OUT_POS(i), cls);
435         }
436
437         return irn;
438 }
439
440 void be_Perm_reduce(ir_node *perm, int new_size, int *map)
441 {
442         int            arity     = get_irn_arity(perm);
443         be_reg_data_t  *old_data = alloca(arity * sizeof(old_data[0]));
444         be_node_attr_t *attr     = get_irn_attr(perm);
445         ir_node        **new_in;
446
447         int i;
448
449         assert(be_is_Perm(perm));
450         assert(new_size <= arity);
451
452         NEW_ARR_A(ir_node *, new_in, new_size);
453
454         /* save the old register data */
455         memcpy(old_data, attr->reg_data, arity * sizeof(old_data[0]));
456
457         /* compose the new in array and set the new register data directly in place */
458         for (i = 0; i < new_size; ++i) {
459                 int idx = map[i];
460                 new_in[i]         = get_irn_n(perm, idx);
461                 attr->reg_data[i] = old_data[idx];
462         }
463
464         set_irn_in(perm, new_size, new_in);
465 }
466
467 ir_node *be_new_MemPerm(const arch_env_t *arch_env, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
468 {
469         int i;
470         ir_node *frame = get_irg_frame(irg);
471         const arch_register_class_t *cls_frame = arch_get_irn_reg_class(frame, -1);
472         ir_node *irn;
473         const arch_register_t *sp = arch_env->sp;
474         be_memperm_attr_t *attr;
475         ir_node **real_in;
476
477         real_in = alloca((n+1) * sizeof(real_in[0]));
478         real_in[0] = frame;
479         memcpy(&real_in[1], in, n * sizeof(real_in[0]));
480
481         irn =  new_ir_node(NULL, irg, bl, op_be_MemPerm, mode_T, n+1, real_in);
482
483         init_node_attr(irn, n + 1);
484         be_node_set_reg_class(irn, 0, sp->reg_class);
485         for (i = 0; i < n; ++i) {
486                 be_node_set_reg_class(irn, i + 1, cls_frame);
487                 be_node_set_reg_class(irn, OUT_POS(i), cls_frame);
488         }
489
490         attr = get_irn_attr(irn);
491
492         attr->in_entities = obstack_alloc(irg->obst, n * sizeof(attr->in_entities[0]));
493         memset(attr->in_entities, 0, n * sizeof(attr->in_entities[0]));
494         attr->out_entities = obstack_alloc(irg->obst, n*sizeof(attr->out_entities[0]));
495         memset(attr->out_entities, 0, n*sizeof(attr->out_entities[0]));
496
497         return irn;
498 }
499
500
501 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *op)
502 {
503         ir_node *in[1];
504         ir_node *res;
505         arch_register_req_t *req;
506
507         in[0] = op;
508         res   = new_ir_node(NULL, irg, bl, op_be_Copy, get_irn_mode(op), 1, in);
509         init_node_attr(res, 1);
510         be_node_set_reg_class(res, 0, cls);
511         be_node_set_reg_class(res, OUT_POS(0), cls);
512
513         req = get_req(res, OUT_POS(0));
514         req->cls = cls;
515         req->type = arch_register_req_type_should_be_same;
516         req->other_same = 1U << 0;
517
518         return res;
519 }
520
521 ir_node *be_get_Copy_op(const ir_node *cpy) {
522         return get_irn_n(cpy, be_pos_Copy_op);
523 }
524
525 void be_set_Copy_op(ir_node *cpy, ir_node *op) {
526         set_irn_n(cpy, be_pos_Copy_op, op);
527 }
528
529 ir_node *be_new_Keep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
530 {
531         int i;
532         ir_node *res;
533
534         res = new_ir_node(NULL, irg, bl, op_be_Keep, mode_ANY, -1, NULL);
535         init_node_attr(res, -1);
536
537         for(i = 0; i < n; ++i) {
538                 add_irn_n(res, in[i]);
539                 add_register_req(res);
540                 be_node_set_reg_class(res, i, cls);
541         }
542         keep_alive(res);
543
544         return res;
545 }
546
547 void be_Keep_add_node(ir_node *keep, const arch_register_class_t *cls, ir_node *node)
548 {
549         int n;
550
551         assert(be_is_Keep(keep));
552         n = add_irn_n(keep, node);
553         add_register_req(keep);
554         be_node_set_reg_class(keep, n, cls);
555 }
556
557 /* creates a be_Call */
558 ir_node *be_new_Call(dbg_info *dbg, ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *sp, ir_node *ptr,
559                      int n_outs, int n, ir_node *in[], ir_type *call_tp)
560 {
561         be_call_attr_t *a;
562         int real_n = be_pos_Call_first_arg + n;
563         ir_node *irn;
564         ir_node **real_in;
565
566         NEW_ARR_A(ir_node *, real_in, real_n);
567         real_in[be_pos_Call_mem] = mem;
568         real_in[be_pos_Call_sp]  = sp;
569         real_in[be_pos_Call_ptr] = ptr;
570         memcpy(&real_in[be_pos_Call_first_arg], in, n * sizeof(in[0]));
571
572         irn = new_ir_node(dbg, irg, bl, op_be_Call, mode_T, real_n, real_in);
573         a = init_node_attr(irn, (n_outs > real_n ? n_outs : real_n));
574         a->ent     = NULL;
575         a->call_tp = call_tp;
576         a->pop     = 0;
577         return irn;
578 }
579
580 /* Gets the call entity or NULL if this is no static call. */
581 ir_entity *be_Call_get_entity(const ir_node *call) {
582         const be_call_attr_t *a = get_irn_attr_const(call);
583         assert(be_is_Call(call));
584         return a->ent;
585 }
586
587 /* Sets the call entity. */
588 void be_Call_set_entity(ir_node *call, ir_entity *ent) {
589         be_call_attr_t *a = get_irn_attr(call);
590         assert(be_is_Call(call));
591         a->ent = ent;
592 }
593
594 /* Gets the call type. */
595 ir_type *be_Call_get_type(ir_node *call) {
596         const be_call_attr_t *a = get_irn_attr_const(call);
597         assert(be_is_Call(call));
598         return a->call_tp;
599 }
600
601 /* Sets the call type. */
602 void be_Call_set_type(ir_node *call, ir_type *call_tp) {
603         be_call_attr_t *a = get_irn_attr(call);
604         assert(be_is_Call(call));
605         a->call_tp = call_tp;
606 }
607
608 void be_Call_set_pop(ir_node *call, unsigned pop) {
609         be_call_attr_t *a = get_irn_attr(call);
610         a->pop = pop;
611 }
612
613 unsigned be_Call_get_pop(const ir_node *call) {
614         const be_call_attr_t *a = get_irn_attr_const(call);
615         return a->pop;
616 }
617
618 /* Construct a new be_Return. */
619 ir_node *be_new_Return(dbg_info *dbg, ir_graph *irg, ir_node *block, int n_res,
620                        unsigned pop, int n, ir_node *in[])
621 {
622         be_return_attr_t *a;
623         ir_node *res;
624         int i;
625
626         res = new_ir_node(dbg, irg, block, op_be_Return, mode_X, -1, NULL);
627         init_node_attr(res, -1);
628         for(i = 0; i < n; ++i) {
629                 add_irn_n(res, in[i]);
630                 add_register_req(res);
631         }
632
633         a = get_irn_attr(res);
634         a->num_ret_vals = n_res;
635         a->pop          = pop;
636         a->emit_pop     = 0;
637
638         return res;
639 }
640
641 /* Returns the number of real returns values */
642 int be_Return_get_n_rets(const ir_node *ret) {
643         const be_return_attr_t *a = get_irn_generic_attr_const(ret);
644         return a->num_ret_vals;
645 }
646
647 /* return the number of bytes that should be popped from stack when executing the Return. */
648 unsigned be_Return_get_pop(const ir_node *ret) {
649         const be_return_attr_t *a = get_irn_generic_attr_const(ret);
650         return a->pop;
651 }
652
653 /* return non-zero, if number of popped bytes must be always emitted */
654 int be_Return_get_emit_pop(const ir_node *ret) {
655         const be_return_attr_t *a = get_irn_generic_attr_const(ret);
656         return a->emit_pop;
657 }
658
659 /* return non-zero, if number of popped bytes must be always emitted */
660 void be_Return_set_emit_pop(ir_node *ret, int emit_pop) {
661         be_return_attr_t *a = get_irn_generic_attr(ret);
662         a->emit_pop = emit_pop;
663 }
664
665 int be_Return_append_node(ir_node *ret, ir_node *node) {
666         int pos;
667
668         pos = add_irn_n(ret, node);
669         add_register_req(ret);
670
671         return pos;
672 }
673
674 ir_node *be_new_IncSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl,
675                       ir_node *old_sp, int offset, int align)
676 {
677         be_incsp_attr_t *a;
678         ir_node *irn;
679         ir_node *in[1];
680
681         in[0]     = old_sp;
682         irn       = new_ir_node(NULL, irg, bl, op_be_IncSP, sp->reg_class->mode,
683                                 sizeof(in) / sizeof(in[0]), in);
684         a         = init_node_attr(irn, 1);
685         a->offset = offset;
686         a->align  = align;
687
688         be_node_set_flags(irn, -1, arch_irn_flags_ignore | arch_irn_flags_modify_sp);
689
690         /* Set output constraint to stack register. */
691         be_node_set_reg_class(irn, 0, sp->reg_class);
692         be_set_constr_single_reg(irn, BE_OUT_POS(0), sp);
693         be_node_set_irn_reg(irn, sp);
694
695         return irn;
696 }
697
698 ir_node *be_new_AddSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *sz)
699 {
700         be_node_attr_t *a;
701         ir_node *irn;
702         ir_node *in[be_pos_AddSP_last];
703         const arch_register_class_t *cls;
704
705         in[be_pos_AddSP_old_sp] = old_sp;
706         in[be_pos_AddSP_size]   = sz;
707
708         irn = new_ir_node(NULL, irg, bl, op_be_AddSP, mode_T, be_pos_AddSP_last, in);
709         a   = init_node_attr(irn, be_pos_AddSP_last);
710
711         be_node_set_flags(irn, OUT_POS(pn_be_AddSP_sp),
712                           arch_irn_flags_ignore | arch_irn_flags_modify_sp);
713
714         /* Set output constraint to stack register. */
715         be_set_constr_single_reg(irn, be_pos_AddSP_old_sp, sp);
716         be_node_set_reg_class(irn, be_pos_AddSP_size, arch_register_get_class(sp));
717         be_set_constr_single_reg(irn, OUT_POS(pn_be_AddSP_sp), sp);
718         a->reg_data[pn_be_AddSP_sp].reg = sp;
719
720         cls = arch_register_get_class(sp);
721         be_node_set_reg_class(irn, OUT_POS(pn_be_AddSP_res), cls);
722
723         return irn;
724 }
725
726 ir_node *be_new_SubSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *sz)
727 {
728         be_node_attr_t *a;
729         ir_node *irn;
730         ir_node *in[be_pos_SubSP_last];
731
732         in[be_pos_SubSP_old_sp] = old_sp;
733         in[be_pos_SubSP_size]   = sz;
734
735         irn = new_ir_node(NULL, irg, bl, op_be_SubSP, mode_T, be_pos_SubSP_last, in);
736         a   = init_node_attr(irn, be_pos_SubSP_last);
737
738         be_node_set_flags(irn, OUT_POS(pn_be_SubSP_sp),
739                           arch_irn_flags_ignore | arch_irn_flags_modify_sp);
740
741         /* Set output constraint to stack register. */
742         be_set_constr_single_reg(irn, be_pos_SubSP_old_sp, sp);
743         be_node_set_reg_class(irn, be_pos_SubSP_size, arch_register_get_class(sp));
744         be_set_constr_single_reg(irn, OUT_POS(pn_be_SubSP_sp), sp);
745         a->reg_data[pn_be_SubSP_sp].reg = sp;
746
747         return irn;
748 }
749
750 ir_node *be_new_RegParams(ir_graph *irg, ir_node *bl, int n_outs)
751 {
752         ir_node *res;
753         int i;
754
755         res = new_ir_node(NULL, irg, bl, op_be_RegParams, mode_T, 0, NULL);
756         init_node_attr(res, -1);
757         for(i = 0; i < n_outs; ++i)
758                 add_register_req(res);
759
760         return res;
761 }
762
763 ir_node *be_new_FrameAddr(const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, ir_entity *ent)
764 {
765         be_frame_attr_t *a;
766         ir_node *irn;
767         ir_node *in[1];
768
769         in[0]  = frame;
770         irn    = new_ir_node(NULL, irg, bl, op_be_FrameAddr, get_irn_mode(frame), 1, in);
771         a      = init_node_attr(irn, 1);
772         a->ent = ent;
773         a->offset = 0;
774         be_node_set_reg_class(irn, 0, cls_frame);
775         be_node_set_reg_class(irn, OUT_POS(0), cls_frame);
776
777         return optimize_node(irn);
778 }
779
780 ir_node *be_get_FrameAddr_frame(const ir_node *node) {
781         assert(be_is_FrameAddr(node));
782         return get_irn_n(node, be_pos_FrameAddr_ptr);
783 }
784
785 ir_entity *be_get_FrameAddr_entity(const ir_node *node)
786 {
787         const be_frame_attr_t *attr = get_irn_generic_attr_const(node);
788         return attr->ent;
789 }
790
791 ir_node *be_new_CopyKeep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, int n, ir_node *in_keep[], ir_mode *mode)
792 {
793         ir_node *irn;
794         ir_node **in = (ir_node **) alloca((n + 1) * sizeof(in[0]));
795
796         in[0] = src;
797         memcpy(&in[1], in_keep, n * sizeof(in[0]));
798         irn   = new_ir_node(NULL, irg, bl, op_be_CopyKeep, mode, n + 1, in);
799         init_node_attr(irn, n + 1);
800         be_node_set_reg_class(irn, OUT_POS(0), cls);
801         be_node_set_reg_class(irn, 0, cls);
802
803         return irn;
804 }
805
806 ir_node *be_new_CopyKeep_single(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, ir_node *keep, ir_mode *mode)
807 {
808         return be_new_CopyKeep(cls, irg, bl, src, 1, &keep, mode);
809 }
810
811 ir_node *be_get_CopyKeep_op(const ir_node *cpy) {
812         return get_irn_n(cpy, be_pos_CopyKeep_op);
813 }
814
815 void be_set_CopyKeep_op(ir_node *cpy, ir_node *op) {
816         set_irn_n(cpy, be_pos_CopyKeep_op, op);
817 }
818
819 ir_node *be_new_Barrier(ir_graph *irg, ir_node *bl, int n, ir_node *in[])
820 {
821         ir_node *res;
822         int i;
823
824         res = new_ir_node(NULL, irg, bl, op_be_Barrier, mode_T, -1, NULL);
825         init_node_attr(res, -1);
826         for(i = 0; i < n; ++i) {
827                 add_irn_n(res, in[i]);
828                 add_register_req(res);
829         }
830
831         return res;
832 }
833
834 ir_node *be_Barrier_append_node(ir_node *barrier, ir_node *node)
835 {
836         ir_graph *irg = get_irn_irg(barrier);
837         ir_node *block = get_nodes_block(barrier);
838         ir_mode *mode = get_irn_mode(node);
839         int n = add_irn_n(barrier, node);
840
841         ir_node *proj = new_r_Proj(irg, block, barrier, mode, n);
842         add_register_req(barrier);
843
844         return proj;
845 }
846
847 /* Construct a new be_Unwind. */
848 ir_node *be_new_Unwind(dbg_info *dbg, ir_graph *irg, ir_node *block,
849                                            ir_node *mem, ir_node *sp)
850 {
851         ir_node *res;
852         ir_node *in[2];
853
854         in[be_pos_Unwind_mem] = mem;
855         in[be_pos_Unwind_sp]  = sp;
856         res = new_ir_node(dbg, irg, block, op_be_Unwind, mode_X, 2, in);
857         init_node_attr(res, -1);
858
859         return res;
860 }
861
862 int be_has_frame_entity(const ir_node *irn)
863 {
864         switch (get_irn_opcode(irn)) {
865         case beo_Spill:
866         case beo_Reload:
867         case beo_FrameAddr:
868                 return 1;
869         default:
870                 return 0;
871         }
872 }
873
874 ir_entity *be_get_frame_entity(const ir_node *irn)
875 {
876         if (be_has_frame_entity(irn)) {
877                 const be_frame_attr_t *a = get_irn_attr_const(irn);
878                 return a->ent;
879         }
880         return NULL;
881 }
882
883 int be_get_frame_offset(const ir_node *irn)
884 {
885         assert(is_be_node(irn));
886         if (be_has_frame_entity(irn)) {
887                 const be_frame_attr_t *a = get_irn_attr_const(irn);
888                 return a->offset;
889         }
890         return 0;
891 }
892
893 void be_set_MemPerm_in_entity(const ir_node *irn, int n, ir_entity *ent)
894 {
895         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
896
897         assert(be_is_MemPerm(irn));
898         assert(n < be_get_MemPerm_entity_arity(irn));
899
900         attr->in_entities[n] = ent;
901 }
902
903 ir_entity* be_get_MemPerm_in_entity(const ir_node* irn, int n)
904 {
905         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
906
907         assert(be_is_MemPerm(irn));
908         assert(n < be_get_MemPerm_entity_arity(irn));
909
910         return attr->in_entities[n];
911 }
912
913 void be_set_MemPerm_out_entity(const ir_node *irn, int n, ir_entity *ent)
914 {
915         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
916
917         assert(be_is_MemPerm(irn));
918         assert(n < be_get_MemPerm_entity_arity(irn));
919
920         attr->out_entities[n] = ent;
921 }
922
923 ir_entity* be_get_MemPerm_out_entity(const ir_node* irn, int n)
924 {
925         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
926
927         assert(be_is_MemPerm(irn));
928         assert(n < be_get_MemPerm_entity_arity(irn));
929
930         return attr->out_entities[n];
931 }
932
933 int be_get_MemPerm_entity_arity(const ir_node *irn)
934 {
935         return get_irn_arity(irn) - 1;
936 }
937
938 void be_set_constr_single_reg(ir_node *node, int pos, const arch_register_t *reg)
939 {
940         arch_register_req_t *req = get_req(node, pos);
941         const arch_register_class_t *cls = arch_register_get_class(reg);
942         ir_graph *irg = get_irn_irg(node);
943         struct obstack *obst = get_irg_obstack(irg);
944         unsigned *limited_bitset;
945
946         assert(req->cls == NULL || req->cls == cls);
947         assert(! (req->type & arch_register_req_type_limited));
948         assert(req->limited == NULL);
949
950         limited_bitset = rbitset_obstack_alloc(obst, arch_register_class_n_regs(cls));
951         rbitset_set(limited_bitset, arch_register_get_index(reg));
952
953         req->cls = cls;
954         req->type |= arch_register_req_type_limited;
955         req->limited = limited_bitset;
956 }
957
958 void be_set_constr_limited(ir_node *node, int pos, const arch_register_req_t *req)
959 {
960         ir_graph *irg = get_irn_irg(node);
961         struct obstack *obst = get_irg_obstack(irg);
962         arch_register_req_t *r = get_req(node, pos);
963
964         assert(arch_register_req_is(req, limited));
965         assert(!(req->type & (arch_register_req_type_should_be_same | arch_register_req_type_must_be_different)));
966         memcpy(r, req, sizeof(r[0]));
967         r->limited = rbitset_duplicate_obstack_alloc(obst, req->limited, req->cls->n_regs);
968 }
969
970 void be_node_set_flags(ir_node *irn, int pos, arch_irn_flags_t flags)
971 {
972         be_req_t *bereq = get_be_req(irn, pos);
973         bereq->flags = flags;
974 }
975
976 void be_node_add_flags(ir_node *irn, int pos, arch_irn_flags_t flags)
977 {
978         be_req_t *bereq = get_be_req(irn, pos);
979         bereq->flags |= flags;
980 }
981
982 void be_node_set_reg_class(ir_node *irn, int pos, const arch_register_class_t *cls)
983 {
984         arch_register_req_t *req = get_req(irn, pos);
985
986         req->cls = cls;
987
988         if (cls == NULL) {
989                 req->type = arch_register_req_type_none;
990         } else if (req->type == arch_register_req_type_none) {
991                 req->type = arch_register_req_type_normal;
992         }
993 }
994
995 void be_node_set_req_type(ir_node *irn, int pos, arch_register_req_type_t type)
996 {
997         arch_register_req_t *req = get_req(irn, pos);
998         req->type = type;
999 }
1000
1001 ir_node *be_get_IncSP_pred(ir_node *irn) {
1002         assert(be_is_IncSP(irn));
1003         return get_irn_n(irn, 0);
1004 }
1005
1006 void be_set_IncSP_pred(ir_node *incsp, ir_node *pred) {
1007         assert(be_is_IncSP(incsp));
1008         set_irn_n(incsp, 0, pred);
1009 }
1010
1011 void be_set_IncSP_offset(ir_node *irn, int offset)
1012 {
1013         be_incsp_attr_t *a = get_irn_attr(irn);
1014         assert(be_is_IncSP(irn));
1015         a->offset = offset;
1016 }
1017
1018 int be_get_IncSP_offset(const ir_node *irn)
1019 {
1020         const be_incsp_attr_t *a = get_irn_attr_const(irn);
1021         assert(be_is_IncSP(irn));
1022         return a->offset;
1023 }
1024
1025 int be_get_IncSP_align(const ir_node *irn)
1026 {
1027         const be_incsp_attr_t *a = get_irn_attr_const(irn);
1028         assert(be_is_IncSP(irn));
1029         return a->align;
1030 }
1031
1032 ir_node *be_spill(ir_node *block, ir_node *irn)
1033 {
1034         ir_graph                    *irg       = get_irn_irg(block);
1035         ir_node                     *frame     = get_irg_frame(irg);
1036         const arch_register_class_t *cls       = arch_get_irn_reg_class(irn, -1);
1037         const arch_register_class_t *cls_frame = arch_get_irn_reg_class(frame, -1);
1038         ir_node                     *spill;
1039
1040         spill = be_new_Spill(cls, cls_frame, irg, block, frame, irn);
1041         return spill;
1042 }
1043
1044 ir_node *be_reload(const arch_register_class_t *cls, ir_node *insert, ir_mode *mode, ir_node *spill)
1045 {
1046         ir_node  *reload;
1047         ir_node  *bl    = is_Block(insert) ? insert : get_nodes_block(insert);
1048         ir_graph *irg   = get_irn_irg(bl);
1049         ir_node  *frame = get_irg_frame(irg);
1050         const arch_register_class_t *cls_frame = arch_get_irn_reg_class(frame, -1);
1051
1052         assert(be_is_Spill(spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M));
1053
1054         reload = be_new_Reload(cls, cls_frame, irg, bl, frame, spill, mode);
1055
1056         if (is_Block(insert)) {
1057                 insert = sched_skip(insert, 0, sched_skip_cf_predicator, NULL);
1058                 sched_add_after(insert, reload);
1059         } else {
1060                 sched_add_before(insert, reload);
1061         }
1062
1063         return reload;
1064 }
1065
1066 /*
1067   ____              ____
1068  |  _ \ ___  __ _  |  _ \ ___  __ _ ___
1069  | |_) / _ \/ _` | | |_) / _ \/ _` / __|
1070  |  _ <  __/ (_| | |  _ <  __/ (_| \__ \
1071  |_| \_\___|\__, | |_| \_\___|\__, |___/
1072             |___/                |_|
1073
1074 */
1075
1076
1077 static const
1078 arch_register_req_t *get_out_reg_req(const ir_node *irn, int out_pos)
1079 {
1080         const be_node_attr_t *a = get_irn_attr_const(irn);
1081
1082         if(out_pos >= ARR_LEN(a->reg_data)) {
1083                 return arch_no_register_req;
1084         }
1085
1086         return &a->reg_data[out_pos].req.req;
1087 }
1088
1089 static const
1090 arch_register_req_t *get_in_reg_req(const ir_node *irn, int pos)
1091 {
1092         const be_node_attr_t *a = get_irn_attr_const(irn);
1093
1094         if(pos >= get_irn_arity(irn) || pos >= ARR_LEN(a->reg_data))
1095                 return arch_no_register_req;
1096
1097         return &a->reg_data[pos].in_req.req;
1098 }
1099
1100 static const arch_register_req_t *
1101 be_node_get_irn_reg_req(const ir_node *irn, int pos)
1102 {
1103         int out_pos = pos;
1104
1105         if (pos < 0) {
1106                 if (get_irn_mode(irn) == mode_T)
1107                         return arch_no_register_req;
1108
1109                 out_pos = redir_proj((const ir_node **)&irn);
1110                 assert(is_be_node(irn));
1111                 return get_out_reg_req(irn, out_pos);
1112         } else if (is_be_node(irn)) {
1113                 /*
1114                  * For spills and reloads, we return "none" as requirement for frame
1115                  * pointer, so every input is ok. Some backends need this (e.g. STA).
1116                  */
1117                 if ((be_is_Spill(irn)  && pos == be_pos_Spill_frame) ||
1118                                 (be_is_Reload(irn) && pos == be_pos_Reload_frame))
1119                         return arch_no_register_req;
1120
1121                 return get_in_reg_req(irn, pos);
1122         }
1123
1124         return arch_no_register_req;
1125 }
1126
1127 const arch_register_t *
1128 be_node_get_irn_reg(const ir_node *irn)
1129 {
1130         be_reg_data_t *r;
1131
1132         if (get_irn_mode(irn) == mode_T)
1133                 return NULL;
1134         r = retrieve_reg_data(irn);
1135         return r->reg;
1136 }
1137
1138 static arch_irn_class_t be_node_classify(const ir_node *irn)
1139 {
1140 restart:
1141         switch (get_irn_opcode(irn)) {
1142 #define XXX(a,b) case a: return b
1143                 XXX(beo_Spill, arch_irn_class_spill);
1144                 XXX(beo_Reload, arch_irn_class_reload);
1145                 XXX(beo_Perm, arch_irn_class_perm);
1146                 XXX(beo_Copy, arch_irn_class_copy);
1147                 XXX(beo_Return, arch_irn_class_branch);
1148 #undef XXX
1149                 case iro_Proj:
1150                         irn = get_Proj_pred(irn);
1151                         if (is_Proj(irn)) {
1152                                 assert(get_irn_mode(irn) == mode_T);
1153                                 irn = get_Proj_pred(irn);
1154                         }
1155                         goto restart;
1156
1157                 default:
1158                         return 0;
1159         }
1160 }
1161
1162 static arch_irn_flags_t be_node_get_flags(const ir_node *node)
1163 {
1164         be_req_t *bereq;
1165         int pos = -1;
1166
1167         if(is_Proj(node)) {
1168                 pos = OUT_POS(get_Proj_proj(node));
1169                 node = skip_Proj_const(node);
1170         }
1171
1172         bereq = get_be_req(node, pos);
1173
1174         return bereq->flags;
1175 }
1176
1177 static ir_entity *be_node_get_frame_entity(const ir_node *irn)
1178 {
1179         return be_get_frame_entity(irn);
1180 }
1181
1182 static void be_node_set_frame_entity(ir_node *irn, ir_entity *ent)
1183 {
1184         be_frame_attr_t *a;
1185
1186         assert(be_has_frame_entity(irn));
1187
1188         a = get_irn_attr(irn);
1189         a->ent = ent;
1190 }
1191
1192 static void be_node_set_frame_offset(ir_node *irn, int offset)
1193 {
1194         if(be_has_frame_entity(irn)) {
1195                 be_frame_attr_t *a = get_irn_attr(irn);
1196                 a->offset = offset;
1197         }
1198 }
1199
1200 static int be_node_get_sp_bias(const ir_node *irn)
1201 {
1202         if(be_is_IncSP(irn))
1203                 return be_get_IncSP_offset(irn);
1204         if(be_is_Call(irn))
1205                 return -(int)be_Call_get_pop(irn);
1206
1207         return 0;
1208 }
1209
1210 /*
1211   ___ ____  _   _   _   _                 _ _
1212  |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1213   | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1214   | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1215  |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1216
1217 */
1218
1219 static const arch_irn_ops_t be_node_irn_ops = {
1220         be_node_get_irn_reg_req,
1221         be_node_set_irn_reg,
1222         be_node_get_irn_reg,
1223         be_node_classify,
1224         be_node_get_flags,
1225         be_node_get_frame_entity,
1226         be_node_set_frame_entity,
1227         be_node_set_frame_offset,
1228         be_node_get_sp_bias,
1229         NULL,    /* get_inverse             */
1230         NULL,    /* get_op_estimated_cost   */
1231         NULL,    /* possible_memory_operand */
1232         NULL,    /* perform_memory_operand  */
1233 };
1234
1235 /*
1236   ____  _     _   ___ ____  _   _   _   _                 _ _
1237  |  _ \| |__ (_) |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1238  | |_) | '_ \| |  | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1239  |  __/| | | | |  | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1240  |_|   |_| |_|_| |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1241
1242 */
1243
1244 typedef struct {
1245         const arch_register_t *reg;
1246         arch_register_req_t    req;
1247         arch_irn_flags_t       flags;
1248 } phi_attr_t;
1249
1250 static struct {
1251         pmap *phi_attrs;
1252 } phi_handler;
1253
1254 #define get_phi_handler_from_ops(h)      container_of(h, phi_handler_t, irn_ops)
1255
1256 static inline
1257 phi_attr_t *get_Phi_attr(const ir_node *phi)
1258 {
1259         phi_attr_t *attr = pmap_get(phi_handler.phi_attrs, (void*) phi);
1260         if(attr == NULL) {
1261                 ir_graph *irg = get_irn_irg(phi);
1262                 struct obstack *obst = get_irg_obstack(irg);
1263                 attr = obstack_alloc(obst, sizeof(attr[0]));
1264                 memset(attr, 0, sizeof(attr[0]));
1265                 pmap_insert(phi_handler.phi_attrs, phi, attr);
1266         }
1267
1268         return attr;
1269 }
1270
1271 /**
1272  * Get register class of a Phi.
1273  */
1274 static
1275 const arch_register_req_t *get_Phi_reg_req_recursive(const ir_node *phi,
1276                                                      pset **visited)
1277 {
1278         int n = get_irn_arity(phi);
1279         ir_node *op;
1280         int i;
1281
1282         if(*visited && pset_find_ptr(*visited, phi))
1283                 return NULL;
1284
1285         for(i = 0; i < n; ++i) {
1286                 op = get_irn_n(phi, i);
1287                 /* Matze: don't we unnecessary constraint our phis with this?
1288                  * we only need to take the regclass IMO*/
1289                 if(!is_Phi(op))
1290                         return arch_get_register_req(op, BE_OUT_POS(0));
1291         }
1292
1293         /*
1294          * The operands of that Phi were all Phis themselves.
1295          * We have to start a DFS for a non-Phi argument now.
1296          */
1297         if(!*visited)
1298                 *visited = pset_new_ptr(16);
1299
1300         pset_insert_ptr(*visited, phi);
1301
1302         for(i = 0; i < n; ++i) {
1303                 const arch_register_req_t *req;
1304                 op = get_irn_n(phi, i);
1305                 req = get_Phi_reg_req_recursive(op, visited);
1306                 if(req != NULL)
1307                         return req;
1308         }
1309
1310         return NULL;
1311 }
1312
1313 static
1314 const arch_register_req_t *phi_get_irn_reg_req(const ir_node *irn, int pos)
1315 {
1316         phi_attr_t *attr;
1317         (void) pos;
1318
1319         if(!mode_is_datab(get_irn_mode(irn)))
1320                 return arch_no_register_req;
1321
1322         attr = get_Phi_attr(irn);
1323
1324         if(attr->req.type == arch_register_req_type_none) {
1325                 pset *visited = NULL;
1326                 const arch_register_req_t *req;
1327                 req = get_Phi_reg_req_recursive(irn, &visited);
1328
1329                 memcpy(&attr->req, req, sizeof(req[0]));
1330                 assert(attr->req.cls != NULL);
1331                 attr->req.type = arch_register_req_type_normal;
1332
1333                 if(visited != NULL)
1334                         del_pset(visited);
1335         }
1336
1337         return &attr->req;
1338 }
1339
1340 void be_set_phi_reg_req(ir_node *node, const arch_register_req_t *req)
1341 {
1342         phi_attr_t *attr;
1343
1344         assert(mode_is_datab(get_irn_mode(node)));
1345
1346         attr = get_Phi_attr(node);
1347         memcpy(&attr->req, req, sizeof(req[0]));
1348 }
1349
1350 void be_set_phi_flags(ir_node *node, arch_irn_flags_t flags)
1351 {
1352         phi_attr_t *attr;
1353
1354         assert(mode_is_datab(get_irn_mode(node)));
1355
1356         attr = get_Phi_attr(node);
1357         attr->flags = flags;
1358 }
1359
1360 static void phi_set_irn_reg(ir_node *irn, const arch_register_t *reg)
1361 {
1362         phi_attr_t *attr = get_Phi_attr(irn);
1363         attr->reg = reg;
1364 }
1365
1366 static const arch_register_t *phi_get_irn_reg(const ir_node *irn)
1367 {
1368         phi_attr_t *attr = get_Phi_attr(irn);
1369         return attr->reg;
1370 }
1371
1372 static arch_irn_class_t phi_classify(const ir_node *irn)
1373 {
1374         (void) irn;
1375         return 0;
1376 }
1377
1378 static arch_irn_flags_t phi_get_flags(const ir_node *irn)
1379 {
1380         phi_attr_t *attr = get_Phi_attr(irn);
1381         return attr->flags;
1382 }
1383
1384 static ir_entity *phi_get_frame_entity(const ir_node *irn)
1385 {
1386         (void) irn;
1387         return NULL;
1388 }
1389
1390 static void phi_set_frame_entity(ir_node *irn, ir_entity *ent)
1391 {
1392         (void) irn;
1393         (void) ent;
1394         panic("phi_set_frame_entity() should not be called");
1395 }
1396
1397 static void phi_set_frame_offset(ir_node *irn, int bias)
1398 {
1399         (void) irn;
1400         (void) bias;
1401         panic("phi_set_frame_offset() should not be called");
1402 }
1403
1404 static int phi_get_sp_bias(const ir_node *irn)
1405 {
1406         (void) irn;
1407         return 0;
1408 }
1409
1410 static const arch_irn_ops_t phi_irn_ops = {
1411         phi_get_irn_reg_req,
1412         phi_set_irn_reg,
1413         phi_get_irn_reg,
1414         phi_classify,
1415         phi_get_flags,
1416         phi_get_frame_entity,
1417         phi_set_frame_entity,
1418         phi_set_frame_offset,
1419         phi_get_sp_bias,
1420         NULL,    /* get_inverse             */
1421         NULL,    /* get_op_estimated_cost   */
1422         NULL,    /* possible_memory_operand */
1423         NULL,    /* perform_memory_operand  */
1424 };
1425
1426 void be_phi_handler_new(void)
1427 {
1428         phi_handler.phi_attrs = pmap_create();
1429         op_Phi->ops.be_ops    = &phi_irn_ops;
1430 }
1431
1432 void be_phi_handler_free(void)
1433 {
1434         pmap_destroy(phi_handler.phi_attrs);
1435         phi_handler.phi_attrs = NULL;
1436         op_Phi->ops.be_ops    = NULL;
1437 }
1438
1439 void be_phi_handler_reset(void)
1440 {
1441         if(phi_handler.phi_attrs)
1442                 pmap_destroy(phi_handler.phi_attrs);
1443         phi_handler.phi_attrs = pmap_create();
1444 }
1445
1446 /*
1447   _   _           _        ____                        _
1448  | \ | | ___   __| | ___  |  _ \ _   _ _ __ ___  _ __ (_)_ __   __ _
1449  |  \| |/ _ \ / _` |/ _ \ | | | | | | | '_ ` _ \| '_ \| | '_ \ / _` |
1450  | |\  | (_) | (_| |  __/ | |_| | |_| | | | | | | |_) | | | | | (_| |
1451  |_| \_|\___/ \__,_|\___| |____/ \__,_|_| |_| |_| .__/|_|_| |_|\__, |
1452                                                 |_|            |___/
1453 */
1454
1455 /**
1456  * Dumps a register requirement to a file.
1457  */
1458 static void dump_node_req(FILE *f, int idx, const arch_register_req_t *req,
1459                           const ir_node *node)
1460 {
1461         int did_something = 0;
1462         char buf[16];
1463         const char *prefix = buf;
1464
1465         snprintf(buf, sizeof(buf), "#%d ", idx);
1466         buf[sizeof(buf) - 1] = '\0';
1467
1468         if(req->cls != 0) {
1469                 char tmp[256];
1470                 fprintf(f, prefix);
1471                 arch_register_req_format(tmp, sizeof(tmp), req, node);
1472                 fprintf(f, "%s", tmp);
1473                 did_something = 1;
1474         }
1475
1476         if(did_something)
1477                 fprintf(f, "\n");
1478 }
1479
1480 /**
1481  * Dumps node register requirements to a file.
1482  */
1483 static void dump_node_reqs(FILE *f, ir_node *node)
1484 {
1485         int i;
1486         be_node_attr_t *a = get_irn_attr(node);
1487         int len = ARR_LEN(a->reg_data);
1488
1489         fprintf(f, "registers: \n");
1490         for(i = 0; i < len; ++i) {
1491                 be_reg_data_t *rd = &a->reg_data[i];
1492                 if(rd->reg)
1493                         fprintf(f, "#%d: %s\n", i, rd->reg->name);
1494         }
1495
1496         fprintf(f, "in requirements:\n");
1497         for(i = 0; i < len; ++i) {
1498                 dump_node_req(f, i, &a->reg_data[i].in_req.req, node);
1499         }
1500
1501         fprintf(f, "\nout requirements:\n");
1502         for(i = 0; i < len; ++i) {
1503                 dump_node_req(f, i, &a->reg_data[i].req.req, node);
1504         }
1505 }
1506
1507 /**
1508  * ir_op-Operation: dump a be node to file
1509  */
1510 static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
1511 {
1512         be_node_attr_t *at = get_irn_attr(irn);
1513
1514         assert(is_be_node(irn));
1515
1516         switch(reason) {
1517                 case dump_node_opcode_txt:
1518                         fprintf(f, get_op_name(get_irn_op(irn)));
1519                         break;
1520                 case dump_node_mode_txt:
1521                         if(be_is_Perm(irn) || be_is_Copy(irn) || be_is_CopyKeep(irn)) {
1522                                 fprintf(f, " %s", get_mode_name(get_irn_mode(irn)));
1523                         }
1524                         break;
1525                 case dump_node_nodeattr_txt:
1526                         if(be_is_Call(irn)) {
1527                                 be_call_attr_t *a = (be_call_attr_t *) at;
1528                                 if (a->ent)
1529                                         fprintf(f, " [%s] ", get_entity_name(a->ent));
1530                         }
1531                         if(be_is_IncSP(irn)) {
1532                                 const be_incsp_attr_t *attr = get_irn_generic_attr_const(irn);
1533                                 if(attr->offset == BE_STACK_FRAME_SIZE_EXPAND) {
1534                                         fprintf(f, " [Setup Stackframe] ");
1535                                 } else if(attr->offset == BE_STACK_FRAME_SIZE_SHRINK) {
1536                                         fprintf(f, " [Destroy Stackframe] ");
1537                                 } else {
1538                                         fprintf(f, " [%d] ", attr->offset);
1539                                 }
1540                         }
1541                         break;
1542                 case dump_node_info_txt:
1543                         dump_node_reqs(f, irn);
1544
1545                         if(be_has_frame_entity(irn)) {
1546                                 be_frame_attr_t *a = (be_frame_attr_t *) at;
1547                                 if (a->ent) {
1548                                         unsigned size = get_type_size_bytes(get_entity_type(a->ent));
1549                                         ir_fprintf(f, "frame entity: %+F, offset 0x%x (%d), size 0x%x (%d) bytes\n",
1550                                           a->ent, a->offset, a->offset, size, size);
1551                                 }
1552
1553                         }
1554
1555                         switch (get_irn_opcode(irn)) {
1556                         case beo_IncSP:
1557                                 {
1558                                         be_incsp_attr_t *a = (be_incsp_attr_t *) at;
1559                                         if (a->offset == BE_STACK_FRAME_SIZE_EXPAND)
1560                                                 fprintf(f, "offset: FRAME_SIZE\n");
1561                                         else if(a->offset == BE_STACK_FRAME_SIZE_SHRINK)
1562                                                 fprintf(f, "offset: -FRAME SIZE\n");
1563                                         else
1564                                                 fprintf(f, "offset: %u\n", a->offset);
1565                                 }
1566                                 break;
1567                         case beo_Call:
1568                                 {
1569                                         be_call_attr_t *a = (be_call_attr_t *) at;
1570
1571                                         if (a->ent)
1572                                                 fprintf(f, "\ncalling: %s\n", get_entity_name(a->ent));
1573                                 }
1574                                 break;
1575                         case beo_MemPerm:
1576                                 {
1577                                         int i;
1578                                         for(i = 0; i < be_get_MemPerm_entity_arity(irn); ++i) {
1579                                                 ir_entity *in, *out;
1580                                                 in = be_get_MemPerm_in_entity(irn, i);
1581                                                 out = be_get_MemPerm_out_entity(irn, i);
1582                                                 if(in) {
1583                                                         fprintf(f, "\nin[%d]: %s\n", i, get_entity_name(in));
1584                                                 }
1585                                                 if(out) {
1586                                                         fprintf(f, "\nout[%d]: %s\n", i, get_entity_name(out));
1587                                                 }
1588                                         }
1589                                 }
1590                                 break;
1591
1592                         default:
1593                                 break;
1594                         }
1595         }
1596
1597         return 0;
1598 }
1599
1600 /**
1601  * ir_op-Operation:
1602  * Copies the backend specific attributes from old node to new node.
1603  */
1604 static void copy_attr(const ir_node *old_node, ir_node *new_node)
1605 {
1606         const be_node_attr_t *old_attr = get_irn_attr_const(old_node);
1607         be_node_attr_t *new_attr = get_irn_attr(new_node);
1608         struct obstack *obst = get_irg_obstack(get_irn_irg(new_node));
1609         unsigned i, len;
1610
1611         assert(is_be_node(old_node));
1612         assert(is_be_node(new_node));
1613
1614         memcpy(new_attr, old_attr, get_op_attr_size(get_irn_op(old_node)));
1615         new_attr->reg_data = NULL;
1616
1617         if(old_attr->reg_data != NULL)
1618                 len = ARR_LEN(old_attr->reg_data);
1619         else
1620                 len = 0;
1621
1622         if(get_irn_op(old_node)->opar == oparity_dynamic
1623                         || be_is_RegParams(old_node)) {
1624                 new_attr->reg_data = NEW_ARR_F(be_reg_data_t, len);
1625         } else {
1626                 new_attr->reg_data = NEW_ARR_D(be_reg_data_t, obst, len);
1627         }
1628
1629         if(len > 0) {
1630                 memcpy(new_attr->reg_data, old_attr->reg_data, len * sizeof(be_reg_data_t));
1631                 for(i = 0; i < len; ++i) {
1632                         const be_reg_data_t *rd = &old_attr->reg_data[i];
1633                         be_reg_data_t *newrd = &new_attr->reg_data[i];
1634                         if(arch_register_req_is(&rd->req.req, limited)) {
1635                                 const arch_register_req_t *req = &rd->req.req;
1636                                 arch_register_req_t *new_req = &newrd->req.req;
1637                                 new_req->limited
1638                                         = rbitset_duplicate_obstack_alloc(obst, req->limited, req->cls->n_regs);
1639                         }
1640                         if(arch_register_req_is(&rd->in_req.req, limited)) {
1641                                 const arch_register_req_t *req = &rd->in_req.req;
1642                                 arch_register_req_t *new_req = &newrd->in_req.req;
1643                                 new_req->limited
1644                                         = rbitset_duplicate_obstack_alloc(obst, req->limited, req->cls->n_regs);
1645                         }
1646                 }
1647         }
1648 }
1649
1650 static const ir_op_ops be_node_op_ops = {
1651         firm_default_hash,
1652         NULL,
1653         NULL,
1654         NULL,
1655         NULL,
1656         NULL,
1657         NULL,
1658         NULL,
1659         NULL,
1660         copy_attr,
1661         NULL,
1662         NULL,
1663         NULL,
1664         NULL,
1665         NULL,
1666         dump_node,
1667         NULL,
1668         &be_node_irn_ops
1669 };
1670
1671 int is_be_node(const ir_node *irn)
1672 {
1673         return get_op_ops(get_irn_op(irn))->be_ops == &be_node_irn_ops;
1674 }
1675
1676 void be_node_init(void) {
1677         static int inited = 0;
1678
1679         if(inited)
1680                 return;
1681
1682         inited = 1;
1683
1684         /* Acquire all needed opcodes. */
1685         op_be_Spill      = new_ir_op(beo_Spill,     "be_Spill",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
1686         op_be_Reload     = new_ir_op(beo_Reload,    "be_Reload",    op_pin_state_pinned, N,   oparity_zero,     0, sizeof(be_frame_attr_t),   &be_node_op_ops);
1687         op_be_Perm       = new_ir_op(beo_Perm,      "be_Perm",      op_pin_state_pinned, N,   oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
1688         op_be_MemPerm    = new_ir_op(beo_MemPerm,   "be_MemPerm",   op_pin_state_pinned, N,   oparity_variable, 0, sizeof(be_memperm_attr_t), &be_node_op_ops);
1689         op_be_Copy       = new_ir_op(beo_Copy,      "be_Copy",      op_pin_state_floats, N,   oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
1690         op_be_Keep       = new_ir_op(beo_Keep,      "be_Keep",      op_pin_state_pinned, K,   oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
1691         op_be_CopyKeep   = new_ir_op(beo_CopyKeep,  "be_CopyKeep",  op_pin_state_pinned, K,   oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
1692         op_be_Call       = new_ir_op(beo_Call,      "be_Call",      op_pin_state_pinned, F|M, oparity_variable, 0, sizeof(be_call_attr_t),    &be_node_op_ops);
1693         op_be_Return     = new_ir_op(beo_Return,    "be_Return",    op_pin_state_pinned, X,   oparity_dynamic,  0, sizeof(be_return_attr_t),  &be_node_op_ops);
1694         op_be_AddSP      = new_ir_op(beo_AddSP,     "be_AddSP",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
1695         op_be_SubSP      = new_ir_op(beo_SubSP,     "be_SubSP",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
1696         op_be_IncSP      = new_ir_op(beo_IncSP,     "be_IncSP",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_incsp_attr_t),   &be_node_op_ops);
1697         op_be_RegParams  = new_ir_op(beo_RegParams, "be_RegParams", op_pin_state_pinned, N,   oparity_zero,     0, sizeof(be_node_attr_t),    &be_node_op_ops);
1698         op_be_FrameAddr  = new_ir_op(beo_FrameAddr, "be_FrameAddr", op_pin_state_floats, N,   oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
1699         op_be_Barrier    = new_ir_op(beo_Barrier,   "be_Barrier",   op_pin_state_pinned, N,   oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
1700         op_be_Unwind     = new_ir_op(beo_Unwind,    "be_Unwind",    op_pin_state_pinned, X,   oparity_zero,     0, sizeof(be_node_attr_t),    &be_node_op_ops);
1701
1702         op_be_Spill->ops.node_cmp_attr     = FrameAddr_cmp_attr;
1703         op_be_Reload->ops.node_cmp_attr    = FrameAddr_cmp_attr;
1704         op_be_Perm->ops.node_cmp_attr      = node_cmp_attr;
1705         op_be_MemPerm->ops.node_cmp_attr   = node_cmp_attr;
1706         op_be_Copy->ops.node_cmp_attr      = node_cmp_attr;
1707         op_be_Keep->ops.node_cmp_attr      = node_cmp_attr;
1708         op_be_CopyKeep->ops.node_cmp_attr  = node_cmp_attr;
1709         op_be_Call->ops.node_cmp_attr      = Call_cmp_attr;
1710         op_be_Return->ops.node_cmp_attr    = Return_cmp_attr;
1711         op_be_AddSP->ops.node_cmp_attr     = node_cmp_attr;
1712         op_be_SubSP->ops.node_cmp_attr     = node_cmp_attr;
1713         op_be_IncSP->ops.node_cmp_attr     = IncSP_cmp_attr;
1714         op_be_RegParams->ops.node_cmp_attr = node_cmp_attr;
1715         op_be_FrameAddr->ops.node_cmp_attr = FrameAddr_cmp_attr;
1716         op_be_Barrier->ops.node_cmp_attr   = node_cmp_attr;
1717         op_be_Unwind->ops.node_cmp_attr    = node_cmp_attr;
1718 }