made code C89 compliant (changed unnamed union in attributes)
[libfirm] / ir / be / benode.c
1 /**
2  * @file   benode.c
3  * @date   17.05.2005
4  * @author Sebastian Hack
5  *
6  * Backend node support.
7  *
8  * This file provides Perm, Copy, Spill and Reload nodes.
9  *
10  * Copyright (C) 2005 Universitaet Karlsruhe
11  * Released under the GPL
12  */
13
14 #ifdef HAVE_CONFIG_H
15 #include "config.h"
16 #endif
17
18 #include <stdlib.h>
19
20 #include "obst.h"
21 #include "set.h"
22 #include "pmap.h"
23 #include "util.h"
24 #include "debug.h"
25 #include "fourcc.h"
26 #include "offset.h"
27 #include "bitfiddle.h"
28
29 #include "irop_t.h"
30 #include "irmode_t.h"
31 #include "irnode_t.h"
32 #include "ircons_t.h"
33 #include "irprintf.h"
34 #include "irgwalk.h"
35
36 #include "be_t.h"
37 #include "belive_t.h"
38 #include "besched_t.h"
39 #include "benode_t.h"
40
41 #include "beirgmod.h"
42
43 #define OUT_POS(x) (-((x) + 1))
44
45 /* Sometimes we want to put const nodes into get_irn_generic_attr ... */
46 #define get_irn_attr(irn) get_irn_generic_attr((ir_node *) (irn))
47
48 static unsigned be_node_tag = FOURCC('B', 'E', 'N', 'O');
49
50 #if 0
51 typedef enum _node_kind_t {
52         node_kind_spill,
53         node_kind_reload,
54         node_kind_perm,
55         node_kind_copy,
56         node_kind_kill,
57         node_kind_last
58 } node_kind_t;
59 #endif
60
61 typedef enum {
62         be_req_kind_old_limited,
63         be_req_kind_negate_old_limited,
64         be_req_kind_single_reg
65 } be_req_kind_t;
66
67 typedef struct {
68         arch_register_req_t req;
69         be_req_kind_t       kind;
70         arch_irn_flags_t    flags;
71         union {
72                 struct {
73                         void (*old_limited)(void *ptr, bitset_t *bs);
74                         void *old_limited_env;
75                 } old_limited;
76
77                 const arch_register_t *single_reg;
78         } x;
79 } be_req_t;
80
81 typedef struct {
82         const arch_register_t *reg;
83         be_req_t              req;
84         be_req_t              in_req;
85 } be_reg_data_t;
86
87 /** The generic be nodes attribute type. */
88 typedef struct {
89         int                   max_reg_data;
90         be_reg_data_t         *reg_data;
91 } be_node_attr_t;
92
93 /** The be_Stack attribute type. */
94 typedef struct {
95         be_node_attr_t node_attr;
96         int offset;           /**< The offset by which the stack shall be increased/decreased. */
97         be_stack_dir_t dir;   /**< The direction in which the stack shall be modified (expand or shrink). */
98 } be_stack_attr_t;
99
100 /** The be_Frame attribute type. */
101 typedef struct {
102         be_node_attr_t node_attr;
103         entity *ent;
104         int offset;
105 } be_frame_attr_t;
106
107 /** The be_Call attribute type. */
108 typedef struct {
109         be_node_attr_t node_attr;
110         entity *ent;         /**< The called entity if this is a static call. */
111         ir_type *call_tp;    /**< The call type, copied from the original Call node. */
112 } be_call_attr_t;
113
114 /** The be_Spill attribute type. */
115 typedef struct {
116         be_frame_attr_t frame_attr;
117         ir_node *spill_ctx;  /**< The node in whose context this spill was introduced. */
118 } be_spill_attr_t;
119
120 ir_op *op_be_Spill;
121 ir_op *op_be_Reload;
122 ir_op *op_be_Perm;
123 ir_op *op_be_Copy;
124 ir_op *op_be_Keep;
125 ir_op *op_be_CopyKeep;
126 ir_op *op_be_Call;
127 ir_op *op_be_Return;
128 ir_op *op_be_IncSP;
129 ir_op *op_be_AddSP;
130 ir_op *op_be_SetSP;
131 ir_op *op_be_RegParams;
132 ir_op *op_be_StackParam;
133 ir_op *op_be_FrameAddr;
134 ir_op *op_be_FrameLoad;
135 ir_op *op_be_FrameStore;
136 ir_op *op_be_Barrier;
137
138 static int beo_base = -1;
139
140 static const ir_op_ops be_node_op_ops;
141
142 #define N   irop_flag_none
143 #define L   irop_flag_labeled
144 #define C   irop_flag_commutative
145 #define X   irop_flag_cfopcode
146 #define I   irop_flag_ip_cfopcode
147 #define F   irop_flag_fragile
148 #define Y   irop_flag_forking
149 #define H   irop_flag_highlevel
150 #define c   irop_flag_constlike
151 #define K   irop_flag_keep
152 #define M   irop_flag_machine
153
154
155 void be_node_init(void) {
156         static int inited = 0;
157
158         if(inited)
159                 return;
160
161         inited = 1;
162
163         /* Acquire all needed opcodes. */
164         beo_base = get_next_ir_opcodes(beo_Last - 1);
165
166         op_be_Spill      = new_ir_op(beo_base + beo_Spill,      "Spill",      op_pin_state_mem_pinned, N, oparity_unary,    0, sizeof(be_spill_attr_t), &be_node_op_ops);
167         op_be_Reload     = new_ir_op(beo_base + beo_Reload,     "Reload",     op_pin_state_mem_pinned, N, oparity_zero,     0, sizeof(be_frame_attr_t), &be_node_op_ops);
168         op_be_Perm       = new_ir_op(beo_base + beo_Perm,       "Perm",       op_pin_state_pinned,     N, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
169         op_be_Copy       = new_ir_op(beo_base + beo_Copy,       "Copy",       op_pin_state_floats,     N, oparity_unary,    0, sizeof(be_node_attr_t),  &be_node_op_ops);
170         op_be_Keep       = new_ir_op(beo_base + beo_Keep,       "Keep",       op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
171         op_be_CopyKeep   = new_ir_op(beo_base + beo_CopyKeep,   "CopyKeep",   op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
172         op_be_Call       = new_ir_op(beo_base + beo_Call,       "Call",       op_pin_state_pinned,     N, oparity_variable, 0, sizeof(be_call_attr_t),  &be_node_op_ops);
173         op_be_Return     = new_ir_op(beo_base + beo_Return,     "Return",     op_pin_state_pinned,     X, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
174         op_be_AddSP      = new_ir_op(beo_base + beo_AddSP,      "AddSP",      op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_node_attr_t),  &be_node_op_ops);
175         op_be_SetSP      = new_ir_op(beo_base + beo_SetSP,      "SetSP",      op_pin_state_pinned,     N, oparity_binary,   0, sizeof(be_stack_attr_t), &be_node_op_ops);
176         op_be_IncSP      = new_ir_op(beo_base + beo_IncSP,      "IncSP",      op_pin_state_pinned,     N, oparity_binary,   0, sizeof(be_stack_attr_t), &be_node_op_ops);
177         op_be_RegParams  = new_ir_op(beo_base + beo_RegParams,  "RegParams",  op_pin_state_pinned,     N, oparity_zero,     0, sizeof(be_node_attr_t),  &be_node_op_ops);
178         op_be_StackParam = new_ir_op(beo_base + beo_StackParam, "StackParam", op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_frame_attr_t), &be_node_op_ops);
179         op_be_FrameAddr  = new_ir_op(beo_base + beo_FrameAddr,  "FrameAddr",  op_pin_state_pinned,     N, oparity_binary,   0, sizeof(be_frame_attr_t), &be_node_op_ops);
180         op_be_FrameLoad  = new_ir_op(beo_base + beo_FrameLoad,  "FrameLoad",  op_pin_state_pinned,     N, oparity_any,      0, sizeof(be_frame_attr_t), &be_node_op_ops);
181         op_be_FrameStore = new_ir_op(beo_base + beo_FrameStore, "FrameStore", op_pin_state_pinned,     N, oparity_any,      0, sizeof(be_frame_attr_t), &be_node_op_ops);
182         op_be_Barrier    = new_ir_op(beo_base + beo_Barrier,    "Barrier",    op_pin_state_pinned,     N, oparity_any,      0, sizeof(be_node_attr_t),  &be_node_op_ops);
183
184         set_op_tag(op_be_Spill,      &be_node_tag);
185         set_op_tag(op_be_Reload,     &be_node_tag);
186         set_op_tag(op_be_Perm,       &be_node_tag);
187         set_op_tag(op_be_Copy,       &be_node_tag);
188         set_op_tag(op_be_Keep,       &be_node_tag);
189         set_op_tag(op_be_CopyKeep,   &be_node_tag);
190         set_op_tag(op_be_Call,       &be_node_tag);
191         set_op_tag(op_be_Return,     &be_node_tag);
192         set_op_tag(op_be_AddSP,      &be_node_tag);
193         set_op_tag(op_be_SetSP,      &be_node_tag);
194         set_op_tag(op_be_IncSP,      &be_node_tag);
195         set_op_tag(op_be_RegParams,  &be_node_tag);
196         set_op_tag(op_be_StackParam, &be_node_tag);
197         set_op_tag(op_be_FrameLoad,  &be_node_tag);
198         set_op_tag(op_be_FrameStore, &be_node_tag);
199         set_op_tag(op_be_FrameAddr,  &be_node_tag);
200         set_op_tag(op_be_Barrier,    &be_node_tag);
201 }
202
203 /**
204  * Initializes the generic attribute of all be nodes and return ir.
205  */
206 static void *init_node_attr(ir_node* irn, int max_reg_data)
207 {
208         ir_graph *irg     = get_irn_irg(irn);
209         be_node_attr_t *a = get_irn_attr(irn);
210
211         memset(a, 0, sizeof(get_op_attr_size(get_irn_op(irn))));
212         a->max_reg_data = max_reg_data;
213         a->reg_data     = NULL;
214
215         if(max_reg_data > 0) {
216                 int i;
217
218                 a->reg_data = NEW_ARR_D(be_reg_data_t, get_irg_obstack(irg), max_reg_data);
219                 memset(a->reg_data, 0, max_reg_data * sizeof(a->reg_data[0]));
220                 for(i = 0; i < max_reg_data; ++i) {
221                         a->reg_data[i].req.req.cls  = NULL;
222                         a->reg_data[i].req.req.type = arch_register_req_type_none;
223                 }
224         }
225
226         return a;
227 }
228
229 static INLINE int is_be_node(const ir_node *irn)
230 {
231         return get_op_tag(get_irn_op(irn)) == &be_node_tag;
232 }
233
234 be_opcode_t be_get_irn_opcode(const ir_node *irn)
235 {
236         return is_be_node(irn) ? get_irn_opcode(irn) - beo_base : beo_NoBeOp;
237 }
238
239 static int redir_proj(const ir_node **node, int pos)
240 {
241         const ir_node *n = *node;
242
243         if(is_Proj(n)) {
244                 ir_node *irn;
245
246                 assert(pos == -1 && "Illegal pos for a Proj");
247                 *node = irn = get_Proj_pred(n);
248                 if(is_Proj(irn)) {
249                         assert(get_irn_mode(irn) == mode_T);
250                         *node = get_Proj_pred(irn);
251                 }
252                 return get_Proj_proj(n);
253         }
254
255         return 0;
256 }
257
258 static void
259 be_node_set_irn_reg(const void *_self, ir_node *irn, const arch_register_t *reg)
260 {
261         int out_pos;
262         be_node_attr_t *a;
263
264         out_pos = redir_proj((const ir_node **) &irn, -1);
265         a       = get_irn_attr(irn);
266
267         assert(is_be_node(irn));
268         assert(out_pos < a->max_reg_data && "position too high");
269         a->reg_data[out_pos].reg = reg;
270 }
271
272
273 ir_node *be_new_Spill(const arch_register_class_t *cls, const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, ir_node *to_spill, ir_node *ctx)
274 {
275         be_spill_attr_t *a;
276         ir_node *in[2];
277         ir_node *res;
278
279         in[0] = frame;
280         in[1] = to_spill;
281         res   = new_ir_node(NULL, irg, bl, op_be_Spill, mode_M, 2, in);
282         a     = init_node_attr(res, 2);
283         a->frame_attr.ent = NULL;
284         a->frame_attr.offset = 0;
285         a->spill_ctx = ctx;
286
287         be_node_set_reg_class(res, 0, cls_frame);
288         be_node_set_reg_class(res, 1, cls);
289         return res;
290 }
291
292 ir_node *be_new_Reload(const arch_register_class_t *cls, const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, ir_node *mem, ir_mode *mode)
293 {
294         ir_node *in[2];
295         ir_node *res;
296
297         in[0] = frame;
298         in[1] = mem;
299         res   = new_ir_node(NULL, irg, bl, op_be_Reload, mode, 2, in);
300         init_node_attr(res, 2);
301         be_node_set_reg_class(res, 0, cls_frame);
302         be_node_set_reg_class(res, -1, cls);
303         return res;
304 }
305
306 ir_node *(be_get_Reload_mem)(const ir_node *irn)
307 {
308         assert(be_is_Reload(irn));
309         return get_irn_n(irn, be_pos_Reload_mem);
310 }
311
312 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
313 {
314         int i;
315         ir_node *irn = new_ir_node(NULL, irg, bl, op_be_Perm, mode_T, n, in);
316         init_node_attr(irn, n);
317         for(i = 0; i < n; ++i) {
318                 be_node_set_reg_class(irn, i, cls);
319                 be_node_set_reg_class(irn, OUT_POS(i), cls);
320         }
321
322         return irn;
323 }
324
325 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *op)
326 {
327         ir_node *in[1];
328         ir_node *res;
329
330         in[0] = op;
331         res   = new_ir_node(NULL, irg, bl, op_be_Copy, get_irn_mode(op), 1, in);
332         init_node_attr(res, 1);
333         be_node_set_reg_class(res, 0, cls);
334         be_node_set_reg_class(res, OUT_POS(0), cls);
335         return res;
336 }
337
338 ir_node *be_new_Keep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
339 {
340         int i;
341         ir_node *irn;
342
343         irn = new_ir_node(NULL, irg, bl, op_be_Keep, mode_ANY, n, in);
344         init_node_attr(irn, n);
345         for(i = 0; i < n; ++i) {
346                 be_node_set_reg_class(irn, i, cls);
347         }
348         keep_alive(irn);
349         return irn;
350 }
351
352 ir_node *be_new_Call(dbg_info *dbg, ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *sp, ir_node *ptr,
353                      int n_outs, int n, ir_node *in[], ir_type *call_tp)
354 {
355         be_call_attr_t *a;
356         int real_n = be_pos_Call_first_arg + n;
357         ir_node *irn;
358         ir_node **real_in;
359
360         NEW_ARR_A(ir_node *, real_in, real_n);
361         real_in[be_pos_Call_mem] = mem;
362         real_in[be_pos_Call_sp]  = sp;
363         real_in[be_pos_Call_ptr] = ptr;
364         memcpy(&real_in[be_pos_Call_first_arg], in, n * sizeof(in[0]));
365
366         irn = new_ir_node(NULL, irg, bl, op_be_Call, mode_T, real_n, real_in);
367         a = init_node_attr(irn, (n_outs > real_n ? n_outs : real_n));
368         a->ent     = NULL;
369         a->call_tp = call_tp;
370         return irn;
371 }
372
373 /* Gets the call entity or NULL if this is no static call. */
374 entity *be_Call_get_entity(const ir_node *call) {
375         be_call_attr_t *a = get_irn_attr(call);
376         assert(be_is_Call(call));
377         return a->ent;
378 }
379
380 /* Sets the call entity. */
381 void be_Call_set_entity(ir_node *call, entity *ent) {
382         be_call_attr_t *a = get_irn_attr(call);
383         assert(be_is_Call(call));
384         a->ent = ent;
385 }
386
387 /* Gets the call type. */
388 ir_type *be_Call_get_type(ir_node *call) {
389         be_call_attr_t *a = get_irn_attr(call);
390         assert(be_is_Call(call));
391         return a->call_tp;
392 }
393
394 /* Sets the call type. */
395 void be_Call_set_type(ir_node *call, ir_type *call_tp) {
396         be_call_attr_t *a = get_irn_attr(call);
397         assert(be_is_Call(call));
398         a->call_tp = call_tp;
399 }
400
401
402 ir_node *be_new_Return(dbg_info *dbg, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
403 {
404         ir_node *irn = new_ir_node(dbg, irg, bl, op_be_Return, mode_X, n, in);
405         init_node_attr(irn, n);
406
407         return irn;
408 }
409
410 ir_node *be_new_IncSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *mem, unsigned offset, be_stack_dir_t dir)
411 {
412         be_stack_attr_t *a;
413         ir_node *irn;
414         ir_node *in[1];
415
416         in[0]     = old_sp;
417         in[1]     = mem;
418         irn       = new_ir_node(NULL, irg, bl, op_be_IncSP, sp->reg_class->mode, 2, in);
419         a         = init_node_attr(irn, 1);
420         a->dir    = dir;
421         a->offset = offset;
422
423         be_node_set_flags(irn, -1, arch_irn_flags_ignore);
424
425         /* Set output constraint to stack register. */
426         be_node_set_reg_class(irn, 0, sp->reg_class);
427         be_set_constr_single_reg(irn, -1, sp);
428         be_node_set_irn_reg(NULL, irn, sp);
429
430         return irn;
431 }
432
433 ir_node *be_new_AddSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *sz)
434 {
435         be_node_attr_t *a;
436         ir_node *irn;
437         ir_node *in[be_pos_AddSP_last];
438
439         in[be_pos_AddSP_old_sp] = old_sp;
440         in[be_pos_AddSP_size]   = sz;
441
442         irn      = new_ir_node(NULL, irg, bl, op_be_AddSP, mode_T, be_pos_AddSP_last, in);
443         a        = init_node_attr(irn, be_pos_AddSP_last);
444
445         be_node_set_flags(irn, OUT_POS(0), arch_irn_flags_ignore);
446
447         /* Set output constraint to stack register. */
448         be_set_constr_single_reg(irn, OUT_POS(0), sp);
449
450         return irn;
451 }
452
453 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)
454 {
455         be_node_attr_t *a;
456         ir_node *irn;
457         ir_node *in[3];
458
459         in[0]    = mem;
460         in[1]    = old_sp;
461         in[2]    = op;
462         irn      = new_ir_node(NULL, irg, bl, op_be_SetSP, get_irn_mode(old_sp), 3, in);
463         a        = init_node_attr(irn, 3);
464
465         be_node_set_flags(irn, OUT_POS(0), arch_irn_flags_ignore);
466
467         /* Set output constraint to stack register. */
468         be_set_constr_single_reg(irn, OUT_POS(0), sp);
469         be_node_set_reg_class(irn, 1, sp->reg_class);
470         be_node_set_reg_class(irn, 2, sp->reg_class);
471         be_node_set_irn_reg(NULL, irn, sp);
472
473         return irn;
474 }
475
476 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, entity *ent)
477 {
478         be_frame_attr_t *a;
479         ir_node *irn;
480         ir_node *in[1];
481
482         in[0] = frame_pointer;
483         irn = new_ir_node(NULL, irg, bl, op_be_StackParam, mode, 1, in);
484         a = init_node_attr(irn, 1);
485         a->ent = ent;
486
487         be_node_set_reg_class(irn, 0, cls_frame);
488         be_node_set_reg_class(irn, OUT_POS(0), cls);
489         return irn;
490 }
491
492 ir_node *be_new_RegParams(ir_graph *irg, ir_node *bl, int n_outs)
493 {
494         ir_node *irn;
495         ir_node *in[1];
496
497         irn = new_ir_node(NULL, irg, bl, op_be_RegParams, mode_T, 0, in);
498         init_node_attr(irn, n_outs);
499         return irn;
500 }
501
502 ir_node *be_new_FrameLoad(const arch_register_class_t *cls_frame, const arch_register_class_t *cls_data,
503                                                   ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *frame, entity *ent)
504 {
505         be_frame_attr_t *a;
506         ir_node *irn;
507         ir_node *in[2];
508
509         in[0]  = mem;
510         in[1]  = frame;
511         irn    = new_ir_node(NULL, irg, bl, op_be_FrameLoad, mode_T, 2, in);
512         a      = init_node_attr(irn, 3);
513         a->ent = ent;
514         a->offset = 0;
515         be_node_set_reg_class(irn, 1, cls_frame);
516         be_node_set_reg_class(irn, OUT_POS(pn_Load_res), cls_data);
517         return irn;
518 }
519
520 ir_node *be_new_FrameStore(const arch_register_class_t *cls_frame, const arch_register_class_t *cls_data,
521                                                    ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *frame, ir_node *data, entity *ent)
522 {
523         be_frame_attr_t *a;
524         ir_node *irn;
525         ir_node *in[3];
526
527         in[0]  = mem;
528         in[1]  = frame;
529         in[2]  = data;
530         irn    = new_ir_node(NULL, irg, bl, op_be_FrameStore, mode_T, 3, in);
531         a      = init_node_attr(irn, 3);
532         a->ent = ent;
533         a->offset = 0;
534         be_node_set_reg_class(irn, 1, cls_frame);
535         be_node_set_reg_class(irn, 2, cls_data);
536         return irn;
537 }
538
539 ir_node *be_new_FrameAddr(const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, entity *ent)
540 {
541         be_frame_attr_t *a;
542         ir_node *irn;
543         ir_node *in[1];
544
545         in[0]  = frame;
546         irn    = new_ir_node(NULL, irg, bl, op_be_FrameAddr, get_irn_mode(frame), 1, in);
547         a      = init_node_attr(irn, 1);
548         a->ent = ent;
549         a->offset = 0;
550         be_node_set_reg_class(irn, 0, cls_frame);
551         be_node_set_reg_class(irn, OUT_POS(0), cls_frame);
552         return irn;
553 }
554
555 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)
556 {
557         ir_node *irn;
558         ir_node **in = (ir_node **) alloca((n + 1) * sizeof(in[0]));
559
560         in[0] = src;
561         memcpy(&in[1], in_keep, n * sizeof(in[0]));
562         irn   = new_ir_node(NULL, irg, bl, op_be_CopyKeep, mode, n + 1, in);
563         init_node_attr(irn, n + 1);
564         be_node_set_reg_class(irn, OUT_POS(0), cls);
565         be_node_set_reg_class(irn, 0, cls);
566
567         return irn;
568 }
569
570 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)
571 {
572         ir_node *in[1];
573
574         in[0] = keep;
575         return be_new_CopyKeep(cls, irg, bl, src, 1, in, mode);
576 }
577
578 ir_node *be_new_Barrier(ir_graph *irg, ir_node *bl, int n, ir_node *in[])
579 {
580         ir_node *irn;
581
582         irn = new_ir_node(NULL, irg, bl, op_be_Barrier, mode_T, n, in);
583         init_node_attr(irn, n);
584         return irn;
585 }
586
587 int be_is_Spill         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Spill          ; }
588 int be_is_Reload        (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Reload         ; }
589 int be_is_Copy          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Copy           ; }
590 int be_is_Perm          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Perm           ; }
591 int be_is_Keep          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Keep           ; }
592 int be_is_Call          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Call           ; }
593 int be_is_Return        (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Return         ; }
594 int be_is_IncSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_IncSP          ; }
595 int be_is_SetSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_SetSP          ; }
596 int be_is_AddSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_AddSP          ; }
597 int be_is_RegParams     (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_RegParams      ; }
598 int be_is_StackParam    (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_StackParam     ; }
599 int be_is_FrameAddr     (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_FrameAddr      ; }
600 int be_is_FrameLoad     (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_FrameLoad      ; }
601 int be_is_FrameStore    (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_FrameStore     ; }
602 int be_is_Barrier       (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Barrier        ; }
603
604 int be_has_frame_entity(const ir_node *irn)
605 {
606         switch(be_get_irn_opcode(irn)) {
607         case beo_StackParam:
608         case beo_Spill:
609         case beo_Reload:
610         case beo_FrameStore:
611         case beo_FrameLoad:
612         case beo_FrameAddr:
613                 return 1;
614         default:
615                 return 0;
616         }
617 }
618
619 entity *be_get_frame_entity(const ir_node *irn)
620 {
621         if(be_has_frame_entity(irn)) {
622                 be_frame_attr_t *a = get_irn_attr(irn);
623                 return a->ent;
624         }
625         return NULL;
626 }
627
628 static void be_limited(void *data, bitset_t *bs)
629 {
630         be_req_t *req = data;
631
632         switch(req->kind) {
633         case be_req_kind_negate_old_limited:
634         case be_req_kind_old_limited:
635                 req->x.old_limited.old_limited(req->x.old_limited.old_limited_env, bs);
636                 if(req->kind == be_req_kind_negate_old_limited)
637                         bitset_flip_all(bs);
638                 break;
639         case be_req_kind_single_reg:
640                 bitset_clear_all(bs);
641                 bitset_set(bs, req->x.single_reg->index);
642                 break;
643         }
644 }
645
646 static INLINE be_req_t *get_req(ir_node *irn, int pos)
647 {
648         int idx           = pos < 0 ? -(pos + 1) : pos;
649         be_node_attr_t *a = get_irn_attr(irn);
650         be_reg_data_t *rd = &a->reg_data[idx];
651         be_req_t       *r = pos < 0 ? &rd->req : &rd->in_req;
652
653         assert(is_be_node(irn));
654         assert(!(pos >= 0) || pos < get_irn_arity(irn));
655         assert(!(pos < 0)  || -(pos + 1) <= a->max_reg_data);
656
657         return r;
658 }
659
660 void be_set_constr_single_reg(ir_node *irn, int pos, const arch_register_t *reg)
661 {
662         be_req_t *r = get_req(irn, pos);
663
664         r->kind            = be_req_kind_single_reg;
665         r->x.single_reg    = reg;
666         r->req.limited     = be_limited;
667         r->req.limited_env = r;
668         r->req.type        = arch_register_req_type_limited;
669         r->req.cls         = reg->reg_class;
670 }
671
672 void be_set_constr_limited(ir_node *irn, int pos, const arch_register_req_t *req)
673 {
674         be_req_t *r = get_req(irn, pos);
675
676         assert(arch_register_req_is(req, limited));
677
678         r->kind            = be_req_kind_old_limited;
679         r->req.limited     = be_limited;
680         r->req.limited_env = r;
681         r->req.type        = arch_register_req_type_limited;
682         r->req.cls         = req->cls;
683
684         r->x.old_limited.old_limited     = req->limited;
685         r->x.old_limited.old_limited_env = req->limited_env;
686 }
687
688 void be_node_set_flags(ir_node *irn, int pos, arch_irn_flags_t flags)
689 {
690         be_req_t *r = get_req(irn, pos);
691         r->flags = flags;
692 }
693
694 void be_node_set_reg_class(ir_node *irn, int pos, const arch_register_class_t *cls)
695 {
696         be_req_t *r = get_req(irn, pos);
697         r->req.cls = cls;
698         if(r->req.type == arch_register_req_type_none)
699                 r->req.type = arch_register_req_type_normal;
700 }
701
702 void be_node_set_req_type(ir_node *irn, int pos, arch_register_req_type_t type)
703 {
704         be_req_t *r = get_req(irn, pos);
705         r->req.type = type;
706 }
707
708 void be_set_IncSP_offset(ir_node *irn, unsigned offset)
709 {
710         be_stack_attr_t *a = get_irn_attr(irn);
711         assert(be_is_IncSP(irn));
712         a->offset = offset;
713 }
714
715 unsigned be_get_IncSP_offset(const ir_node *irn)
716 {
717         be_stack_attr_t *a = get_irn_attr(irn);
718         assert(be_is_IncSP(irn));
719         return a->offset;
720 }
721
722 void be_set_IncSP_direction(ir_node *irn, be_stack_dir_t dir)
723 {
724         be_stack_attr_t *a = get_irn_attr(irn);
725         assert(be_is_IncSP(irn));
726         a->dir = dir;
727 }
728
729 be_stack_dir_t be_get_IncSP_direction(const ir_node *irn)
730 {
731         be_stack_attr_t *a = get_irn_attr(irn);
732         assert(be_is_IncSP(irn));
733         return a->dir;
734 }
735
736 void be_set_Spill_entity(ir_node *irn, entity *ent)
737 {
738         be_spill_attr_t *a = get_irn_attr(irn);
739         assert(be_is_Spill(irn));
740         a->frame_attr.ent = ent;
741 }
742
743 static ir_node *find_a_spill_walker(ir_node *irn, unsigned visited_nr)
744 {
745         unsigned nr = get_irn_visited(irn);
746
747         set_irn_visited(irn, visited_nr);
748
749         if(is_Phi(irn)) {
750                 int i, n;
751                 if(nr < visited_nr) {
752                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
753                                 ir_node *n = find_a_spill_walker(get_irn_n(irn, i), visited_nr);
754                                 if(n != NULL)
755                                         return n;
756                         }
757                 }
758         }
759
760         else if(be_get_irn_opcode(irn) == beo_Spill)
761                 return irn;
762
763         return NULL;
764 }
765
766 ir_node *be_get_Spill_context(const ir_node *irn) {
767         const be_spill_attr_t *a = get_irn_attr(irn);
768         assert(be_is_Spill(irn));
769         return a->spill_ctx;
770 }
771
772 /**
773  * Finds a spill for a reload.
774  * If the reload is directly using the spill, this is simple,
775  * else we perform DFS from the reload (over all PhiMs) and return
776  * the first spill node we find.
777  */
778 static INLINE ir_node *find_a_spill(const ir_node *irn)
779 {
780         ir_graph *irg       = get_irn_irg(irn);
781         unsigned visited_nr = get_irg_visited(irg) + 1;
782
783         assert(be_is_Reload(irn));
784         set_irg_visited(irg, visited_nr);
785         return find_a_spill_walker(be_get_Reload_mem(irn), visited_nr);
786 }
787
788 entity *be_get_spill_entity(const ir_node *irn)
789 {
790         switch(be_get_irn_opcode(irn)) {
791         case beo_Reload:
792                 {
793                         ir_node *spill = find_a_spill(irn);
794                         return be_get_spill_entity(spill);
795                 }
796         case beo_Spill:
797                 {
798                         be_spill_attr_t *a = get_irn_attr(irn);
799                         return a->frame_attr.ent;
800                 }
801         default:
802                 assert(0 && "Must give spill/reload node");
803                 break;
804         }
805
806         return NULL;
807 }
808
809 static void link_reload_walker(ir_node *irn, void *data)
810 {
811         ir_node **root = (ir_node **) data;
812         if(be_is_Reload(irn)) {
813                 set_irn_link(irn, *root);
814                 *root = irn;
815         }
816 }
817
818 void be_copy_entities_to_reloads(ir_graph *irg)
819 {
820         ir_node *irn = NULL;
821         irg_walk_graph(irg, link_reload_walker, NULL, (void *) &irn);
822
823         while(irn) {
824                 be_frame_attr_t *a = get_irn_attr(irn);
825                 entity *ent        = be_get_spill_entity(irn);
826                 a->ent = ent;
827                 irn    = get_irn_link(irn);
828         }
829 }
830
831 ir_node *be_spill(const arch_env_t *arch_env, ir_node *irn, ir_node *ctx)
832 {
833         ir_node *bl     = get_nodes_block(irn);
834         ir_graph *irg   = get_irn_irg(bl);
835         ir_node *frame  = get_irg_frame(irg);
836         ir_node *insert = bl;
837         ir_node *spill;
838
839         const arch_register_class_t *cls       = arch_get_irn_reg_class(arch_env, irn, -1);
840         const arch_register_class_t *cls_frame = arch_get_irn_reg_class(arch_env, frame, -1);
841
842         spill = be_new_Spill(cls, cls_frame, irg, bl, frame, irn, ctx);
843
844         /*
845          * search the right insertion point. a spill of a phi cannot be put
846          * directly after the phi, if there are some phis behind the one which
847          * is spilled. Also, a spill of a Proj must be after all Projs of the
848          * same tuple node.
849          *
850          * Here's one special case:
851          * If the spill is in the start block, the spill must be after the frame
852          * pointer is set up. This is done by setting insert to the end of the block
853          * which is its default initialization (see above).
854          */
855
856         insert = sched_next(irn);
857         if(bl == get_irg_start_block(irg) && insert != bl && sched_get_time_step(frame) >= sched_get_time_step(insert))
858                 insert = sched_next(frame);
859
860         while((is_Phi(insert) || is_Proj(insert)) && !sched_is_end(insert))
861                 insert = sched_next(insert);
862
863         sched_add_before(insert, spill);
864         return spill;
865 }
866
867 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)
868 {
869         ir_node *reload;
870
871         ir_node *bl    = is_Block(insert) ? insert : get_nodes_block(insert);
872         ir_graph *irg  = get_irn_irg(bl);
873         ir_node *frame = get_irg_frame(irg);
874         const arch_register_class_t *cls_frame = arch_get_irn_reg_class(arch_env, frame, -1);
875
876         assert(be_is_Spill(spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M));
877
878         reload = be_new_Reload(cls, cls_frame, irg, bl, frame, spill, mode);
879
880         if(is_Block(insert)) {
881                 insert = sched_skip(insert, 0, sched_skip_cf_predicator, (void *) arch_env);
882                 sched_add_after(insert, reload);
883         }
884
885         else
886                 sched_add_before(insert, reload);
887
888         return reload;
889 }
890
891 /*
892   ____              ____
893  |  _ \ ___  __ _  |  _ \ ___  __ _ ___
894  | |_) / _ \/ _` | | |_) / _ \/ _` / __|
895  |  _ <  __/ (_| | |  _ <  __/ (_| \__ \
896  |_| \_\___|\__, | |_| \_\___|\__, |___/
897             |___/                |_|
898
899 */
900
901
902 static void *put_out_reg_req(arch_register_req_t *req, const ir_node *irn, int out_pos)
903 {
904         const be_node_attr_t *a = get_irn_attr(irn);
905
906         if(out_pos < a->max_reg_data) {
907                 memcpy(req, &a->reg_data[out_pos].req, sizeof(req[0]));
908
909                 if(be_is_Copy(irn)) {
910                         req->type |= arch_register_req_type_should_be_same;
911                         req->other_same = get_irn_n(irn, be_pos_Copy_orig);
912                 }
913         }
914         else {
915                 req->type = arch_register_req_type_none;
916                 req->cls  = NULL;
917         }
918
919         return req;
920 }
921
922 static void *put_in_reg_req(arch_register_req_t *req, const ir_node *irn, int pos)
923 {
924         const be_node_attr_t *a = get_irn_attr(irn);
925
926         if(pos < get_irn_arity(irn) && pos < a->max_reg_data)
927                 memcpy(req, &a->reg_data[pos].in_req, sizeof(req[0]));
928         else {
929                 req->type = arch_register_req_type_none;
930                 req->cls  = NULL;
931         }
932
933         return req;
934 }
935
936 static const arch_register_req_t *
937 be_node_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos)
938 {
939         int out_pos = pos;
940
941         if(pos < 0) {
942                 if(get_irn_mode(irn) == mode_T)
943                         return NULL;
944
945                 out_pos = redir_proj((const ir_node **) &irn, pos);
946                 assert(is_be_node(irn));
947                 return put_out_reg_req(req, irn, out_pos);
948         }
949
950         else {
951                 return is_be_node(irn) ? put_in_reg_req(req, irn, pos) : NULL;
952         }
953
954         return req;
955 }
956
957 const arch_register_t *
958 be_node_get_irn_reg(const void *_self, const ir_node *irn)
959 {
960         int out_pos;
961         be_node_attr_t *a;
962
963         out_pos = redir_proj((const ir_node **) &irn, -1);
964         a       = get_irn_attr(irn);
965
966         assert(is_be_node(irn));
967         assert(out_pos < a->max_reg_data && "position too high");
968
969         return a->reg_data[out_pos].reg;
970 }
971
972 static arch_irn_class_t be_node_classify(const void *_self, const ir_node *irn)
973 {
974         redir_proj((const ir_node **) &irn, -1);
975
976         switch(be_get_irn_opcode(irn)) {
977 #define XXX(a,b) case beo_ ## a: return arch_irn_class_ ## b;
978                 XXX(Spill, spill)
979                 XXX(Reload, reload)
980                 XXX(Perm, perm)
981                 XXX(Copy, copy)
982 #undef XXX
983                 default:
984                 return 0;
985         }
986
987         return 0;
988 }
989
990 static arch_irn_flags_t be_node_get_flags(const void *_self, const ir_node *irn)
991 {
992         int out_pos;
993         be_node_attr_t *a;
994
995         out_pos = redir_proj((const ir_node **) &irn, -1);
996         a       = get_irn_attr(irn);
997
998         assert(is_be_node(irn));
999         assert(out_pos < a->max_reg_data && "position too high");
1000
1001         return a->reg_data[out_pos].req.flags;
1002 }
1003
1004 static entity *be_node_get_frame_entity(const void *self, const ir_node *irn)
1005 {
1006         return be_get_frame_entity(irn);
1007 }
1008
1009 static void be_node_set_frame_offset(const void *self, ir_node *irn, int offset)
1010 {
1011         if(be_has_frame_entity(irn)) {
1012                 be_frame_attr_t *a = get_irn_attr(irn);
1013                 a->offset = offset;
1014         }
1015 }
1016
1017 /*
1018   ___ ____  _   _   _   _                 _ _
1019  |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1020   | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1021   | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1022  |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1023
1024 */
1025
1026 static const arch_irn_ops_if_t be_node_irn_ops_if = {
1027         be_node_get_irn_reg_req,
1028         be_node_set_irn_reg,
1029         be_node_get_irn_reg,
1030         be_node_classify,
1031         be_node_get_flags,
1032         be_node_get_frame_entity,
1033         be_node_set_frame_offset
1034 };
1035
1036 static const arch_irn_ops_t be_node_irn_ops = {
1037         &be_node_irn_ops_if
1038 };
1039
1040 const void *be_node_get_irn_ops(const arch_irn_handler_t *self, const ir_node *irn)
1041 {
1042         redir_proj((const ir_node **) &irn, -1);
1043         return is_be_node(irn) ? &be_node_irn_ops : NULL;
1044 }
1045
1046 const arch_irn_handler_t be_node_irn_handler = {
1047         be_node_get_irn_ops
1048 };
1049
1050 /*
1051   ____  _     _   ___ ____  _   _   _   _                 _ _
1052  |  _ \| |__ (_) |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1053  | |_) | '_ \| |  | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1054  |  __/| | | | |  | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1055  |_|   |_| |_|_| |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1056
1057 */
1058
1059 typedef struct {
1060         arch_irn_handler_t irn_handler;
1061         arch_irn_ops_t     irn_ops;
1062         const arch_env_t   *arch_env;
1063         pmap               *regs;
1064 } phi_handler_t;
1065
1066 #define get_phi_handler_from_handler(h)  container_of(h, phi_handler_t, irn_handler)
1067 #define get_phi_handler_from_ops(h)      container_of(h, phi_handler_t, irn_ops)
1068
1069 static const void *phi_get_irn_ops(const arch_irn_handler_t *handler, const ir_node *irn)
1070 {
1071         const phi_handler_t *h = get_phi_handler_from_handler(handler);
1072         return is_Phi(irn) && mode_is_datab(get_irn_mode(irn)) ? &h->irn_ops : NULL;
1073 }
1074
1075 /**
1076  * Get register class of a Phi.
1077  *
1078  */
1079 static const arch_register_req_t *get_Phi_reg_req_recursive(const phi_handler_t *h, arch_register_req_t *req, const ir_node *phi, pset **visited)
1080 {
1081         int n = get_irn_arity(phi);
1082         ir_node *op;
1083         int i;
1084
1085         if(*visited && pset_find_ptr(*visited, phi))
1086                 return NULL;
1087
1088         for(i = 0; i < n; ++i) {
1089                 op = get_irn_n(phi, i);
1090                 if(!is_Phi(op))
1091                         return arch_get_register_req(h->arch_env, req, op, BE_OUT_POS(0));
1092         }
1093
1094         /*
1095         The operands of that Phi were all Phis themselves.
1096         We have to start a DFS for a non-Phi argument now.
1097         */
1098         if(!*visited)
1099                 *visited = pset_new_ptr(16);
1100
1101         pset_insert_ptr(*visited, phi);
1102
1103         for(i = 0; i < n; ++i) {
1104                 op = get_irn_n(phi, i);
1105                 if(get_Phi_reg_req_recursive(h, req, op, visited))
1106                         return req;
1107         }
1108
1109         return NULL;
1110 }
1111
1112 static const arch_register_req_t *phi_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos)
1113 {
1114         phi_handler_t *phi_handler = get_phi_handler_from_ops(self);
1115         pset *visited              = NULL;
1116
1117         get_Phi_reg_req_recursive(phi_handler, req, irn, &visited);
1118         /* Set the requirements type to normal, since an operand of the Phi could have had constraints. */
1119         req->type = arch_register_req_type_normal;
1120         if(visited)
1121                 del_pset(visited);
1122
1123         return req;
1124 }
1125
1126 static void phi_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg)
1127 {
1128         phi_handler_t *h = get_phi_handler_from_ops(self);
1129         pmap_insert(h->regs, irn, (void *) reg);
1130 }
1131
1132 static const arch_register_t *phi_get_irn_reg(const void *self, const ir_node *irn)
1133 {
1134         phi_handler_t *h = get_phi_handler_from_ops(self);
1135         return pmap_get(h->regs, (void *) irn);
1136 }
1137
1138 static arch_irn_class_t phi_classify(const void *_self, const ir_node *irn)
1139 {
1140         return arch_irn_class_normal;
1141 }
1142
1143 static arch_irn_flags_t phi_get_flags(const void *_self, const ir_node *irn)
1144 {
1145         return arch_irn_flags_none;
1146 }
1147
1148 static entity *phi_get_frame_entity(const void *_self, const ir_node *irn)
1149 {
1150         return NULL;
1151 }
1152
1153 static void phi_set_frame_offset(const void *_self, ir_node *irn, int bias)
1154 {
1155 }
1156
1157 static const arch_irn_ops_if_t phi_irn_ops = {
1158         phi_get_irn_reg_req,
1159         phi_set_irn_reg,
1160         phi_get_irn_reg,
1161         phi_classify,
1162         phi_get_flags,
1163         phi_get_frame_entity,
1164         phi_set_frame_offset
1165 };
1166
1167 static const arch_irn_handler_t phi_irn_handler = {
1168         phi_get_irn_ops
1169 };
1170
1171 arch_irn_handler_t *be_phi_handler_new(const arch_env_t *arch_env)
1172 {
1173         phi_handler_t *h           = xmalloc(sizeof(h[0]));
1174         h->irn_handler.get_irn_ops = phi_get_irn_ops;
1175         h->irn_ops.impl            = &phi_irn_ops;
1176         h->arch_env                = arch_env;
1177         h->regs                    = pmap_create();
1178         return (arch_irn_handler_t *) h;
1179 }
1180
1181 void be_phi_handler_free(arch_irn_handler_t *handler)
1182 {
1183         phi_handler_t *h = (void *) handler;
1184         pmap_destroy(h->regs);
1185         free(handler);
1186 }
1187
1188 const void *be_phi_get_irn_ops(const arch_irn_handler_t *self, const ir_node *irn)
1189 {
1190         phi_handler_t *phi_handler = get_phi_handler_from_handler(self);
1191         return is_Phi(irn) ? &phi_handler->irn_ops : NULL;
1192 }
1193
1194 void be_phi_handler_reset(arch_irn_handler_t *handler)
1195 {
1196         phi_handler_t *h = get_phi_handler_from_handler(handler);
1197         if(h->regs)
1198                 pmap_destroy(h->regs);
1199         h->regs = pmap_create();
1200 }
1201
1202
1203 /*
1204   _   _           _        ____                        _
1205  | \ | | ___   __| | ___  |  _ \ _   _ _ __ ___  _ __ (_)_ __   __ _
1206  |  \| |/ _ \ / _` |/ _ \ | | | | | | | '_ ` _ \| '_ \| | '_ \ / _` |
1207  | |\  | (_) | (_| |  __/ | |_| | |_| | | | | | | |_) | | | | | (_| |
1208  |_| \_|\___/ \__,_|\___| |____/ \__,_|_| |_| |_| .__/|_|_| |_|\__, |
1209                                                 |_|            |___/
1210 */
1211
1212 /**
1213  * Dumps a register requirement to a file.
1214  */
1215 static void dump_node_req(FILE *f, int idx, be_req_t *req)
1216 {
1217         unsigned i;
1218         int did_something = 0;
1219         char buf[16];
1220         const char *prefix = buf;
1221
1222         snprintf(buf, sizeof(buf), "#%d ", idx);
1223
1224         if(req->flags != arch_irn_flags_none) {
1225                 fprintf(f, "%sflags: ", prefix);
1226                 prefix = "";
1227                 for(i = arch_irn_flags_none; i <= log2_ceil(arch_irn_flags_last); ++i) {
1228                         if(req->flags & (1 << i)) {
1229                                 fprintf(f, "%s%s", prefix, arch_irn_flag_str(1 << i));
1230                                 prefix = "|";
1231                         }
1232                 }
1233                 prefix = ", ";
1234                 did_something = 1;
1235         }
1236
1237         if(req->req.cls != 0) {
1238                 char tmp[256];
1239                 fprintf(f, prefix);
1240                 arch_register_req_format(tmp, sizeof(tmp), &req->req);
1241                 fprintf(f, "%s", tmp);
1242                 did_something = 1;
1243         }
1244
1245         if(did_something)
1246                 fprintf(f, "\n");
1247 }
1248
1249 /**
1250  * Dumps node register requirements to a file.
1251  */
1252 static void dump_node_reqs(FILE *f, ir_node *irn)
1253 {
1254         int i;
1255         be_node_attr_t *a = get_irn_attr(irn);
1256
1257         fprintf(f, "registers: \n");
1258         for(i = 0; i < a->max_reg_data; ++i) {
1259                 be_reg_data_t *rd = &a->reg_data[i];
1260                 if(rd->reg)
1261                         fprintf(f, "#%d: %s\n", i, rd->reg->name);
1262         }
1263
1264         fprintf(f, "in requirements\n");
1265         for(i = 0; i < a->max_reg_data; ++i) {
1266                 dump_node_req(f, i, &a->reg_data[i].in_req);
1267         }
1268
1269         fprintf(f, "\nout requirements\n");
1270         for(i = 0; i < a->max_reg_data; ++i) {
1271                 dump_node_req(f, i, &a->reg_data[i].req);
1272         }
1273 }
1274
1275 /**
1276  * ir_op-Operation: dump a be node to file
1277  */
1278 static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
1279 {
1280         be_node_attr_t *at = get_irn_attr(irn);
1281
1282         assert(is_be_node(irn));
1283
1284         switch(reason) {
1285                 case dump_node_opcode_txt:
1286                         fprintf(f, get_op_name(get_irn_op(irn)));
1287                         break;
1288                 case dump_node_mode_txt:
1289                         fprintf(f, get_mode_name(get_irn_mode(irn)));
1290                         break;
1291                 case dump_node_nodeattr_txt:
1292                         break;
1293                 case dump_node_info_txt:
1294                         dump_node_reqs(f, irn);
1295
1296                         if(be_has_frame_entity(irn)) {
1297                                 be_frame_attr_t *a = (be_frame_attr_t *) at;
1298                                 if (a->ent)
1299                                         ir_fprintf(f, "frame entity: %+F offset %x (%d)\n", a->ent, a->offset, a->offset);
1300
1301                         }
1302
1303                         switch(be_get_irn_opcode(irn)) {
1304                         case beo_Spill:
1305                                 {
1306                                         be_spill_attr_t *a = (be_spill_attr_t *) at;
1307                                         ir_fprintf(f, "spill context: %+F\n", a->spill_ctx);
1308                                 }
1309                                 break;
1310
1311                         case beo_IncSP:
1312                                 {
1313                                         be_stack_attr_t *a = (be_stack_attr_t *) at;
1314                                         fprintf(f, "offset: %u\n", a->offset);
1315                                         fprintf(f, "direction: %s\n", a->dir == be_stack_dir_expand ? "expand" : "shrink");
1316                                 }
1317                                 break;
1318                         default:
1319                                 break;
1320                         }
1321         }
1322
1323         return 0;
1324 }
1325
1326 /**
1327  * ir_op-Operation:
1328  * Copies the backend specific attributes from old node to new node.
1329  */
1330 static void copy_attr(const ir_node *old_node, ir_node *new_node)
1331 {
1332         be_node_attr_t *old_attr = get_irn_attr(old_node);
1333         be_node_attr_t *new_attr = get_irn_attr(new_node);
1334         int i;
1335
1336         assert(is_be_node(old_node));
1337         assert(is_be_node(new_node));
1338
1339         memcpy(new_attr, old_attr, get_op_attr_size(get_irn_op(old_node)));
1340         new_attr->reg_data = NULL;
1341
1342         if(new_attr->max_reg_data > 0) {
1343                 new_attr->reg_data = NEW_ARR_D(be_reg_data_t, get_irg_obstack(get_irn_irg(new_node)), new_attr->max_reg_data);
1344                 memcpy(new_attr->reg_data, old_attr->reg_data, new_attr->max_reg_data * sizeof(be_reg_data_t));
1345
1346                 for(i = 0; i < old_attr->max_reg_data; ++i) {
1347                         be_req_t *r;
1348
1349                         r = &new_attr->reg_data[i].req;
1350                         r->req.limited_env = r;
1351
1352                         r = &new_attr->reg_data[i].in_req;
1353                         r->req.limited_env = r;
1354                 }
1355         }
1356 }
1357
1358 static const ir_op_ops be_node_op_ops = {
1359         NULL,
1360         NULL,
1361         NULL,
1362         NULL,
1363         NULL,
1364         copy_attr,
1365         NULL,
1366         NULL,
1367         NULL,
1368         NULL,
1369         NULL,
1370         dump_node,
1371         NULL
1372 };