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