- remove block parameter from new_r_Proj and new_rd_Proj
[libfirm] / ir / be / benode.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Backend node support for generic backend nodes.
23  * @author      Sebastian Hack
24  * @date        17.05.2005
25  * @version     $Id$
26  *
27  * Backend node support for generic backend nodes.
28  * This file provides Perm, Copy, Spill and Reload nodes.
29  */
30 #include "config.h"
31
32 #include <stdlib.h>
33
34 #include "obst.h"
35 #include "set.h"
36 #include "pmap.h"
37 #include "util.h"
38 #include "debug.h"
39 #include "fourcc.h"
40 #include "offset.h"
41 #include "bitfiddle.h"
42 #include "raw_bitset.h"
43 #include "error.h"
44 #include "array_t.h"
45
46 #include "irop_t.h"
47 #include "irmode_t.h"
48 #include "irnode_t.h"
49 #include "ircons_t.h"
50 #include "irprintf.h"
51 #include "irgwalk.h"
52 #include "iropt_t.h"
53
54 #include "be_t.h"
55 #include "belive_t.h"
56 #include "besched.h"
57 #include "benode.h"
58 #include "bearch.h"
59
60 #include "beirgmod.h"
61
62 #define get_irn_attr(irn) get_irn_generic_attr(irn)
63 #define get_irn_attr_const(irn) get_irn_generic_attr_const(irn)
64
65 typedef struct {
66         const arch_register_req_t *in_req;
67 } be_reg_data_t;
68
69 /** The generic be nodes attribute type. */
70 typedef struct {
71         be_reg_data_t *reg_data;
72 } be_node_attr_t;
73
74 /** The be_Return nodes attribute type. */
75 typedef struct {
76         be_node_attr_t node_attr;     /**< base attributes of every be node. */
77         int            num_ret_vals;  /**< number of return values */
78         unsigned       pop;           /**< number of bytes that should be popped */
79         int            emit_pop;      /**< if set, emit pop bytes, even if pop = 0 */
80 } be_return_attr_t;
81
82 /** The be_IncSP attribute type. */
83 typedef struct {
84         be_node_attr_t node_attr;   /**< base attributes of every be node. */
85         int            offset;      /**< The offset by which the stack shall be expanded/shrinked. */
86         int            align;       /**< whether stack should be aligned after the
87                                          IncSP */
88 } be_incsp_attr_t;
89
90 /** The be_Frame attribute type. */
91 typedef struct {
92         be_node_attr_t  node_attr;   /**< base attributes of every be node. */
93         ir_entity      *ent;
94         int             offset;
95 } be_frame_attr_t;
96
97 /** The be_Call attribute type. */
98 typedef struct {
99         be_node_attr_t  node_attr;  /**< base attributes of every be node. */
100         ir_entity      *ent;        /**< The called entity if this is a static call. */
101         unsigned        pop;
102         ir_type        *call_tp;    /**< The call type, copied from the original Call node. */
103 } be_call_attr_t;
104
105 typedef struct {
106         be_node_attr_t   node_attr;  /**< base attributes of every be node. */
107         ir_entity      **in_entities;
108         ir_entity      **out_entities;
109 } be_memperm_attr_t;
110
111 ir_op *op_be_Spill;
112 ir_op *op_be_Reload;
113 ir_op *op_be_Perm;
114 ir_op *op_be_MemPerm;
115 ir_op *op_be_Copy;
116 ir_op *op_be_Keep;
117 ir_op *op_be_CopyKeep;
118 ir_op *op_be_Call;
119 ir_op *op_be_Return;
120 ir_op *op_be_IncSP;
121 ir_op *op_be_AddSP;
122 ir_op *op_be_SubSP;
123 ir_op *op_be_Start;
124 ir_op *op_be_FrameAddr;
125 ir_op *op_be_Barrier;
126
127 static const ir_op_ops be_node_op_ops;
128
129 #define N   irop_flag_none
130 #define L   irop_flag_labeled
131 #define C   irop_flag_commutative
132 #define X   irop_flag_cfopcode
133 #define I   irop_flag_ip_cfopcode
134 #define F   irop_flag_fragile
135 #define Y   irop_flag_forking
136 #define H   irop_flag_highlevel
137 #define c   irop_flag_constlike
138 #define K   irop_flag_keep
139 #define M   irop_flag_uses_memory
140
141 /**
142  * Compare two be node attributes.
143  *
144  * @return zero if both attributes are identically
145  */
146 static int node_cmp_attr(ir_node *a, ir_node *b)
147 {
148         const be_node_attr_t *a_attr = get_irn_attr_const(a);
149         const be_node_attr_t *b_attr = get_irn_attr_const(b);
150         int i, len = ARR_LEN(a_attr->reg_data);
151
152         if (len != ARR_LEN(b_attr->reg_data))
153                 return 1;
154
155         if (!be_nodes_equal(a, b))
156                 return 1;
157
158         for (i = len - 1; i >= 0; --i) {
159                 if (!reg_reqs_equal(a_attr->reg_data[i].in_req,
160                                     b_attr->reg_data[i].in_req))
161                         return 1;
162         }
163
164         return 0;
165 }
166
167 /**
168  * Compare the attributes of two be_FrameAddr nodes.
169  *
170  * @return zero if both nodes have identically attributes
171  */
172 static int FrameAddr_cmp_attr(ir_node *a, ir_node *b)
173 {
174         const be_frame_attr_t *a_attr = get_irn_attr_const(a);
175         const be_frame_attr_t *b_attr = get_irn_attr_const(b);
176
177         if (a_attr->ent != b_attr->ent || a_attr->offset != b_attr->offset)
178                 return 1;
179
180         return node_cmp_attr(a, b);
181 }
182
183 /**
184  * Compare the attributes of two be_Return nodes.
185  *
186  * @return zero if both nodes have identically attributes
187  */
188 static int Return_cmp_attr(ir_node *a, ir_node *b)
189 {
190         const be_return_attr_t *a_attr = get_irn_attr_const(a);
191         const be_return_attr_t *b_attr = get_irn_attr_const(b);
192
193         if (a_attr->num_ret_vals != b_attr->num_ret_vals)
194                 return 1;
195         if (a_attr->pop != b_attr->pop)
196                 return 1;
197         if (a_attr->emit_pop != b_attr->emit_pop)
198                 return 1;
199
200         return node_cmp_attr(a, b);
201 }
202
203 /**
204  * Compare the attributes of two be_IncSP nodes.
205  *
206  * @return zero if both nodes have identically attributes
207  */
208 static int IncSP_cmp_attr(ir_node *a, ir_node *b)
209 {
210         const be_incsp_attr_t *a_attr = get_irn_attr_const(a);
211         const be_incsp_attr_t *b_attr = get_irn_attr_const(b);
212
213         if (a_attr->offset != b_attr->offset)
214                 return 1;
215
216         return node_cmp_attr(a, b);
217 }
218
219 /**
220  * Compare the attributes of two be_Call nodes.
221  *
222  * @return zero if both nodes have identically attributes
223  */
224 static int Call_cmp_attr(ir_node *a, ir_node *b)
225 {
226         const be_call_attr_t *a_attr = get_irn_attr_const(a);
227         const be_call_attr_t *b_attr = get_irn_attr_const(b);
228
229         if (a_attr->ent != b_attr->ent ||
230                 a_attr->call_tp != b_attr->call_tp)
231                 return 1;
232
233         return node_cmp_attr(a, b);
234 }
235
236 static arch_register_req_t *allocate_reg_req(const ir_node *node)
237 {
238         ir_graph       *irg  = get_irn_irg(node);
239         struct obstack *obst = be_get_birg_obst(irg);
240
241         arch_register_req_t *req = obstack_alloc(obst, sizeof(*req));
242         memset(req, 0, sizeof(*req));
243         return req;
244 }
245
246 void be_set_constr_in(ir_node *node, int pos, const arch_register_req_t *req)
247 {
248         const be_node_attr_t *attr = get_irn_attr_const(node);
249         be_reg_data_t *rd = &attr->reg_data[pos];
250         assert(pos < ARR_LEN(attr->reg_data));
251         rd->in_req = req;
252 }
253
254 void be_set_constr_out(ir_node *node, int pos, const arch_register_req_t *req)
255 {
256         backend_info_t *info = be_get_info(node);
257         info->out_infos[pos].req = req;
258 }
259
260 /**
261  * Initializes the generic attribute of all be nodes and return it.
262  */
263 static void *init_node_attr(ir_node *node, int n_inputs, int n_outputs)
264 {
265         ir_graph       *irg  = get_irn_irg(node);
266         struct obstack *obst = be_get_birg_obst(irg);
267         be_node_attr_t *a    = get_irn_attr(node);
268         backend_info_t *info = be_get_info(node);
269
270         memset(a, 0, sizeof(get_op_attr_size(get_irn_op(node))));
271
272         if (n_inputs >= 0) {
273                 int i;
274                 a->reg_data = NEW_ARR_D(be_reg_data_t, obst, n_inputs);
275                 for (i = 0; i < n_inputs; ++i) {
276                         a->reg_data[i].in_req = arch_no_register_req;
277                 }
278         } else {
279                 a->reg_data = NEW_ARR_F(be_reg_data_t, 0);
280         }
281
282         if (n_outputs >= 0) {
283                 int i;
284                 info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_outputs);
285                 memset(info->out_infos, 0, n_outputs * sizeof(info->out_infos[0]));
286                 for (i = 0; i < n_outputs; ++i) {
287                         info->out_infos[i].req = arch_no_register_req;
288                 }
289         } else {
290                 info->out_infos = NEW_ARR_F(reg_out_info_t, 0);
291         }
292
293         return a;
294 }
295
296 static void add_register_req_out(ir_node *node)
297 {
298         backend_info_t *info = be_get_info(node);
299         reg_out_info_t  out_info;
300         memset(&out_info, 0, sizeof(out_info));
301         out_info.req = arch_no_register_req;
302         ARR_APP1(reg_out_info_t, info->out_infos, out_info);
303 }
304
305 static void add_register_req_in(ir_node *node)
306 {
307         be_node_attr_t *a    = get_irn_attr(node);
308         be_reg_data_t   regreq;
309         memset(&regreq, 0, sizeof(regreq));
310         regreq.in_req = arch_no_register_req;
311         ARR_APP1(be_reg_data_t, a->reg_data, regreq);
312 }
313
314 ir_node *be_new_Spill(const arch_register_class_t *cls,
315                 const arch_register_class_t *cls_frame, ir_node *bl,
316                 ir_node *frame, ir_node *to_spill)
317 {
318         be_frame_attr_t *a;
319         ir_node         *in[2];
320         ir_node         *res;
321         ir_graph        *irg = get_Block_irg(bl);
322
323         in[0]     = frame;
324         in[1]     = to_spill;
325         res       = new_ir_node(NULL, irg, bl, op_be_Spill, mode_M, 2, in);
326         a         = init_node_attr(res, 2, 1);
327         a->ent    = NULL;
328         a->offset = 0;
329
330         be_node_set_reg_class_in(res, be_pos_Spill_frame, cls_frame);
331         be_node_set_reg_class_in(res, be_pos_Spill_val, cls);
332         /*
333          * For spills and reloads, we return "none" as requirement for frame
334          * pointer, so every input is ok. Some backends need this (STA).
335          * Matze: we should investigate if this is really needed, this solution
336          *        looks very hacky to me
337          */
338         be_set_constr_in(res, be_pos_Spill_frame, arch_no_register_req);
339
340         arch_set_out_register_req(res, 0, arch_no_register_req);
341
342         return res;
343 }
344
345 ir_node *be_new_Reload(const arch_register_class_t *cls,
346                 const arch_register_class_t *cls_frame, ir_node *block,
347                 ir_node *frame, ir_node *mem, ir_mode *mode)
348 {
349         ir_node  *in[2];
350         ir_node  *res;
351         ir_graph *irg = get_Block_irg(block);
352
353         in[0] = frame;
354         in[1] = mem;
355         res   = new_ir_node(NULL, irg, block, op_be_Reload, mode, 2, in);
356
357         init_node_attr(res, 2, 1);
358         be_node_set_reg_class_out(res, 0, cls);
359
360         be_node_set_reg_class_in(res, be_pos_Reload_frame, cls_frame);
361         arch_irn_set_flags(res, arch_irn_flags_rematerializable);
362
363         /*
364          * For spills and reloads, we return "none" as requirement for frame
365          * pointer, so every input is ok. Some backends need this (e.g. STA).
366          * Matze: we should investigate if this is really needed, this solution
367          *        looks very hacky to me
368          */
369         be_set_constr_in(res, be_pos_Reload_frame, arch_no_register_req);
370
371         return res;
372 }
373
374 ir_node *be_get_Reload_mem(const ir_node *irn)
375 {
376         assert(be_is_Reload(irn));
377         return get_irn_n(irn, be_pos_Reload_mem);
378 }
379
380 ir_node *be_get_Reload_frame(const ir_node *irn)
381 {
382         assert(be_is_Reload(irn));
383         return get_irn_n(irn, be_pos_Reload_frame);
384 }
385
386 ir_node *be_get_Spill_val(const ir_node *irn)
387 {
388         assert(be_is_Spill(irn));
389         return get_irn_n(irn, be_pos_Spill_val);
390 }
391
392 ir_node *be_get_Spill_frame(const ir_node *irn)
393 {
394         assert(be_is_Spill(irn));
395         return get_irn_n(irn, be_pos_Spill_frame);
396 }
397
398 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_node *block,
399                      int n, ir_node *in[])
400 {
401         int      i;
402         ir_graph *irg = get_Block_irg(block);
403
404         ir_node *irn = new_ir_node(NULL, irg, block, op_be_Perm, mode_T, n, in);
405         init_node_attr(irn, n, n);
406         for (i = 0; i < n; ++i) {
407                 be_node_set_reg_class_in(irn, i, cls);
408                 be_node_set_reg_class_out(irn, i, cls);
409         }
410
411         return irn;
412 }
413
414 void be_Perm_reduce(ir_node *perm, int new_size, int *map)
415 {
416         int            arity      = get_irn_arity(perm);
417         be_reg_data_t  *old_data  = ALLOCAN(be_reg_data_t, arity);
418         reg_out_info_t *old_infos = ALLOCAN(reg_out_info_t, arity);
419         be_node_attr_t *attr      = get_irn_attr(perm);
420         backend_info_t *info      = be_get_info(perm);
421         ir_node        **new_in;
422
423         int i;
424
425         assert(be_is_Perm(perm));
426         assert(new_size <= arity);
427
428         new_in = alloca(new_size * sizeof(*new_in));
429
430         /* save the old register data */
431         memcpy(old_data, attr->reg_data, arity * sizeof(old_data[0]));
432         memcpy(old_infos, info->out_infos, arity * sizeof(old_infos[0]));
433
434         /* compose the new in array and set the new register data directly in place */
435         for (i = 0; i < new_size; ++i) {
436                 int idx = map[i];
437                 new_in[i]          = get_irn_n(perm, idx);
438                 attr->reg_data[i]  = old_data[idx];
439                 info->out_infos[i] = old_infos[idx];
440         }
441
442         set_irn_in(perm, new_size, new_in);
443 }
444
445 ir_node *be_new_MemPerm(const arch_env_t *arch_env, ir_node *bl, int n, ir_node *in[])
446 {
447         ir_graph                     *irg       = get_Block_irg(bl);
448         ir_node                      *frame     = get_irg_frame(irg);
449         const arch_register_t        *sp        = arch_env->sp;
450         ir_node                      *irn;
451         be_memperm_attr_t            *attr;
452         ir_node                     **real_in;
453
454         real_in = ALLOCAN(ir_node*, n + 1);
455         real_in[0] = frame;
456         memcpy(&real_in[1], in, n * sizeof(real_in[0]));
457
458         irn = new_ir_node(NULL, irg, bl, op_be_MemPerm, mode_T, n+1, real_in);
459
460         init_node_attr(irn, n + 1, n);
461         be_node_set_reg_class_in(irn, 0, sp->reg_class);
462
463         attr               = get_irn_attr(irn);
464         attr->in_entities  = OALLOCNZ(irg->obst, ir_entity*, n);
465         attr->out_entities = OALLOCNZ(irg->obst, ir_entity*, n);
466
467         return irn;
468 }
469
470 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_node *bl, ir_node *op)
471 {
472         ir_node *in[1];
473         ir_node *res;
474         arch_register_req_t *req;
475         ir_graph *irg = get_Block_irg(bl);
476
477         in[0] = op;
478         res   = new_ir_node(NULL, irg, bl, op_be_Copy, get_irn_mode(op), 1, in);
479         init_node_attr(res, 1, 1);
480         be_node_set_reg_class_in(res, 0, cls);
481         be_node_set_reg_class_out(res, 0, cls);
482
483         req = allocate_reg_req(res);
484         req->cls        = cls;
485         req->type       = arch_register_req_type_should_be_same;
486         req->other_same = 1U << 0;
487         be_set_constr_out(res, 0, req);
488
489         return res;
490 }
491
492 ir_node *be_get_Copy_op(const ir_node *cpy)
493 {
494         return get_irn_n(cpy, be_pos_Copy_op);
495 }
496
497 void be_set_Copy_op(ir_node *cpy, ir_node *op)
498 {
499         set_irn_n(cpy, be_pos_Copy_op, op);
500 }
501
502 ir_node *be_new_Keep(ir_node *block, int n, ir_node *in[])
503 {
504         int i;
505         ir_node *res;
506         ir_graph *irg = get_Block_irg(block);
507
508         res = new_ir_node(NULL, irg, block, op_be_Keep, mode_ANY, -1, NULL);
509         init_node_attr(res, -1, 1);
510
511         for (i = 0; i < n; ++i) {
512                 add_irn_n(res, in[i]);
513                 add_register_req_in(res);
514         }
515         keep_alive(res);
516
517         return res;
518 }
519
520 void be_Keep_add_node(ir_node *keep, const arch_register_class_t *cls, ir_node *node)
521 {
522         int n;
523
524         assert(be_is_Keep(keep));
525         n = add_irn_n(keep, node);
526         add_register_req_in(keep);
527         be_node_set_reg_class_in(keep, n, cls);
528 }
529
530 /* creates a be_Call */
531 ir_node *be_new_Call(dbg_info *dbg, ir_graph *irg, ir_node *bl, ir_node *mem,
532                 ir_node *sp, ir_node *ptr, int n_outs, int n, ir_node *in[],
533                 ir_type *call_tp)
534 {
535         be_call_attr_t *a;
536         int real_n = be_pos_Call_first_arg + n;
537         ir_node *irn;
538         ir_node **real_in;
539
540         NEW_ARR_A(ir_node *, real_in, real_n);
541         real_in[be_pos_Call_mem] = mem;
542         real_in[be_pos_Call_sp]  = sp;
543         real_in[be_pos_Call_ptr] = ptr;
544         memcpy(&real_in[be_pos_Call_first_arg], in, n * sizeof(in[0]));
545
546         irn = new_ir_node(dbg, irg, bl, op_be_Call, mode_T, real_n, real_in);
547         a = init_node_attr(irn, real_n, n_outs);
548         a->ent     = NULL;
549         a->call_tp = call_tp;
550         a->pop     = 0;
551         return irn;
552 }
553
554 /* Gets the call entity or NULL if this is no static call. */
555 ir_entity *be_Call_get_entity(const ir_node *call)
556 {
557         const be_call_attr_t *a = get_irn_attr_const(call);
558         assert(be_is_Call(call));
559         return a->ent;
560 }
561
562 /* Sets the call entity. */
563 void be_Call_set_entity(ir_node *call, ir_entity *ent)
564 {
565         be_call_attr_t *a = get_irn_attr(call);
566         assert(be_is_Call(call));
567         a->ent = ent;
568 }
569
570 /* Gets the call type. */
571 ir_type *be_Call_get_type(ir_node *call)
572 {
573         const be_call_attr_t *a = get_irn_attr_const(call);
574         assert(be_is_Call(call));
575         return a->call_tp;
576 }
577
578 /* Sets the call type. */
579 void be_Call_set_type(ir_node *call, ir_type *call_tp)
580 {
581         be_call_attr_t *a = get_irn_attr(call);
582         assert(be_is_Call(call));
583         a->call_tp = call_tp;
584 }
585
586 void be_Call_set_pop(ir_node *call, unsigned pop)
587 {
588         be_call_attr_t *a = get_irn_attr(call);
589         a->pop = pop;
590 }
591
592 unsigned be_Call_get_pop(const ir_node *call)
593 {
594         const be_call_attr_t *a = get_irn_attr_const(call);
595         return a->pop;
596 }
597
598 /* Construct a new be_Return. */
599 ir_node *be_new_Return(dbg_info *dbg, ir_graph *irg, ir_node *block, int n_res,
600                        unsigned pop, int n, ir_node *in[])
601 {
602         be_return_attr_t *a;
603         ir_node *res;
604         int i;
605
606         res = new_ir_node(dbg, irg, block, op_be_Return, mode_X, -1, NULL);
607         init_node_attr(res, -1, 1);
608         for (i = 0; i < n; ++i) {
609                 add_irn_n(res, in[i]);
610                 add_register_req_in(res);
611         }
612         be_set_constr_out(res, 0, arch_no_register_req);
613
614         a = get_irn_attr(res);
615         a->num_ret_vals = n_res;
616         a->pop          = pop;
617         a->emit_pop     = 0;
618
619         return res;
620 }
621
622 /* Returns the number of real returns values */
623 int be_Return_get_n_rets(const ir_node *ret)
624 {
625         const be_return_attr_t *a = get_irn_generic_attr_const(ret);
626         return a->num_ret_vals;
627 }
628
629 /* return the number of bytes that should be popped from stack when executing the Return. */
630 unsigned be_Return_get_pop(const ir_node *ret)
631 {
632         const be_return_attr_t *a = get_irn_generic_attr_const(ret);
633         return a->pop;
634 }
635
636 /* return non-zero, if number of popped bytes must be always emitted */
637 int be_Return_get_emit_pop(const ir_node *ret)
638 {
639         const be_return_attr_t *a = get_irn_generic_attr_const(ret);
640         return a->emit_pop;
641 }
642
643 /* return non-zero, if number of popped bytes must be always emitted */
644 void be_Return_set_emit_pop(ir_node *ret, int emit_pop)
645 {
646         be_return_attr_t *a = get_irn_generic_attr(ret);
647         a->emit_pop = emit_pop;
648 }
649
650 int be_Return_append_node(ir_node *ret, ir_node *node)
651 {
652         int pos;
653
654         pos = add_irn_n(ret, node);
655         add_register_req_in(ret);
656
657         return pos;
658 }
659
660 ir_node *be_new_IncSP(const arch_register_t *sp, ir_node *bl,
661                       ir_node *old_sp, int offset, int align)
662 {
663         be_incsp_attr_t *a;
664         ir_node *irn;
665         ir_node *in[1];
666         ir_graph *irg = get_Block_irg(bl);
667
668         in[0]     = old_sp;
669         irn       = new_ir_node(NULL, irg, bl, op_be_IncSP, sp->reg_class->mode,
670                                 sizeof(in) / sizeof(in[0]), in);
671         a         = init_node_attr(irn, 1, 1);
672         a->offset = offset;
673         a->align  = align;
674
675         /* Set output constraint to stack register. */
676         be_node_set_reg_class_in(irn, 0, sp->reg_class);
677         be_set_constr_single_reg_out(irn, 0, sp, arch_register_req_type_produces_sp);
678
679         return irn;
680 }
681
682 ir_node *be_new_AddSP(const arch_register_t *sp, ir_node *bl, ir_node *old_sp,
683                 ir_node *sz)
684 {
685         be_node_attr_t *a;
686         ir_node *irn;
687         ir_node *in[be_pos_AddSP_last];
688         const arch_register_class_t *cls;
689         ir_graph *irg;
690
691         in[be_pos_AddSP_old_sp] = old_sp;
692         in[be_pos_AddSP_size]   = sz;
693
694         irg = get_Block_irg(bl);
695         irn = new_ir_node(NULL, irg, bl, op_be_AddSP, mode_T, be_pos_AddSP_last, in);
696         a   = init_node_attr(irn, be_pos_AddSP_last, pn_be_AddSP_last);
697
698         /* Set output constraint to stack register. */
699         be_set_constr_single_reg_in(irn, be_pos_AddSP_old_sp, sp, 0);
700         be_node_set_reg_class_in(irn, be_pos_AddSP_size, arch_register_get_class(sp));
701         be_set_constr_single_reg_out(irn, pn_be_AddSP_sp, sp, arch_register_req_type_produces_sp);
702
703         cls = arch_register_get_class(sp);
704
705         return irn;
706 }
707
708 ir_node *be_new_SubSP(const arch_register_t *sp, ir_node *bl, ir_node *old_sp, ir_node *sz)
709 {
710         be_node_attr_t *a;
711         ir_node *irn;
712         ir_node *in[be_pos_SubSP_last];
713         ir_graph *irg;
714
715         in[be_pos_SubSP_old_sp] = old_sp;
716         in[be_pos_SubSP_size]   = sz;
717
718         irg = get_Block_irg(bl);
719         irn = new_ir_node(NULL, irg, bl, op_be_SubSP, mode_T, be_pos_SubSP_last, in);
720         a   = init_node_attr(irn, be_pos_SubSP_last, pn_be_SubSP_last);
721
722         /* Set output constraint to stack register. */
723         be_set_constr_single_reg_in(irn, be_pos_SubSP_old_sp, sp, 0);
724         be_node_set_reg_class_in(irn, be_pos_SubSP_size, arch_register_get_class(sp));
725         be_set_constr_single_reg_out(irn, pn_be_SubSP_sp, sp, arch_register_req_type_produces_sp);
726
727         return irn;
728 }
729
730 ir_node *be_new_Start(dbg_info *dbgi, ir_node *bl, int n_outs)
731 {
732         ir_node *res;
733         int i;
734         ir_graph *irg = get_Block_irg(bl);
735
736         res = new_ir_node(dbgi, irg, bl, op_be_Start, mode_T, 0, NULL);
737         init_node_attr(res, 0, -1);
738         for (i = 0; i < n_outs; ++i) {
739                 add_register_req_out(res);
740         }
741
742         return res;
743 }
744
745 ir_node *be_new_FrameAddr(const arch_register_class_t *cls_frame, ir_node *bl, ir_node *frame, ir_entity *ent)
746 {
747         be_frame_attr_t *a;
748         ir_node *irn;
749         ir_node *in[1];
750         ir_graph *irg = get_Block_irg(bl);
751
752         in[0]  = frame;
753         irn    = new_ir_node(NULL, irg, bl, op_be_FrameAddr, get_irn_mode(frame), 1, in);
754         a      = init_node_attr(irn, 1, 1);
755         a->ent = ent;
756         a->offset = 0;
757         be_node_set_reg_class_in(irn, 0, cls_frame);
758         be_node_set_reg_class_out(irn, 0, cls_frame);
759
760         return optimize_node(irn);
761 }
762
763 ir_node *be_get_FrameAddr_frame(const ir_node *node)
764 {
765         assert(be_is_FrameAddr(node));
766         return get_irn_n(node, be_pos_FrameAddr_ptr);
767 }
768
769 ir_entity *be_get_FrameAddr_entity(const ir_node *node)
770 {
771         const be_frame_attr_t *attr = get_irn_generic_attr_const(node);
772         return attr->ent;
773 }
774
775 ir_node *be_new_CopyKeep(const arch_register_class_t *cls, ir_node *bl, ir_node *src, int n, ir_node *in_keep[], ir_mode *mode)
776 {
777         ir_node  *irn;
778         ir_node **in = ALLOCAN(ir_node*, n + 1);
779         ir_graph *irg = get_Block_irg(bl);
780
781         in[0] = src;
782         memcpy(&in[1], in_keep, n * sizeof(in[0]));
783         irn   = new_ir_node(NULL, irg, bl, op_be_CopyKeep, mode, n + 1, in);
784         init_node_attr(irn, n + 1, 1);
785         be_node_set_reg_class_in(irn, 0, cls);
786         be_node_set_reg_class_out(irn, 0, cls);
787
788         return irn;
789 }
790
791 ir_node *be_new_CopyKeep_single(const arch_register_class_t *cls, ir_node *bl, ir_node *src, ir_node *keep, ir_mode *mode)
792 {
793         return be_new_CopyKeep(cls, bl, src, 1, &keep, mode);
794 }
795
796 ir_node *be_get_CopyKeep_op(const ir_node *cpy)
797 {
798         return get_irn_n(cpy, be_pos_CopyKeep_op);
799 }
800
801 void be_set_CopyKeep_op(ir_node *cpy, ir_node *op)
802 {
803         set_irn_n(cpy, be_pos_CopyKeep_op, op);
804 }
805
806 ir_node *be_new_Barrier(ir_node *bl, int n, ir_node *in[])
807 {
808         ir_node *res;
809         int i;
810         ir_graph *irg = get_Block_irg(bl);
811
812         res = new_ir_node(NULL, irg, bl, op_be_Barrier, mode_T, -1, NULL);
813         init_node_attr(res, -1, -1);
814         for (i = 0; i < n; ++i) {
815                 add_irn_n(res, in[i]);
816                 add_register_req_in(res);
817                 add_register_req_out(res);
818         }
819
820         return res;
821 }
822
823 ir_node *be_Barrier_append_node(ir_node *barrier, ir_node *node)
824 {
825         ir_mode *mode = get_irn_mode(node);
826         int n = add_irn_n(barrier, node);
827
828         ir_node *proj = new_r_Proj(barrier, mode, n);
829         add_register_req_in(barrier);
830         add_register_req_out(barrier);
831
832         return proj;
833 }
834
835 int be_has_frame_entity(const ir_node *irn)
836 {
837         switch (get_irn_opcode(irn)) {
838         case beo_Spill:
839         case beo_Reload:
840         case beo_FrameAddr:
841                 return 1;
842         default:
843                 return 0;
844         }
845 }
846
847 ir_entity *be_get_frame_entity(const ir_node *irn)
848 {
849         if (be_has_frame_entity(irn)) {
850                 const be_frame_attr_t *a = get_irn_attr_const(irn);
851                 return a->ent;
852         }
853         return NULL;
854 }
855
856 int be_get_frame_offset(const ir_node *irn)
857 {
858         assert(is_be_node(irn));
859         if (be_has_frame_entity(irn)) {
860                 const be_frame_attr_t *a = get_irn_attr_const(irn);
861                 return a->offset;
862         }
863         return 0;
864 }
865
866 void be_set_MemPerm_in_entity(const ir_node *irn, int n, ir_entity *ent)
867 {
868         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
869
870         assert(be_is_MemPerm(irn));
871         assert(n < be_get_MemPerm_entity_arity(irn));
872
873         attr->in_entities[n] = ent;
874 }
875
876 ir_entity* be_get_MemPerm_in_entity(const ir_node* irn, int n)
877 {
878         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
879
880         assert(be_is_MemPerm(irn));
881         assert(n < be_get_MemPerm_entity_arity(irn));
882
883         return attr->in_entities[n];
884 }
885
886 void be_set_MemPerm_out_entity(const ir_node *irn, int n, ir_entity *ent)
887 {
888         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
889
890         assert(be_is_MemPerm(irn));
891         assert(n < be_get_MemPerm_entity_arity(irn));
892
893         attr->out_entities[n] = ent;
894 }
895
896 ir_entity* be_get_MemPerm_out_entity(const ir_node* irn, int n)
897 {
898         const be_memperm_attr_t *attr = get_irn_attr_const(irn);
899
900         assert(be_is_MemPerm(irn));
901         assert(n < be_get_MemPerm_entity_arity(irn));
902
903         return attr->out_entities[n];
904 }
905
906 int be_get_MemPerm_entity_arity(const ir_node *irn)
907 {
908         return get_irn_arity(irn) - 1;
909 }
910
911 static const arch_register_req_t *get_single_req(struct obstack *obst,
912                 const arch_register_t *reg, arch_register_req_type_t additional_types)
913 {
914         arch_register_req_t         *req = obstack_alloc(obst, sizeof(*req));
915         const arch_register_class_t *cls = arch_register_get_class(reg);
916         unsigned                    *limited_bitset;
917
918         limited_bitset = rbitset_obstack_alloc(obst, arch_register_class_n_regs(cls));
919         rbitset_set(limited_bitset, arch_register_get_index(reg));
920
921         req->type    = arch_register_req_type_limited | additional_types;
922         req->cls     = cls;
923         req->limited = limited_bitset;
924         return req;
925 }
926
927 void be_set_constr_single_reg_in(ir_node *node, int pos,
928                 const arch_register_t *reg, arch_register_req_type_t additional_types)
929 {
930         const arch_register_req_t *req;
931
932         if (additional_types == 0) {
933                 req = reg->single_req;
934         } else {
935                 ir_graph       *irg  = get_irn_irg(node);
936                 struct obstack *obst = be_get_birg_obst(irg);
937                 req = get_single_req(obst, reg, additional_types);
938         }
939         be_set_constr_in(node, pos, req);
940 }
941
942 void be_set_constr_single_reg_out(ir_node *node, int pos,
943                 const arch_register_t *reg, arch_register_req_type_t additional_types)
944 {
945         const arch_register_req_t *req;
946
947         /* if we have an ignore register, add ignore flag and just assign it */
948         if (reg->type & arch_register_type_ignore) {
949                 additional_types |= arch_register_req_type_ignore;
950         }
951
952         if (additional_types == 0) {
953                 req = reg->single_req;
954         } else {
955                 ir_graph       *irg  = get_irn_irg(node);
956                 struct obstack *obst = be_get_birg_obst(irg);
957                 req = get_single_req(obst, reg, additional_types);
958         }
959
960         arch_irn_set_register(node, pos, reg);
961         be_set_constr_out(node, pos, req);
962 }
963
964 void be_node_set_reg_class_in(ir_node *irn, int pos,
965                               const arch_register_class_t *cls)
966 {
967         be_set_constr_in(irn, pos, cls->class_req);
968 }
969
970 void be_node_set_reg_class_out(ir_node *irn, int pos,
971                                const arch_register_class_t *cls)
972 {
973         be_set_constr_out(irn, pos, cls->class_req);
974 }
975
976 ir_node *be_get_IncSP_pred(ir_node *irn)
977 {
978         assert(be_is_IncSP(irn));
979         return get_irn_n(irn, 0);
980 }
981
982 void be_set_IncSP_pred(ir_node *incsp, ir_node *pred)
983 {
984         assert(be_is_IncSP(incsp));
985         set_irn_n(incsp, 0, pred);
986 }
987
988 void be_set_IncSP_offset(ir_node *irn, int offset)
989 {
990         be_incsp_attr_t *a = get_irn_attr(irn);
991         assert(be_is_IncSP(irn));
992         a->offset = offset;
993 }
994
995 int be_get_IncSP_offset(const ir_node *irn)
996 {
997         const be_incsp_attr_t *a = get_irn_attr_const(irn);
998         assert(be_is_IncSP(irn));
999         return a->offset;
1000 }
1001
1002 int be_get_IncSP_align(const ir_node *irn)
1003 {
1004         const be_incsp_attr_t *a = get_irn_attr_const(irn);
1005         assert(be_is_IncSP(irn));
1006         return a->align;
1007 }
1008
1009 ir_node *be_spill(ir_node *block, ir_node *irn)
1010 {
1011         ir_graph                    *irg       = get_Block_irg(block);
1012         ir_node                     *frame     = get_irg_frame(irg);
1013         const arch_register_class_t *cls       = arch_get_irn_reg_class_out(irn);
1014         const arch_register_class_t *cls_frame = arch_get_irn_reg_class_out(frame);
1015         ir_node                     *spill;
1016
1017         spill = be_new_Spill(cls, cls_frame, block, frame, irn);
1018         return spill;
1019 }
1020
1021 ir_node *be_reload(const arch_register_class_t *cls, ir_node *insert, ir_mode *mode, ir_node *spill)
1022 {
1023         ir_node  *reload;
1024         ir_node  *bl    = is_Block(insert) ? insert : get_nodes_block(insert);
1025         ir_graph *irg   = get_Block_irg(bl);
1026         ir_node  *frame = get_irg_frame(irg);
1027         const arch_register_class_t *cls_frame = arch_get_irn_reg_class_out(frame);
1028
1029         assert(be_is_Spill(spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M));
1030
1031         reload = be_new_Reload(cls, cls_frame, bl, frame, spill, mode);
1032
1033         if (is_Block(insert)) {
1034                 insert = sched_skip(insert, 0, sched_skip_cf_predicator, NULL);
1035                 sched_add_after(insert, reload);
1036         } else {
1037                 sched_add_before(insert, reload);
1038         }
1039
1040         return reload;
1041 }
1042
1043 /*
1044   ____              ____
1045  |  _ \ ___  __ _  |  _ \ ___  __ _ ___
1046  | |_) / _ \/ _` | | |_) / _ \/ _` / __|
1047  |  _ <  __/ (_| | |  _ <  __/ (_| \__ \
1048  |_| \_\___|\__, | |_| \_\___|\__, |___/
1049             |___/                |_|
1050
1051 */
1052
1053
1054 static const arch_register_req_t *be_node_get_in_reg_req(
1055                 const ir_node *irn, int pos)
1056 {
1057         const be_node_attr_t *a = get_irn_attr_const(irn);
1058
1059         assert(pos >= 0);
1060         if (pos >= get_irn_arity(irn) || pos >= ARR_LEN(a->reg_data))
1061                 return arch_no_register_req;
1062
1063         return a->reg_data[pos].in_req;
1064 }
1065
1066 static arch_irn_class_t be_node_classify(const ir_node *irn)
1067 {
1068         switch (get_irn_opcode(irn)) {
1069                 case beo_Spill:  return arch_irn_class_spill;
1070                 case beo_Reload: return arch_irn_class_reload;
1071                 case beo_Perm:   return arch_irn_class_perm;
1072                 case beo_Copy:   return arch_irn_class_copy;
1073                 default:         return 0;
1074         }
1075 }
1076
1077 static ir_entity *be_node_get_frame_entity(const ir_node *irn)
1078 {
1079         return be_get_frame_entity(irn);
1080 }
1081
1082 static void be_node_set_frame_entity(ir_node *irn, ir_entity *ent)
1083 {
1084         be_frame_attr_t *a;
1085
1086         assert(be_has_frame_entity(irn));
1087
1088         a = get_irn_attr(irn);
1089         a->ent = ent;
1090 }
1091
1092 static void be_node_set_frame_offset(ir_node *irn, int offset)
1093 {
1094         be_frame_attr_t *a;
1095
1096         if (!be_has_frame_entity(irn))
1097                 return;
1098
1099         a = get_irn_attr(irn);
1100         a->offset = offset;
1101 }
1102
1103 static int be_node_get_sp_bias(const ir_node *irn)
1104 {
1105         if (be_is_IncSP(irn))
1106                 return be_get_IncSP_offset(irn);
1107         if (be_is_Call(irn))
1108                 return -(int)be_Call_get_pop(irn);
1109
1110         return 0;
1111 }
1112
1113 /*
1114   ___ ____  _   _   _   _                 _ _
1115  |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1116   | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1117   | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1118  |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1119
1120 */
1121
1122 /* for be nodes */
1123 static const arch_irn_ops_t be_node_irn_ops = {
1124         be_node_get_in_reg_req,
1125         be_node_classify,
1126         be_node_get_frame_entity,
1127         be_node_set_frame_entity,
1128         be_node_set_frame_offset,
1129         be_node_get_sp_bias,
1130         NULL,    /* get_inverse             */
1131         NULL,    /* get_op_estimated_cost   */
1132         NULL,    /* possible_memory_operand */
1133         NULL,    /* perform_memory_operand  */
1134 };
1135
1136 static const arch_register_req_t *dummy_reg_req(
1137                 const ir_node *node, int pos)
1138 {
1139         (void) node;
1140         (void) pos;
1141         return arch_no_register_req;
1142 }
1143
1144 static arch_irn_class_t dummy_classify(const ir_node *node)
1145 {
1146         (void) node;
1147         return 0;
1148 }
1149
1150 static ir_entity* dummy_get_frame_entity(const ir_node *node)
1151 {
1152         (void) node;
1153         return NULL;
1154 }
1155
1156 static void dummy_set_frame_entity(ir_node *node, ir_entity *entity)
1157 {
1158         (void) node;
1159         (void) entity;
1160         panic("dummy_set_frame_entity() should not be called");
1161 }
1162
1163 static void dummy_set_frame_offset(ir_node *node, int bias)
1164 {
1165         (void) node;
1166         (void) bias;
1167         panic("dummy_set_frame_offset() should not be called");
1168 }
1169
1170 static int dummy_get_sp_bias(const ir_node *node)
1171 {
1172         (void) node;
1173         return 0;
1174 }
1175
1176 /* for "middleend" nodes */
1177 static const arch_irn_ops_t dummy_be_irn_ops = {
1178         dummy_reg_req,
1179         dummy_classify,
1180         dummy_get_frame_entity,
1181         dummy_set_frame_entity,
1182         dummy_set_frame_offset,
1183         dummy_get_sp_bias,
1184         NULL,      /* get_inverse           */
1185         NULL,      /* get_op_estimated_cost */
1186         NULL,      /* possible_memory_operand */
1187         NULL,      /* perform_memory_operand */
1188 };
1189
1190 /*
1191   ____  _     _   ___ ____  _   _   _   _                 _ _
1192  |  _ \| |__ (_) |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1193  | |_) | '_ \| |  | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1194  |  __/| | | | |  | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1195  |_|   |_| |_|_| |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1196
1197 */
1198
1199 ir_node *be_new_Phi(ir_node *block, int n_ins, ir_node **ins, ir_mode *mode,
1200                     const arch_register_class_t *cls)
1201 {
1202         struct obstack *obst = be_get_birg_obst(get_irn_irg(block));
1203         backend_info_t *info;
1204
1205         ir_node *phi = new_r_Phi(block, n_ins, ins, mode);
1206         info = be_get_info(phi);
1207         info->out_infos = NEW_ARR_D(reg_out_info_t, obst, 1);
1208         memset(info->out_infos, 0, 1 * sizeof(info->out_infos[0]));
1209         if (cls == NULL) {
1210                 info->out_infos[0].req = arch_no_register_req;
1211         } else {
1212                 info->out_infos[0].req = cls->class_req;
1213         }
1214
1215         return phi;
1216 }
1217
1218 /**
1219  * Guess correct register class of a phi node by looking at its arguments
1220  */
1221 static const arch_register_req_t *get_Phi_reg_req_recursive(const ir_node *phi,
1222                                                             pset **visited)
1223 {
1224         int n = get_irn_arity(phi);
1225         ir_node *op;
1226         int i;
1227
1228         if (*visited && pset_find_ptr(*visited, phi))
1229                 return NULL;
1230
1231         for (i = 0; i < n; ++i) {
1232                 op = get_irn_n(phi, i);
1233                 /* Matze: don't we unnecessary constraint our phis with this?
1234                  * we only need to take the regclass IMO*/
1235                 if (!is_Phi(op))
1236                         return arch_get_register_req_out(op);
1237         }
1238
1239         /*
1240          * The operands of that Phi were all Phis themselves.
1241          * We have to start a DFS for a non-Phi argument now.
1242          */
1243         if (!*visited)
1244                 *visited = pset_new_ptr(16);
1245
1246         pset_insert_ptr(*visited, phi);
1247
1248         for (i = 0; i < n; ++i) {
1249                 const arch_register_req_t *req;
1250                 op = get_irn_n(phi, i);
1251                 req = get_Phi_reg_req_recursive(op, visited);
1252                 if (req != NULL)
1253                         return req;
1254         }
1255
1256         return NULL;
1257 }
1258
1259 static const arch_register_req_t *phi_get_irn_reg_req(const ir_node *node,
1260                                                       int pos)
1261 {
1262         backend_info_t            *info = be_get_info(node);
1263         const arch_register_req_t *req  = info->out_infos[0].req;
1264         (void) pos;
1265
1266         if (req == NULL) {
1267                 if (!mode_is_datab(get_irn_mode(node))) {
1268                         req = arch_no_register_req;
1269                 } else {
1270                         pset *visited = NULL;
1271
1272                         req = get_Phi_reg_req_recursive(node, &visited);
1273                         assert(req->cls != NULL);
1274                         req = req->cls->class_req;
1275
1276                         if (visited != NULL)
1277                                 del_pset(visited);
1278                 }
1279                 info->out_infos[0].req = req;
1280         }
1281
1282         return req;
1283 }
1284
1285 void be_set_phi_reg_req(ir_node *node, const arch_register_req_t *req)
1286 {
1287         backend_info_t *info = be_get_info(node);
1288         info->out_infos[0].req = req;
1289
1290         assert(mode_is_datab(get_irn_mode(node)));
1291 }
1292
1293 int be_dump_phi_reg_reqs(ir_node *node, FILE *F, dump_reason_t reason)
1294 {
1295         switch (reason) {
1296         case dump_node_opcode_txt:
1297                 fputs(get_op_name(get_irn_op(node)), F);
1298                 break;
1299         case dump_node_mode_txt:
1300                 fprintf(F, "%s", get_mode_name(get_irn_mode(node)));
1301                 break;
1302         case dump_node_nodeattr_txt:
1303                 break;
1304         case dump_node_info_txt:
1305         {
1306                 backend_info_t *info = be_get_info(node);
1307                 if (info != NULL && info->out_infos[0].req != NULL) {
1308                         arch_dump_reqs_and_registers(F, node);
1309                 }
1310                 break;
1311         }
1312
1313         default:
1314                 break;
1315         }
1316
1317         return 0;
1318 }
1319
1320 static const arch_irn_ops_t phi_irn_ops = {
1321         phi_get_irn_reg_req,
1322         dummy_classify,
1323         dummy_get_frame_entity,
1324         dummy_set_frame_entity,
1325         dummy_set_frame_offset,
1326         dummy_get_sp_bias,
1327         NULL,    /* get_inverse             */
1328         NULL,    /* get_op_estimated_cost   */
1329         NULL,    /* possible_memory_operand */
1330         NULL,    /* perform_memory_operand  */
1331 };
1332
1333 /*
1334   _   _           _        ____                        _
1335  | \ | | ___   __| | ___  |  _ \ _   _ _ __ ___  _ __ (_)_ __   __ _
1336  |  \| |/ _ \ / _` |/ _ \ | | | | | | | '_ ` _ \| '_ \| | '_ \ / _` |
1337  | |\  | (_) | (_| |  __/ | |_| | |_| | | | | | | |_) | | | | | (_| |
1338  |_| \_|\___/ \__,_|\___| |____/ \__,_|_| |_| |_| .__/|_|_| |_|\__, |
1339                                                 |_|            |___/
1340 */
1341
1342 /**
1343  * ir_op-Operation: dump a be node to file
1344  */
1345 static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
1346 {
1347         be_node_attr_t *at = get_irn_attr(irn);
1348
1349         assert(is_be_node(irn));
1350
1351         switch (reason) {
1352                 case dump_node_opcode_txt:
1353                         fputs(get_op_name(get_irn_op(irn)), f);
1354                         break;
1355                 case dump_node_mode_txt:
1356                         if (be_is_Perm(irn) || be_is_Copy(irn) || be_is_CopyKeep(irn)) {
1357                                 fprintf(f, " %s", get_mode_name(get_irn_mode(irn)));
1358                         }
1359                         break;
1360                 case dump_node_nodeattr_txt:
1361                         if (be_is_Call(irn)) {
1362                                 be_call_attr_t *a = (be_call_attr_t *) at;
1363                                 if (a->ent)
1364                                         fprintf(f, " [%s] ", get_entity_name(a->ent));
1365                         }
1366                         if (be_is_IncSP(irn)) {
1367                                 const be_incsp_attr_t *attr = get_irn_generic_attr_const(irn);
1368                                 if (attr->offset == BE_STACK_FRAME_SIZE_EXPAND) {
1369                                         fprintf(f, " [Setup Stackframe] ");
1370                                 } else if (attr->offset == BE_STACK_FRAME_SIZE_SHRINK) {
1371                                         fprintf(f, " [Destroy Stackframe] ");
1372                                 } else {
1373                                         fprintf(f, " [%d] ", attr->offset);
1374                                 }
1375                         }
1376                         break;
1377                 case dump_node_info_txt:
1378                         arch_dump_reqs_and_registers(f, irn);
1379
1380                         if (be_has_frame_entity(irn)) {
1381                                 be_frame_attr_t *a = (be_frame_attr_t *) at;
1382                                 if (a->ent) {
1383                                         unsigned size = get_type_size_bytes(get_entity_type(a->ent));
1384                                         ir_fprintf(f, "frame entity: %+F, offset 0x%x (%d), size 0x%x (%d) bytes\n",
1385                                           a->ent, a->offset, a->offset, size, size);
1386                                 }
1387
1388                         }
1389
1390                         switch (get_irn_opcode(irn)) {
1391                         case beo_IncSP:
1392                                 {
1393                                         be_incsp_attr_t *a = (be_incsp_attr_t *) at;
1394                                         if (a->offset == BE_STACK_FRAME_SIZE_EXPAND)
1395                                                 fprintf(f, "offset: FRAME_SIZE\n");
1396                                         else if (a->offset == BE_STACK_FRAME_SIZE_SHRINK)
1397                                                 fprintf(f, "offset: -FRAME SIZE\n");
1398                                         else
1399                                                 fprintf(f, "offset: %u\n", a->offset);
1400                                 }
1401                                 break;
1402                         case beo_Call:
1403                                 {
1404                                         be_call_attr_t *a = (be_call_attr_t *) at;
1405
1406                                         if (a->ent)
1407                                                 fprintf(f, "\ncalling: %s\n", get_entity_name(a->ent));
1408                                 }
1409                                 break;
1410                         case beo_MemPerm:
1411                                 {
1412                                         int i;
1413                                         for (i = 0; i < be_get_MemPerm_entity_arity(irn); ++i) {
1414                                                 ir_entity *in, *out;
1415                                                 in = be_get_MemPerm_in_entity(irn, i);
1416                                                 out = be_get_MemPerm_out_entity(irn, i);
1417                                                 if (in) {
1418                                                         fprintf(f, "\nin[%d]: %s\n", i, get_entity_name(in));
1419                                                 }
1420                                                 if (out) {
1421                                                         fprintf(f, "\nout[%d]: %s\n", i, get_entity_name(out));
1422                                                 }
1423                                         }
1424                                 }
1425                                 break;
1426
1427                         default:
1428                                 break;
1429                         }
1430         }
1431
1432         return 0;
1433 }
1434
1435 /**
1436  * ir_op-Operation:
1437  * Copies the backend specific attributes from old node to new node.
1438  */
1439 static void copy_attr(const ir_node *old_node, ir_node *new_node)
1440 {
1441         const be_node_attr_t *old_attr = get_irn_attr_const(old_node);
1442         be_node_attr_t *new_attr = get_irn_attr(new_node);
1443         ir_graph       *irg      = get_irn_irg(new_node);
1444         struct obstack *obst     = be_get_birg_obst(irg);
1445         backend_info_t *old_info = be_get_info(old_node);
1446         backend_info_t *new_info = be_get_info(new_node);
1447
1448         assert(is_be_node(old_node));
1449         assert(is_be_node(new_node));
1450
1451         memcpy(new_attr, old_attr, get_op_attr_size(get_irn_op(old_node)));
1452
1453         if (old_info->out_infos != NULL) {
1454                 unsigned n_outs = ARR_LEN(old_info->out_infos);
1455                 /* need dyanmic out infos? */
1456                 if (be_is_Barrier(new_node)     || be_is_Perm(new_node)) {
1457                         new_info->out_infos = NEW_ARR_F(reg_out_info_t, n_outs);
1458                 } else {
1459                         new_info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_outs);
1460                 }
1461                 memcpy(new_info->out_infos, old_info->out_infos,
1462                            n_outs * sizeof(new_info->out_infos[0]));
1463         } else {
1464                 new_info->out_infos = NULL;
1465         }
1466
1467         /* input infos */
1468         if (old_attr->reg_data != NULL) {
1469                 unsigned n_ins = ARR_LEN(old_attr->reg_data);
1470                 /* need dynamic in infos? */
1471                 if (get_irn_op(old_node)->opar == oparity_dynamic) {
1472                         new_attr->reg_data = NEW_ARR_F(be_reg_data_t, n_ins);
1473                 } else {
1474                         new_attr->reg_data = NEW_ARR_D(be_reg_data_t, obst, n_ins);
1475                 }
1476                 memcpy(new_attr->reg_data, old_attr->reg_data,
1477                        n_ins * sizeof(be_reg_data_t));
1478         } else {
1479                 new_attr->reg_data = NULL;
1480         }
1481 }
1482
1483 static const ir_op_ops be_node_op_ops = {
1484         firm_default_hash,
1485         NULL,
1486         NULL,
1487         NULL,
1488         NULL,
1489         NULL,
1490         NULL,
1491         NULL,
1492         NULL,
1493         copy_attr,
1494         NULL,
1495         NULL,
1496         NULL,
1497         NULL,
1498         NULL,
1499         dump_node,
1500         NULL,
1501         &be_node_irn_ops
1502 };
1503
1504 int is_be_node(const ir_node *irn)
1505 {
1506         return get_op_ops(get_irn_op(irn))->be_ops == &be_node_irn_ops;
1507 }
1508
1509 void be_init_op(void)
1510 {
1511         ir_opcode opc;
1512
1513         /* Acquire all needed opcodes. */
1514         op_be_Spill      = new_ir_op(beo_Spill,     "be_Spill",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
1515         op_be_Reload     = new_ir_op(beo_Reload,    "be_Reload",    op_pin_state_pinned, N,   oparity_zero,     0, sizeof(be_frame_attr_t),   &be_node_op_ops);
1516         op_be_Perm       = new_ir_op(beo_Perm,      "be_Perm",      op_pin_state_pinned, N,   oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
1517         op_be_MemPerm    = new_ir_op(beo_MemPerm,   "be_MemPerm",   op_pin_state_pinned, N,   oparity_variable, 0, sizeof(be_memperm_attr_t), &be_node_op_ops);
1518         op_be_Copy       = new_ir_op(beo_Copy,      "be_Copy",      op_pin_state_floats, N,   oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
1519         op_be_Keep       = new_ir_op(beo_Keep,      "be_Keep",      op_pin_state_floats, K,   oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
1520         op_be_CopyKeep   = new_ir_op(beo_CopyKeep,  "be_CopyKeep",  op_pin_state_floats, K,   oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
1521         op_be_Call       = new_ir_op(beo_Call,      "be_Call",      op_pin_state_pinned, F|M, oparity_variable, 0, sizeof(be_call_attr_t),    &be_node_op_ops);
1522         op_be_Return     = new_ir_op(beo_Return,    "be_Return",    op_pin_state_pinned, X,   oparity_dynamic,  0, sizeof(be_return_attr_t),  &be_node_op_ops);
1523         op_be_AddSP      = new_ir_op(beo_AddSP,     "be_AddSP",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
1524         op_be_SubSP      = new_ir_op(beo_SubSP,     "be_SubSP",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
1525         op_be_IncSP      = new_ir_op(beo_IncSP,     "be_IncSP",     op_pin_state_pinned, N,   oparity_unary,    0, sizeof(be_incsp_attr_t),   &be_node_op_ops);
1526         op_be_Start      = new_ir_op(beo_Start,     "be_Start",     op_pin_state_pinned, N,   oparity_zero,     0, sizeof(be_node_attr_t),    &be_node_op_ops);
1527         op_be_FrameAddr  = new_ir_op(beo_FrameAddr, "be_FrameAddr", op_pin_state_floats, N,   oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
1528         op_be_Barrier    = new_ir_op(beo_Barrier,   "be_Barrier",   op_pin_state_pinned, N,   oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
1529
1530         op_be_Spill->ops.node_cmp_attr     = FrameAddr_cmp_attr;
1531         op_be_Reload->ops.node_cmp_attr    = FrameAddr_cmp_attr;
1532         op_be_Perm->ops.node_cmp_attr      = node_cmp_attr;
1533         op_be_MemPerm->ops.node_cmp_attr   = node_cmp_attr;
1534         op_be_Copy->ops.node_cmp_attr      = node_cmp_attr;
1535         op_be_Keep->ops.node_cmp_attr      = node_cmp_attr;
1536         op_be_CopyKeep->ops.node_cmp_attr  = node_cmp_attr;
1537         op_be_Call->ops.node_cmp_attr      = Call_cmp_attr;
1538         op_be_Return->ops.node_cmp_attr    = Return_cmp_attr;
1539         op_be_AddSP->ops.node_cmp_attr     = node_cmp_attr;
1540         op_be_SubSP->ops.node_cmp_attr     = node_cmp_attr;
1541         op_be_IncSP->ops.node_cmp_attr     = IncSP_cmp_attr;
1542         op_be_Start->ops.node_cmp_attr     = node_cmp_attr;
1543         op_be_FrameAddr->ops.node_cmp_attr = FrameAddr_cmp_attr;
1544         op_be_Barrier->ops.node_cmp_attr   = node_cmp_attr;
1545
1546         /* attach out dummy_ops to middle end nodes */
1547         for (opc = iro_First; opc <= iro_Last; ++opc) {
1548                 ir_op *op = get_irp_opcode(opc);
1549                 assert(op->ops.be_ops == NULL);
1550                 op->ops.be_ops = &dummy_be_irn_ops;
1551         }
1552
1553         op_Phi->ops.be_ops = &phi_irn_ops;
1554 }