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