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