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