Adapted to API changes
[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                         n_outs;
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_pinned,     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_Keep,   "NoReg",      op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
150         op_Call       = new_ir_op(beo_base + beo_Keep,   "Call",       op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
151         op_AddSP      = new_ir_op(beo_base + beo_Keep,   "AddSP",      op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_stack_attr_t), &be_node_op_ops);
152         op_IncSP      = new_ir_op(beo_base + beo_Keep,   "IncSP",      op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_stack_attr_t), &be_node_op_ops);
153         op_RegParams  = new_ir_op(beo_base + beo_Keep,   "RegParams",  op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_attr_t),  &be_node_op_ops);
154         op_StackParam = new_ir_op(beo_base + beo_Keep,   "StackParam", op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_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 n_outs)
170 {
171         be_node_attr_t *a = get_irn_attr(irn);
172
173         a->n_outs   = n_outs;
174         a->flags    = arch_irn_flags_none;
175         a->cls      = cls;
176         a->reg_data = NULL;
177
178         if(n_outs > 0) {
179                 int i;
180
181                 a->reg_data = NEW_ARR_D(be_reg_data_t, get_irg_obstack(irg), n_outs);
182                 memset(a->reg_data, 0, n_outs * sizeof(a->reg_data[0]));
183                 for(i = 0; i < n_outs; ++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->n_outs && "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);
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 int be_is_Spill         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Spill          ; }
356 int be_is_Reload        (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Reload         ; }
357 int be_is_Copy          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Copy           ; }
358 int be_is_Perm          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Perm           ; }
359 int be_is_Keep          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Keep           ; }
360 int be_is_Call          (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_Call           ; }
361 int be_is_IncSP         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_IncSP          ; }
362 int be_is_AddSP         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_AddSP          ; }
363 int be_is_RegParams     (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_RegParams      ; }
364 int be_is_StackParam    (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_StackParam     ; }
365 int be_is_NoReg         (const ir_node *irn) { return get_irn_be_opcode(irn) == beo_NoReg          ; }
366
367 static void be_limited(void *data, bitset_t *bs)
368 {
369         be_req_t *req = data;
370
371         switch(req->kind) {
372         case be_req_kind_negate_old_limited:
373         case be_req_kind_old_limited:
374                 req->x.old_limited.old_limited(req->x.old_limited.old_limited_env, bs);
375                 if(req->kind == be_req_kind_negate_old_limited)
376                         bitset_flip_all(bs);
377                 break;
378         case be_req_kind_single_reg:
379                 bitset_clear_all(bs);
380                 bitset_set(bs, req->x.single_reg->index);
381                 break;
382         }
383 }
384
385 void be_set_constr_single_reg(ir_node *irn, int pos, const arch_register_t *reg)
386 {
387         int idx           = pos < 0 ? -(pos - 1) : pos;
388         be_node_attr_t *a = get_irn_attr(irn);
389         be_reg_data_t *rd = &a->reg_data[idx];
390         be_req_t       *r = pos < 0 ? &rd->req : &rd->in_req;
391
392         assert(is_be_node(irn));
393         assert(!(pos >= 0) || pos < get_irn_arity(irn));
394         assert(!(pos < 0)  || -(pos + 1) <= a->n_outs);
395
396         r->kind            = be_req_kind_single_reg;
397         r->x.single_reg    = reg;
398         r->req.limited     = be_limited;
399         r->req.limited_env = r;
400         r->req.type        = arch_register_req_type_limited;
401         r->req.cls         = reg->reg_class;
402 }
403
404 void be_set_constr_limited(ir_node *irn, int pos, const arch_register_req_t *req)
405 {
406         int idx           = pos < 0 ? -(pos - 1) : pos;
407         be_node_attr_t *a = get_irn_attr(irn);
408         be_reg_data_t *rd = &a->reg_data[idx];
409         be_req_t       *r = pos < 0 ? &rd->req : &rd->in_req;
410
411         assert(is_be_node(irn));
412         assert(!(pos >= 0) || pos < get_irn_arity(irn));
413         assert(!(pos < 0)  || -(pos + 1) <= a->n_outs);
414         assert(arch_register_req_is(req, limited));
415
416         r->kind            = be_req_kind_old_limited;
417         r->req.limited     = be_limited;
418         r->req.limited_env = r;
419         r->req.type        = arch_register_req_type_limited;
420         r->req.cls         = req->cls;
421
422         r->x.old_limited.old_limited     = req->limited;
423         r->x.old_limited.old_limited_env = req->limited_env;
424 }
425
426 void be_set_IncSP_offset(ir_node *irn, unsigned offset)
427 {
428         be_stack_attr_t *a = get_irn_attr(irn);
429         assert(be_is_IncSP(irn));
430         a->offset = offset;
431 }
432
433 unsigned be_get_IncSP_offset(ir_node *irn)
434 {
435         be_stack_attr_t *a = get_irn_attr(irn);
436         assert(be_is_IncSP(irn));
437         return a->offset;
438 }
439
440 void be_set_IncSP_direction(ir_node *irn, be_stack_dir_t dir)
441 {
442         be_stack_attr_t *a = get_irn_attr(irn);
443         assert(be_is_IncSP(irn));
444         a->dir = dir;
445 }
446
447 be_stack_dir_t be_get_IncSP_direction(ir_node *irn)
448 {
449         be_stack_attr_t *a = get_irn_attr(irn);
450         assert(be_is_IncSP(irn));
451         return a->dir;
452 }
453
454 void be_set_Spill_entity(ir_node *irn, entity *ent)
455 {
456         be_spill_attr_t *a = get_irn_attr(irn);
457         assert(be_is_Spill(irn));
458         a->ent = ent;
459 }
460
461 static ir_node *find_a_spill_walker(ir_node *irn, unsigned visited_nr)
462 {
463         if(get_irn_visited(irn) < visited_nr) {
464                 set_irn_visited(irn, visited_nr);
465
466                 if(is_Phi(irn)) {
467                         int i, n;
468                         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
469                                 ir_node *n = find_a_spill_walker(get_irn_n(irn, i), visited_nr);
470                                 if(n != NULL)
471                                         return n;
472                         }
473                 }
474
475                 else if(get_irn_be_opcode(irn) == beo_Spill)
476                         return irn;
477         }
478
479         return NULL;
480 }
481
482 ir_node *be_get_Spill_context(const ir_node *irn) {
483         const be_spill_attr_t *a = get_irn_attr(irn);
484         assert(be_is_Spill(irn));
485         return a->spill_ctx;
486 }
487
488 /**
489  * Finds a spill for a reload.
490  * If the reload is directly using the spill, this is simple,
491  * else we perform DFS from the reload (over all PhiMs) and return
492  * the first spill node we find.
493  */
494 static INLINE ir_node *find_a_spill(ir_node *irn)
495 {
496         ir_graph *irg       = get_irn_irg(irn);
497         unsigned visited_nr = get_irg_visited(irg) + 1;
498
499         assert(be_is_Reload(irn));
500         set_irg_visited(irg, visited_nr);
501         return find_a_spill_walker(irn, visited_nr);
502 }
503
504 entity *be_get_spill_entity(ir_node *irn)
505 {
506         int opc           = get_irn_opcode(irn);
507
508         switch(get_irn_be_opcode(irn)) {
509         case beo_Reload:
510                 return be_get_spill_entity(find_a_spill(irn));
511         case beo_Spill:
512                 {
513                         be_spill_attr_t *a = get_irn_attr(irn);
514                         return a->ent;
515                 }
516         default:
517                 assert(0 && "Must give spill/reload node");
518         }
519
520         return NULL;
521 }
522
523 ir_node *be_spill(const arch_env_t *arch_env, ir_node *irn, ir_node *ctx)
524 {
525         const arch_register_class_t *cls = arch_get_irn_reg_class(arch_env, irn, -1);
526
527         ir_node *bl    = get_nodes_block(irn);
528         ir_graph *irg  = get_irn_irg(bl);
529         ir_node *spill = be_new_Spill(cls, irg, bl, irn, ctx);
530         ir_node *insert;
531
532         /*
533          * search the right insertion point. a spill of a phi cannot be put
534          * directly after the phi, if there are some phis behind the one which
535          * is spilled.
536          */
537         insert = sched_next(irn);
538         while(is_Phi(insert) && !sched_is_end(insert))
539                 insert = sched_next(insert);
540
541         sched_add_before(insert, spill);
542         return spill;
543 }
544
545 ir_node *be_reload(const arch_env_t *arch_env,
546                                    const arch_register_class_t *cls,
547                                    ir_node *irn, int pos, ir_mode *mode, ir_node *spill)
548 {
549         ir_node *reload;
550
551         ir_node *bl   = get_nodes_block(irn);
552         ir_graph *irg = get_irn_irg(bl);
553
554         assert(be_is_Spill(spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M));
555
556         reload = be_new_Reload(cls, irg, bl, mode, spill);
557
558         set_irn_n(irn, pos, reload);
559         sched_add_before(irn, reload);
560         return reload;
561 }
562
563 static void *put_out_reg_req(arch_register_req_t *req, const ir_node *irn, int out_pos)
564 {
565         const be_node_attr_t *a = get_irn_attr(irn);
566
567         if(out_pos < a->n_outs)
568                 memcpy(req, &a->reg_data[out_pos].req, sizeof(req[0]));
569         else {
570                 req->type = arch_register_req_type_none;
571                 req->cls  = NULL;
572         }
573
574         return req;
575 }
576
577 static void *put_in_reg_req(arch_register_req_t *req, const ir_node *irn, int pos)
578 {
579         const be_node_attr_t *a = get_irn_attr(irn);
580         int n                   = get_irn_arity(irn);
581
582         if(pos < get_irn_arity(irn))
583                 memcpy(req, &a->reg_data[pos].in_req, sizeof(req[0]));
584         else {
585                 req->type = arch_register_req_type_none;
586                 req->cls  = NULL;
587         }
588
589         return req;
590 }
591
592 static const arch_register_req_t *
593 be_node_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos)
594 {
595         int out_pos = pos;
596
597         if(pos < 0) {
598                 if(get_irn_mode(irn) == mode_T)
599                         return NULL;
600
601                 out_pos = redir_proj((const ir_node **) &irn, pos);
602                 assert(is_be_node(irn));
603                 return put_out_reg_req(req, irn, out_pos);
604         }
605
606         else {
607                 return is_be_node(irn) ? put_in_reg_req(req, irn, pos) : NULL;
608         }
609
610         return req;
611 }
612
613 const arch_register_t *
614 be_node_get_irn_reg(const void *_self, const ir_node *irn)
615 {
616         int out_pos;
617         be_node_attr_t *a;
618
619         out_pos = redir_proj((const ir_node **) &irn, -1);
620         a       = get_irn_attr(irn);
621
622         assert(is_be_node(irn));
623         assert(out_pos < a->n_outs && "position too high");
624
625         return a->reg_data[out_pos].reg;
626 }
627
628 arch_irn_class_t be_node_classify(const void *_self, const ir_node *irn)
629 {
630         redir_proj((const ir_node **) &irn, -1);
631
632         switch(get_irn_be_opcode(irn)) {
633 #define XXX(a,b) case beo_ ## a: return arch_irn_class_ ## b;
634                 XXX(Spill, spill)
635                 XXX(Reload, reload)
636                 XXX(Perm, perm)
637                 XXX(Copy, copy)
638 #undef XXX
639                 default:
640                 return 0;
641         }
642
643         return 0;
644 }
645
646 arch_irn_flags_t be_node_get_flags(const void *_self, const ir_node *irn)
647 {
648         be_node_attr_t *a = get_irn_attr(irn);
649         return a->flags;
650 }
651
652 static const arch_irn_ops_if_t be_node_irn_ops_if = {
653         be_node_get_irn_reg_req,
654         be_node_set_irn_reg,
655         be_node_get_irn_reg,
656         be_node_classify,
657         be_node_get_flags,
658 };
659
660 static const arch_irn_ops_t be_node_irn_ops = {
661         &be_node_irn_ops_if
662 };
663
664 const void *be_node_get_arch_ops(const arch_irn_handler_t *self, const ir_node *irn)
665 {
666         redir_proj((const ir_node **) &irn, -1);
667         return is_be_node(irn) ? &be_node_irn_ops : NULL;
668 }
669
670 const arch_irn_handler_t be_node_irn_handler = {
671         be_node_get_arch_ops
672 };
673
674 static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
675 {
676         be_node_attr_t *at = get_irn_attr(irn);
677         int i;
678
679         assert(is_be_node(irn));
680
681         switch(reason) {
682                 case dump_node_opcode_txt:
683                         fprintf(f, get_op_name(get_irn_op(irn)));
684                         break;
685                 case dump_node_mode_txt:
686                         fprintf(f, get_mode_name(get_irn_mode(irn)));
687                         break;
688                 case dump_node_nodeattr_txt:
689                         break;
690                 case dump_node_info_txt:
691                         fprintf(f, "reg class: %s\n", at->cls->name);
692                         for(i = 0; i < at->n_outs; ++i) {
693                                 const arch_register_t *reg = at->reg_data[i].reg;
694                                 fprintf(f, "reg #%d: %s\n", i, reg ? reg->name : "n/a");
695                         }
696
697                         switch(get_irn_be_opcode(irn)) {
698                         case beo_Spill:
699                                 {
700                                         be_spill_attr_t *a = (be_spill_attr_t *) at;
701
702                                         ir_fprintf(f, "spill context: %+F\n", a->spill_ctx);
703                                         if (a->ent) {
704                                                 unsigned ofs = get_entity_offset_bytes(a->ent);
705                                                 ir_fprintf(f, "spill entity: %+F offset %x (%d)\n", a->ent, ofs, ofs);
706                                         }
707                                         else {
708                                                 ir_fprintf(f, "spill entity: n/a\n");
709                                         }
710                                 }
711                                 break;
712
713                         case beo_IncSP:
714                                 {
715                                         be_stack_attr_t *a = (be_stack_attr_t *) at;
716                                         fprintf(f, "offset: %u\n", a->offset);
717                                         fprintf(f, "direction: %s\n", a->dir == be_stack_dir_along ? "along" : "against");
718                                 }
719                                 break;
720                         }
721
722         }
723
724         return 0;
725 }
726
727 static const ir_op_ops be_node_op_ops = {
728         NULL,
729         NULL,
730         NULL,
731         NULL,
732         NULL,
733         NULL,
734         NULL,
735         NULL,
736         NULL,
737         NULL,
738         NULL,
739         dump_node,
740         NULL
741 };
742
743 pset *nodes_live_at(const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *pos, pset *live)
744 {
745         firm_dbg_module_t *dbg = firm_dbg_register("firm.be.node");
746         const ir_node *bl      = is_Block(pos) ? pos : get_nodes_block(pos);
747         ir_node *irn;
748         irn_live_t *li;
749
750         live_foreach(bl, li) {
751                 ir_node *irn = (ir_node *) li->irn;
752                 if(live_is_end(li) && arch_irn_consider_in_reg_alloc(arch_env, cls, irn))
753                         pset_insert_ptr(live, irn);
754         }
755
756         sched_foreach_reverse(bl, irn) {
757                 int i, n;
758                 ir_node *x;
759
760                 /*
761                  * If we encounter the node we want to insert the Perm after,
762                 * exit immediately, so that this node is still live
763                 */
764                 if(irn == pos)
765                         return live;
766
767                 DBG((dbg, LEVEL_1, "%+F\n", irn));
768                 for(x = pset_first(live); x; x = pset_next(live))
769                         DBG((dbg, LEVEL_1, "\tlive: %+F\n", x));
770
771                 if(arch_irn_has_reg_class(arch_env, irn, -1, cls))
772                         pset_remove_ptr(live, irn);
773
774                 for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
775                         ir_node *op = get_irn_n(irn, i);
776
777                         if(arch_irn_consider_in_reg_alloc(arch_env, cls, op))
778                                 pset_insert_ptr(live, op);
779                 }
780         }
781
782         return live;
783 }
784
785 ir_node *insert_Perm_after(const arch_env_t *arch_env,
786                                                    const arch_register_class_t *cls,
787                                                    dom_front_info_t *dom_front,
788                                                    ir_node *pos)
789 {
790         ir_node *bl                 = is_Block(pos) ? pos : get_nodes_block(pos);
791         ir_graph *irg               = get_irn_irg(bl);
792         pset *live                  = pset_new_ptr_default();
793         firm_dbg_module_t *dbg      = firm_dbg_register("be.node");
794
795         ir_node *curr, *irn, *perm, **nodes;
796         int i, n;
797
798         DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos));
799
800         if(!nodes_live_at(arch_env, cls, pos, live));
801
802         n = pset_count(live);
803
804         if(n == 0)
805                 return NULL;
806
807         nodes = malloc(n * sizeof(nodes[0]));
808
809         DBG((dbg, LEVEL_1, "live:\n"));
810         for(irn = pset_first(live), i = 0; irn; irn = pset_next(live), i++) {
811                 DBG((dbg, LEVEL_1, "\t%+F\n", irn));
812                 nodes[i] = irn;
813         }
814
815         perm = be_new_Perm(cls, irg, bl, n, nodes);
816         sched_add_after(pos, perm);
817         free(nodes);
818
819         curr = perm;
820         for(i = 0; i < n; ++i) {
821                 ir_node *copies[1];
822                 ir_node *perm_op = get_irn_n(perm, i);
823                 const arch_register_t *reg = arch_get_irn_register(arch_env, perm_op);
824
825                 ir_mode *mode = get_irn_mode(perm_op);
826                 ir_node *proj = new_r_Proj(irg, bl, perm, mode, i);
827                 arch_set_irn_register(arch_env, proj, reg);
828
829                 sched_add_after(curr, proj);
830                 curr = proj;
831
832                 copies[0] = proj;
833                 be_ssa_constr_single(dom_front, perm_op, 1, copies);
834         }
835         return perm;
836 }