e61ef5b61ca1eb16e6f3c1d49e3ba5fb54342397
[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 provdies 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
27 #include "irop_t.h"
28 #include "irmode_t.h"
29 #include "irnode_t.h"
30 #include "ircons_t.h"
31 #include "irprintf.h"
32
33 #include "be_t.h"
34 #include "belive_t.h"
35 #include "besched_t.h"
36 #include "benode_t.h"
37
38 #include "beirgmod.h"
39
40 /* Sometimes we want to put const nodes into get_irn_generic_attr ... */
41 #define get_irn_attr(irn) get_irn_generic_attr((ir_node *) (irn))
42
43 static unsigned be_node_tag = FOURCC('B', 'E', 'N', 'O');
44
45 typedef enum _node_kind_t {
46         node_kind_spill,
47         node_kind_reload,
48         node_kind_perm,
49         node_kind_copy,
50         node_kind_kill,
51         node_kind_last
52 } node_kind_t;
53
54 typedef struct {
55         node_kind_t kind;
56         const arch_register_class_t *cls;
57         ir_op *op;
58         int n_pos;
59         int *pos;
60 } be_op_t;
61
62 typedef enum {
63         be_req_kind_old_limited,
64         be_req_kind_negate_old_limited,
65         be_req_kind_single_reg
66 } be_req_kind_t;
67
68 typedef struct {
69         arch_register_req_t req;
70         be_req_kind_t       kind;
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 typedef struct {
88         int                         max_reg_data;
89         arch_irn_flags_t            flags;
90         const arch_register_class_t *cls;
91         be_reg_data_t               *reg_data;
92 } be_node_attr_t;
93
94 typedef struct {
95         be_node_attr_t node_attr;
96         ir_node *spill_ctx;  /**< The node in whose context this spill was introduced. */
97         entity *ent;     /**< The entity in the stack frame the spill writes to. */
98 } be_spill_attr_t;
99
100 typedef struct {
101         be_node_attr_t node_attr;
102         int offset;           /**< The offset by which the stack shall be increased/decreased. */
103         be_stack_dir_t dir;   /**< The direction in which the stack shall be modified (along or in the other direction). */
104 } be_stack_attr_t;
105
106 static ir_op *op_Spill;
107 static ir_op *op_Reload;
108 static ir_op *op_Perm;
109 static ir_op *op_Copy;
110 static ir_op *op_Keep;
111 static ir_op *op_Call;
112 static ir_op *op_IncSP;
113 static ir_op *op_AddSP;
114 static ir_op *op_RegParams;
115 static ir_op *op_StackParam;
116 static ir_op *op_NoReg;
117
118 static int beo_base = -1;
119
120 static const ir_op_ops be_node_op_ops;
121
122 #define N   irop_flag_none
123 #define L   irop_flag_labeled
124 #define C   irop_flag_commutative
125 #define X   irop_flag_cfopcode
126 #define I   irop_flag_ip_cfopcode
127 #define F   irop_flag_fragile
128 #define Y   irop_flag_forking
129 #define H   irop_flag_highlevel
130 #define c   irop_flag_constlike
131 #define K   irop_flag_keep
132
133 void be_node_init(void) {
134         static int inited = 0;
135
136         if(inited)
137                 return;
138
139         inited = 1;
140
141         /* Acquire all needed opcodes. */
142         beo_base = get_next_ir_opcodes(beo_Last - 1);
143
144         op_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);
145         op_Reload     = new_ir_op(beo_base + beo_Reload,     "Reload",     op_pin_state_mem_pinned, N, oparity_zero,     0, sizeof(be_node_attr_t),  &be_node_op_ops);
146         op_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);
147         op_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);
148         op_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);
149         op_NoReg      = new_ir_op(beo_base + beo_NoReg,      "NoReg",      op_pin_state_floats,     N, oparity_zero,     0, sizeof(be_node_attr_t),  &be_node_op_ops);
150         op_Call       = new_ir_op(beo_base + beo_Call,       "Call",       op_pin_state_pinned,     N, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
151         op_AddSP      = new_ir_op(beo_base + beo_AddSP,      "AddSP",      op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_stack_attr_t), &be_node_op_ops);
152         op_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);
153         op_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);
154         op_StackParam = new_ir_op(beo_base + beo_StackParam, "StackParam", op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_stack_attr_t), &be_node_op_ops);
155
156         set_op_tag(op_Spill,      &be_node_tag);
157         set_op_tag(op_Reload,     &be_node_tag);
158         set_op_tag(op_Perm,       &be_node_tag);
159         set_op_tag(op_Copy,       &be_node_tag);
160         set_op_tag(op_Keep,       &be_node_tag);
161         set_op_tag(op_NoReg,      &be_node_tag);
162         set_op_tag(op_Call,       &be_node_tag);
163         set_op_tag(op_AddSP,      &be_node_tag);
164         set_op_tag(op_IncSP,      &be_node_tag);
165         set_op_tag(op_RegParams,  &be_node_tag);
166         set_op_tag(op_StackParam, &be_node_tag);
167 }
168
169 static void *init_node_attr(ir_node* irn, const arch_register_class_t *cls, ir_graph *irg, int max_reg_data)
170 {
171         be_node_attr_t *a = get_irn_attr(irn);
172
173         a->max_reg_data = max_reg_data;
174         a->flags        = arch_irn_flags_none;
175         a->cls          = cls;
176         a->reg_data     = NULL;
177
178         if(max_reg_data > 0) {
179                 int i;
180
181                 a->reg_data = NEW_ARR_D(be_reg_data_t, get_irg_obstack(irg), max_reg_data);
182                 memset(a->reg_data, 0, max_reg_data * sizeof(a->reg_data[0]));
183                 for(i = 0; i < max_reg_data; ++i) {
184                         a->reg_data[i].req.req.cls  = cls;
185                         a->reg_data[i].req.req.type = arch_register_req_type_normal;
186                 }
187         }
188
189         return a;
190 }
191
192 static INLINE int is_be_node(const ir_node *irn)
193 {
194         return get_op_tag(get_irn_op(irn)) == &be_node_tag;
195 }
196
197 be_opcode_t get_irn_be_opcode(const ir_node *irn)
198 {
199         return is_be_node(irn) ? get_irn_opcode(irn) - beo_base : beo_NoBeOp;
200 }
201
202 static int redir_proj(const ir_node **node, int pos)
203 {
204         const ir_node *n = *node;
205
206         if(is_Proj(n)) {
207                 assert(pos == -1 && "Illegal pos for a Proj");
208                 *node = get_Proj_pred(n);
209                 return get_Proj_proj(n);
210         }
211
212         return 0;
213 }
214
215 static void
216 be_node_set_irn_reg(const void *_self, ir_node *irn, const arch_register_t *reg)
217 {
218         int out_pos;
219         be_node_attr_t *a;
220
221         out_pos = redir_proj((const ir_node **) &irn, -1);
222         a       = get_irn_attr(irn);
223
224         assert(is_be_node(irn));
225         assert(out_pos < a->max_reg_data && "position too high");
226         a->reg_data[out_pos].reg = reg;
227 }
228
229
230 ir_node *be_new_Spill(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *to_spill, ir_node *ctx)
231 {
232         be_spill_attr_t *a;
233         ir_node *in[1];
234         ir_node *res;
235
236         in[0] = to_spill;
237         res   = new_ir_node(NULL, irg, bl, op_Spill, mode_M, 1, in);
238         a     = init_node_attr(res, cls, irg, 0);
239         a->ent       = NULL;
240         a->spill_ctx = ctx;
241         return res;
242 }
243
244 ir_node *be_new_Reload(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_mode *mode, ir_node *mem)
245 {
246         ir_node *in[1];
247         ir_node *res;
248
249         in[0] = mem;
250         res   = new_ir_node(NULL, irg, bl, op_Reload, mode, 1, in);
251         init_node_attr(res, cls, irg, 1);
252         return res;
253 }
254
255 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
256 {
257         ir_node *irn = new_ir_node(NULL, irg, bl, op_Perm, mode_T, n, in);
258         init_node_attr(irn, cls, irg, n);
259         return irn;
260 }
261
262 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *op)
263 {
264         ir_node *in[1];
265         ir_node *res;
266
267         in[0] = op;
268         res   = new_ir_node(NULL, irg, bl, op_Copy, get_irn_mode(op), 1, in);
269         init_node_attr(res, cls, irg, 1);
270         return res;
271 }
272
273 ir_node *be_new_Keep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int n, ir_node *in[])
274 {
275         ir_node *irn;
276
277         irn = new_ir_node(NULL, irg, bl, op_Keep, mode_ANY, n, in);
278         init_node_attr(irn, cls, irg, 0);
279         keep_alive(irn);
280         return irn;
281 }
282
283 ir_node *be_new_Call(ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *sp, ir_node *ptr, int n_outs, int n, ir_node *in[])
284 {
285         int real_n = 3 + n;
286         ir_node *irn;
287         ir_node **real_in;
288
289         real_in = malloc(sizeof(real_in[0]) * (real_n));
290
291         real_in[0] = mem;
292         real_in[1] = sp;
293         real_in[2] = ptr;
294         memcpy(&real_in[3], in, n * sizeof(in[0]));
295
296         irn = new_ir_node(NULL, irg, bl, op_Call, mode_T, real_n, real_in);
297         init_node_attr(irn, NULL, irg, (n_outs > real_n ? n_outs : real_n));
298         return irn;
299 }
300
301 ir_node *be_new_IncSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, unsigned offset, be_stack_dir_t dir)
302 {
303         be_stack_attr_t *a;
304         ir_node *irn;
305         ir_node *in[1];
306
307         in[0]     = old_sp;
308         irn       = new_ir_node(NULL, irg, bl, op_IncSP, sp->reg_class->mode, 1, in);
309         a         = init_node_attr(irn, sp->reg_class, irg, 1);
310         a->dir    = dir;
311         a->offset = offset;
312
313         a->node_attr.flags |= arch_irn_flags_ignore;
314
315         /* Set output constraint to stack register. */
316         be_set_constr_single_reg(irn, -1, sp);
317         be_node_set_irn_reg(NULL, irn, sp);
318
319         return irn;
320 }
321
322 ir_node *be_new_AddSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *op)
323 {
324         be_node_attr_t *a;
325         ir_node *irn;
326         ir_node *in[2];
327
328         in[0]    = old_sp;
329         in[1]    = op;
330         irn      = new_ir_node(NULL, irg, bl, op_AddSP, sp->reg_class->mode, 2, in);
331         a        = init_node_attr(irn, sp->reg_class, irg, 1);
332         a->flags |= arch_irn_flags_ignore;
333
334         /* Set output constraint to stack register. */
335         be_set_constr_single_reg(irn, -1, sp);
336         be_node_set_irn_reg(NULL, irn, sp);
337
338         return irn;
339 }
340
341 ir_node *be_new_NoReg(const arch_register_t *reg, ir_graph *irg, ir_node *bl)
342 {
343         be_node_attr_t *a;
344         ir_node *irn;
345         ir_node *in[1];
346
347         irn = new_ir_node(NULL, irg, bl, op_NoReg, reg->reg_class->mode, 0, in);
348         a   = init_node_attr(irn, reg->reg_class, irg, 1);
349         a->flags |= arch_irn_flags_ignore;
350         be_set_constr_single_reg(irn, -1, reg);
351         be_node_set_irn_reg(NULL, irn, reg);
352         return irn;
353 }
354
355 ir_node *be_new_StackParam(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_mode *mode, ir_node *frame_pointer, unsigned offset)
356 {
357         be_stack_attr_t *a;
358         ir_node *irn;
359         ir_node *in[1];
360
361         in[0] = frame_pointer;
362         irn = new_ir_node(NULL, irg, bl, op_StackParam, mode, 1, in);
363         a = init_node_attr(irn, cls, irg, 1);
364         a->offset = offset;
365         return irn;
366 }
367
368 ir_node *be_new_RegParams(ir_graph *irg, ir_node *bl, int n_outs)
369 {
370         ir_node *irn;
371         ir_node *in[1];
372
373         irn = new_ir_node(NULL, irg, bl, op_RegParams, mode_T, 0, in);
374         init_node_attr(irn, NULL, irg, n_outs);
375         return irn;
376 }
377
378 int be_is_Spill         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Spill          ; }
379 int be_is_Reload        (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Reload         ; }
380 int be_is_Copy          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Copy           ; }
381 int be_is_Perm          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Perm           ; }
382 int be_is_Keep          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Keep           ; }
383 int be_is_Call          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Call           ; }
384 int be_is_IncSP         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_IncSP          ; }
385 int be_is_AddSP         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_AddSP          ; }
386 int be_is_RegParams     (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_RegParams      ; }
387 int be_is_StackParam    (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_StackParam     ; }
388 int be_is_NoReg         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_NoReg          ; }
389
390 static void be_limited(void *data, bitset_t *bs)
391 {
392         be_req_t *req = data;
393
394         switch(req->kind) {
395         case be_req_kind_negate_old_limited:
396         case be_req_kind_old_limited:
397                 req->x.old_limited.old_limited(req->x.old_limited.old_limited_env, bs);
398                 if(req->kind == be_req_kind_negate_old_limited)
399                         bitset_flip_all(bs);
400                 break;
401         case be_req_kind_single_reg:
402                 bitset_clear_all(bs);
403                 bitset_set(bs, req->x.single_reg->index);
404                 break;
405         }
406 }
407
408 void be_set_constr_single_reg(ir_node *irn, int pos, const arch_register_t *reg)
409 {
410         int idx           = pos < 0 ? -(pos - 1) : pos;
411         be_node_attr_t *a = get_irn_attr(irn);
412         be_reg_data_t *rd = &a->reg_data[idx];
413         be_req_t       *r = pos < 0 ? &rd->req : &rd->in_req;
414
415         assert(is_be_node(irn));
416         assert(!(pos >= 0) || pos < get_irn_arity(irn));
417         assert(!(pos < 0)  || -(pos + 1) <= a->max_reg_data);
418
419         r->kind            = be_req_kind_single_reg;
420         r->x.single_reg    = reg;
421         r->req.limited     = be_limited;
422         r->req.limited_env = r;
423         r->req.type        = arch_register_req_type_limited;
424         r->req.cls         = reg->reg_class;
425 }
426
427 void be_set_constr_limited(ir_node *irn, int pos, const arch_register_req_t *req)
428 {
429         int idx           = pos < 0 ? -(pos - 1) : pos;
430         be_node_attr_t *a = get_irn_attr(irn);
431         be_reg_data_t *rd = &a->reg_data[idx];
432         be_req_t       *r = pos < 0 ? &rd->req : &rd->in_req;
433
434         assert(is_be_node(irn));
435         assert(!(pos >= 0) || pos < get_irn_arity(irn));
436         assert(!(pos < 0)  || -(pos + 1) <= a->max_reg_data);
437         assert(arch_register_req_is(req, limited));
438
439         r->kind            = be_req_kind_old_limited;
440         r->req.limited     = be_limited;
441         r->req.limited_env = r;
442         r->req.type        = arch_register_req_type_limited;
443         r->req.cls         = req->cls;
444
445         r->x.old_limited.old_limited     = req->limited;
446         r->x.old_limited.old_limited_env = req->limited_env;
447 }
448
449 void be_set_IncSP_offset(ir_node *irn, unsigned offset)
450 {
451         be_stack_attr_t *a = get_irn_attr(irn);
452         assert(be_is_IncSP(irn));
453         a->offset = offset;
454 }
455
456 unsigned be_get_IncSP_offset(ir_node *irn)
457 {
458         be_stack_attr_t *a = get_irn_attr(irn);
459         assert(be_is_IncSP(irn));
460         return a->offset;
461 }
462
463 void be_set_IncSP_direction(ir_node *irn, be_stack_dir_t dir)
464 {
465         be_stack_attr_t *a = get_irn_attr(irn);
466         assert(be_is_IncSP(irn));
467         a->dir = dir;
468 }
469
470 be_stack_dir_t be_get_IncSP_direction(ir_node *irn)
471 {
472         be_stack_attr_t *a = get_irn_attr(irn);
473         assert(be_is_IncSP(irn));
474         return a->dir;
475 }
476
477 void be_set_Spill_entity(ir_node *irn, entity *ent)
478 {
479         be_spill_attr_t *a = get_irn_attr(irn);
480         assert(be_is_Spill(irn));
481         a->ent = ent;
482 }
483
484 static ir_node *find_a_spill_walker(ir_node *irn, unsigned visited_nr)
485 {
486         if(get_irn_visited(irn) < visited_nr) {
487                 set_irn_visited(irn, visited_nr);
488
489                 if(is_Phi(irn)) {
490                         int i, n;
491                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
492                                 ir_node *n = find_a_spill_walker(get_irn_n(irn, i), visited_nr);
493                                 if(n != NULL)
494                                         return n;
495                         }
496                 }
497
498                 else if(get_irn_be_opcode(irn) == beo_Spill)
499                         return irn;
500         }
501
502         return NULL;
503 }
504
505 ir_node *be_get_Spill_context(const ir_node *irn) {
506         const be_spill_attr_t *a = get_irn_attr(irn);
507         assert(be_is_Spill(irn));
508         return a->spill_ctx;
509 }
510
511 /**
512  * Finds a spill for a reload.
513  * If the reload is directly using the spill, this is simple,
514  * else we perform DFS from the reload (over all PhiMs) and return
515  * the first spill node we find.
516  */
517 static INLINE ir_node *find_a_spill(ir_node *irn)
518 {
519         ir_graph *irg       = get_irn_irg(irn);
520         unsigned visited_nr = get_irg_visited(irg) + 1;
521
522         assert(be_is_Reload(irn));
523         set_irg_visited(irg, visited_nr);
524         return find_a_spill_walker(irn, visited_nr);
525 }
526
527 entity *be_get_spill_entity(ir_node *irn)
528 {
529         int opc           = get_irn_opcode(irn);
530
531         switch(get_irn_be_opcode(irn)) {
532         case beo_Reload:
533                 return be_get_spill_entity(find_a_spill(irn));
534         case beo_Spill:
535                 {
536                         be_spill_attr_t *a = get_irn_attr(irn);
537                         return a->ent;
538                 }
539         default:
540                 assert(0 && "Must give spill/reload node");
541         }
542
543         return NULL;
544 }
545
546 ir_node *be_spill(const arch_env_t *arch_env, ir_node *irn, ir_node *ctx)
547 {
548         const arch_register_class_t *cls = arch_get_irn_reg_class(arch_env, irn, -1);
549
550         ir_node *bl    = get_nodes_block(irn);
551         ir_graph *irg  = get_irn_irg(bl);
552         ir_node *spill = be_new_Spill(cls, irg, bl, irn, ctx);
553         ir_node *insert;
554
555         /*
556          * search the right insertion point. a spill of a phi cannot be put
557          * directly after the phi, if there are some phis behind the one which
558          * is spilled.
559          */
560         insert = sched_next(irn);
561         while(is_Phi(insert) && !sched_is_end(insert))
562                 insert = sched_next(insert);
563
564         sched_add_before(insert, spill);
565         return spill;
566 }
567
568 ir_node *be_reload(const arch_env_t *arch_env,
569                                    const arch_register_class_t *cls,
570                                    ir_node *irn, int pos, ir_mode *mode, ir_node *spill)
571 {
572         ir_node *reload;
573
574         ir_node *bl   = get_nodes_block(irn);
575         ir_graph *irg = get_irn_irg(bl);
576
577         assert(be_is_Spill(spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M));
578
579         reload = be_new_Reload(cls, irg, bl, mode, spill);
580
581         set_irn_n(irn, pos, reload);
582         sched_add_before(irn, reload);
583         return reload;
584 }
585
586 static void *put_out_reg_req(arch_register_req_t *req, const ir_node *irn, int out_pos)
587 {
588         const be_node_attr_t *a = get_irn_attr(irn);
589
590         if(out_pos < a->max_reg_data)
591                 memcpy(req, &a->reg_data[out_pos].req, sizeof(req[0]));
592         else {
593                 req->type = arch_register_req_type_none;
594                 req->cls  = NULL;
595         }
596
597         return req;
598 }
599
600 static void *put_in_reg_req(arch_register_req_t *req, const ir_node *irn, int pos)
601 {
602         const be_node_attr_t *a = get_irn_attr(irn);
603         int n                   = get_irn_arity(irn);
604
605         if(pos < get_irn_arity(irn))
606                 memcpy(req, &a->reg_data[pos].in_req, sizeof(req[0]));
607         else {
608                 req->type = arch_register_req_type_none;
609                 req->cls  = NULL;
610         }
611
612         return req;
613 }
614
615 static const arch_register_req_t *
616 be_node_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos)
617 {
618         int out_pos = pos;
619
620         if(pos < 0) {
621                 if(get_irn_mode(irn) == mode_T)
622                         return NULL;
623
624                 out_pos = redir_proj((const ir_node **) &irn, pos);
625                 assert(is_be_node(irn));
626                 return put_out_reg_req(req, irn, out_pos);
627         }
628
629         else {
630                 return is_be_node(irn) ? put_in_reg_req(req, irn, pos) : NULL;
631         }
632
633         return req;
634 }
635
636 const arch_register_t *
637 be_node_get_irn_reg(const void *_self, const ir_node *irn)
638 {
639         int out_pos;
640         be_node_attr_t *a;
641
642         out_pos = redir_proj((const ir_node **) &irn, -1);
643         a       = get_irn_attr(irn);
644
645         assert(is_be_node(irn));
646         assert(out_pos < a->max_reg_data && "position too high");
647
648         return a->reg_data[out_pos].reg;
649 }
650
651 arch_irn_class_t be_node_classify(const void *_self, const ir_node *irn)
652 {
653         redir_proj((const ir_node **) &irn, -1);
654
655         switch(get_irn_be_opcode(irn)) {
656 #define XXX(a,b) case beo_ ## a: return arch_irn_class_ ## b;
657                 XXX(Spill, spill)
658                 XXX(Reload, reload)
659                 XXX(Perm, perm)
660                 XXX(Copy, copy)
661 #undef XXX
662                 default:
663                 return 0;
664         }
665
666         return 0;
667 }
668
669 arch_irn_flags_t be_node_get_flags(const void *_self, const ir_node *irn)
670 {
671         be_node_attr_t *a = get_irn_attr(irn);
672         return a->flags;
673 }
674
675 static const arch_irn_ops_if_t be_node_irn_ops_if = {
676         be_node_get_irn_reg_req,
677         be_node_set_irn_reg,
678         be_node_get_irn_reg,
679         be_node_classify,
680         be_node_get_flags,
681 };
682
683 static const arch_irn_ops_t be_node_irn_ops = {
684         &be_node_irn_ops_if
685 };
686
687 const void *be_node_get_arch_ops(const arch_irn_handler_t *self, const ir_node *irn)
688 {
689         redir_proj((const ir_node **) &irn, -1);
690         return is_be_node(irn) ? &be_node_irn_ops : NULL;
691 }
692
693 const arch_irn_handler_t be_node_irn_handler = {
694         be_node_get_arch_ops
695 };
696
697 static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
698 {
699         be_node_attr_t *at = get_irn_attr(irn);
700         int i;
701
702         assert(is_be_node(irn));
703
704         switch(reason) {
705                 case dump_node_opcode_txt:
706                         fprintf(f, get_op_name(get_irn_op(irn)));
707                         break;
708                 case dump_node_mode_txt:
709                         fprintf(f, get_mode_name(get_irn_mode(irn)));
710                         break;
711                 case dump_node_nodeattr_txt:
712                         break;
713                 case dump_node_info_txt:
714                         fprintf(f, "reg class: %s\n", at->cls ? at->cls->name : "n/a");
715                         for(i = 0; i < at->max_reg_data; ++i) {
716                                 const arch_register_t *reg = at->reg_data[i].reg;
717                                 fprintf(f, "reg #%d: %s\n", i, reg ? reg->name : "n/a");
718                         }
719
720                         switch(get_irn_be_opcode(irn)) {
721                         case beo_Spill:
722                                 {
723                                         be_spill_attr_t *a = (be_spill_attr_t *) at;
724
725                                         ir_fprintf(f, "spill context: %+F\n", a->spill_ctx);
726                                         if (a->ent) {
727                                                 unsigned ofs = get_entity_offset_bytes(a->ent);
728                                                 ir_fprintf(f, "spill entity: %+F offset %x (%d)\n", a->ent, ofs, ofs);
729                                         }
730                                         else {
731                                                 ir_fprintf(f, "spill entity: n/a\n");
732                                         }
733                                 }
734                                 break;
735
736                         case beo_IncSP:
737                                 {
738                                         be_stack_attr_t *a = (be_stack_attr_t *) at;
739                                         fprintf(f, "offset: %u\n", a->offset);
740                                         fprintf(f, "direction: %s\n", a->dir == be_stack_dir_along ? "along" : "against");
741                                 }
742                                 break;
743                         }
744
745         }
746
747         return 0;
748 }
749
750 void copy_attr(const ir_node *old_node, ir_node *new_node)
751 {
752         be_node_attr_t *old_attr = get_irn_attr(old_node);
753         be_node_attr_t *new_attr = get_irn_attr(new_node);
754
755         assert(is_be_node(old_node));
756         assert(is_be_node(new_node));
757
758         memcpy(new_attr, old_attr, get_op_attr_size(get_irn_op(old_node)));
759         new_attr->reg_data = NULL;
760
761         if(new_attr->max_reg_data > 0) {
762                 new_attr->reg_data = NEW_ARR_D(be_reg_data_t, get_irg_obstack(get_irn_irg(new_node)), new_attr->max_reg_data);
763                 memcpy(new_attr->reg_data, old_attr->reg_data, new_attr->max_reg_data * sizeof(be_reg_data_t));
764         }
765 }
766
767 static const ir_op_ops be_node_op_ops = {
768         NULL,
769         NULL,
770         NULL,
771         NULL,
772         NULL,
773         copy_attr,
774         NULL,
775         NULL,
776         NULL,
777         NULL,
778         NULL,
779         dump_node,
780         NULL
781 };
782
783 pset *nodes_live_at(const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *pos, pset *live)
784 {
785         firm_dbg_module_t *dbg = firm_dbg_register("firm.be.node");
786         const ir_node *bl      = is_Block(pos) ? pos : get_nodes_block(pos);
787         ir_node *irn;
788         irn_live_t *li;
789
790         live_foreach(bl, li) {
791                 ir_node *irn = (ir_node *) li->irn;
792                 if(live_is_end(li) && arch_irn_consider_in_reg_alloc(arch_env, cls, irn))
793                         pset_insert_ptr(live, irn);
794         }
795
796         sched_foreach_reverse(bl, irn) {
797                 int i, n;
798                 ir_node *x;
799
800                 /*
801                  * If we encounter the node we want to insert the Perm after,
802                 * exit immediately, so that this node is still live
803                 */
804                 if(irn == pos)
805                         return live;
806
807                 DBG((dbg, LEVEL_1, "%+F\n", irn));
808                 for(x = pset_first(live); x; x = pset_next(live))
809                         DBG((dbg, LEVEL_1, "\tlive: %+F\n", x));
810
811                 if(arch_irn_has_reg_class(arch_env, irn, -1, cls))
812                         pset_remove_ptr(live, irn);
813
814                 for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
815                         ir_node *op = get_irn_n(irn, i);
816
817                         if(arch_irn_consider_in_reg_alloc(arch_env, cls, op))
818                                 pset_insert_ptr(live, op);
819                 }
820         }
821
822         return live;
823 }
824
825 ir_node *insert_Perm_after(const arch_env_t *arch_env,
826                                                    const arch_register_class_t *cls,
827                                                    dom_front_info_t *dom_front,
828                                                    ir_node *pos)
829 {
830         ir_node *bl                 = is_Block(pos) ? pos : get_nodes_block(pos);
831         ir_graph *irg               = get_irn_irg(bl);
832         pset *live                  = pset_new_ptr_default();
833         firm_dbg_module_t *dbg      = firm_dbg_register("be.node");
834
835         ir_node *curr, *irn, *perm, **nodes;
836         int i, n;
837
838         DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos));
839
840         if(!nodes_live_at(arch_env, cls, pos, live));
841
842         n = pset_count(live);
843
844         if(n == 0)
845                 return NULL;
846
847         nodes = malloc(n * sizeof(nodes[0]));
848
849         DBG((dbg, LEVEL_1, "live:\n"));
850         for(irn = pset_first(live), i = 0; irn; irn = pset_next(live), i++) {
851                 DBG((dbg, LEVEL_1, "\t%+F\n", irn));
852                 nodes[i] = irn;
853         }
854
855         perm = be_new_Perm(cls, irg, bl, n, nodes);
856         sched_add_after(pos, perm);
857         free(nodes);
858
859         curr = perm;
860         for(i = 0; i < n; ++i) {
861                 ir_node *copies[1];
862                 ir_node *perm_op = get_irn_n(perm, i);
863                 const arch_register_t *reg = arch_get_irn_register(arch_env, perm_op);
864
865                 ir_mode *mode = get_irn_mode(perm_op);
866                 ir_node *proj = new_r_Proj(irg, bl, perm, mode, i);
867                 arch_set_irn_register(arch_env, proj, reg);
868
869                 sched_add_after(curr, proj);
870                 curr = proj;
871
872                 copies[0] = proj;
873                 be_ssa_constr_single(dom_front, perm_op, 1, copies);
874         }
875         return perm;
876 }