Panic in case of an invalid solution.
[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 "bitfiddle.h"
41 #include "raw_bitset.h"
42 #include "error.h"
43 #include "array_t.h"
44
45 #include "irop_t.h"
46 #include "irmode_t.h"
47 #include "irnode_t.h"
48 #include "ircons_t.h"
49 #include "irprintf.h"
50 #include "irgwalk.h"
51 #include "iropt_t.h"
52
53 #include "be_t.h"
54 #include "belive_t.h"
55 #include "besched.h"
56 #include "benode.h"
57 #include "bearch.h"
58
59 #include "beirgmod.h"
60
61 #define get_irn_attr(irn) get_irn_generic_attr(irn)
62 #define get_irn_attr_const(irn) get_irn_generic_attr_const(irn)
63
64 typedef struct {
65         const arch_register_req_t *in_req;
66 } be_reg_data_t;
67
68 /** The generic be nodes attribute type. */
69 typedef struct {
70         be_reg_data_t *reg_data;
71 } be_node_attr_t;
72
73 /** The be_Return nodes attribute type. */
74 typedef struct {
75         be_node_attr_t node_attr;     /**< base attributes of every be node. */
76         int            num_ret_vals;  /**< number of return values */
77         unsigned       pop;           /**< number of bytes that should be popped */
78         int            emit_pop;      /**< if set, emit pop bytes, even if pop = 0 */
79 } be_return_attr_t;
80
81 /** The be_IncSP attribute type. */
82 typedef struct {
83         be_node_attr_t node_attr;   /**< base attributes of every be node. */
84         int            offset;      /**< The offset by which the stack shall be expanded/shrinked. */
85         int            align;       /**< whether stack should be aligned after the
86                                          IncSP */
87 } be_incsp_attr_t;
88
89 /** The be_Frame attribute type. */
90 typedef struct {
91         be_node_attr_t  node_attr;   /**< base attributes of every be node. */
92         ir_entity      *ent;
93         int             offset;
94 } be_frame_attr_t;
95
96 /** The be_Call attribute type. */
97 typedef struct {
98         be_node_attr_t  node_attr;  /**< base attributes of every be node. */
99         ir_entity      *ent;        /**< The called entity if this is a static call. */
100         unsigned        pop;
101         ir_type        *call_tp;    /**< The call type, copied from the original Call node. */
102 } be_call_attr_t;
103
104 typedef struct {
105         be_node_attr_t   node_attr;  /**< base attributes of every be node. */
106         ir_entity      **in_entities;
107         ir_entity      **out_entities;
108 } be_memperm_attr_t;
109
110 ir_op *op_be_Spill;
111 ir_op *op_be_Reload;
112 ir_op *op_be_Perm;
113 ir_op *op_be_MemPerm;
114 ir_op *op_be_Copy;
115 ir_op *op_be_Keep;
116 ir_op *op_be_CopyKeep;
117 ir_op *op_be_Call;
118 ir_op *op_be_Return;
119 ir_op *op_be_IncSP;
120 ir_op *op_be_AddSP;
121 ir_op *op_be_SubSP;
122 ir_op *op_be_Start;
123 ir_op *op_be_FrameAddr;
124 ir_op *op_be_Barrier;
125
126 static const ir_op_ops be_node_op_ops;
127
128 #define N   irop_flag_none
129 #define L   irop_flag_labeled
130 #define C   irop_flag_commutative
131 #define X   irop_flag_cfopcode
132 #define F   irop_flag_fragile
133 #define Y   irop_flag_forking
134 #define H   irop_flag_highlevel
135 #define c   irop_flag_constlike
136 #define K   irop_flag_keep
137 #define M   irop_flag_uses_memory
138
139 /**
140  * Compare two be node attributes.
141  *
142  * @return zero if both attributes are identically
143  */
144 static int node_cmp_attr(ir_node *a, ir_node *b)
145 {
146         const be_node_attr_t *a_attr = get_irn_attr_const(a);
147         const be_node_attr_t *b_attr = get_irn_attr_const(b);
148         int i, len = ARR_LEN(a_attr->reg_data);
149
150         if (len != ARR_LEN(b_attr->reg_data))
151                 return 1;
152
153         if (!be_nodes_equal(a, b))
154                 return 1;
155
156         for (i = len - 1; i >= 0; --i) {
157                 if (!reg_reqs_equal(a_attr->reg_data[i].in_req,
158                                     b_attr->reg_data[i].in_req))
159                         return 1;
160         }
161
162         return 0;
163 }
164
165 /**
166  * Compare the attributes of two be_FrameAddr nodes.
167  *
168  * @return zero if both nodes have identically attributes
169  */
170 static int FrameAddr_cmp_attr(ir_node *a, ir_node *b)
171 {
172         const be_frame_attr_t *a_attr = get_irn_attr_const(a);
173         const be_frame_attr_t *b_attr = get_irn_attr_const(b);
174
175         if (a_attr->ent != b_attr->ent || a_attr->offset != b_attr->offset)
176                 return 1;
177
178         return node_cmp_attr(a, b);
179 }
180
181 /**
182  * Compare the attributes of two be_Return nodes.
183  *
184  * @return zero if both nodes have identically attributes
185  */
186 static int Return_cmp_attr(ir_node *a, ir_node *b)
187 {
188         const be_return_attr_t *a_attr = get_irn_attr_const(a);
189         const be_return_attr_t *b_attr = get_irn_attr_const(b);
190
191         if (a_attr->num_ret_vals != b_attr->num_ret_vals)
192                 return 1;
193         if (a_attr->pop != b_attr->pop)
194                 return 1;
195         if (a_attr->emit_pop != b_attr->emit_pop)
196                 return 1;
197
198         return node_cmp_attr(a, b);
199 }
200
201 /**
202  * Compare the attributes of two be_IncSP nodes.
203  *
204  * @return zero if both nodes have identically attributes
205  */
206 static int IncSP_cmp_attr(ir_node *a, ir_node *b)
207 {
208         const be_incsp_attr_t *a_attr = get_irn_attr_const(a);
209         const be_incsp_attr_t *b_attr = get_irn_attr_const(b);
210
211         if (a_attr->offset != b_attr->offset)
212                 return 1;
213
214         return node_cmp_attr(a, b);
215 }
216
217 /**
218  * Compare the attributes of two be_Call nodes.
219  *
220  * @return zero if both nodes have identically attributes
221  */
222 static int Call_cmp_attr(ir_node *a, ir_node *b)
223 {
224         const be_call_attr_t *a_attr = get_irn_attr_const(a);
225         const be_call_attr_t *b_attr = get_irn_attr_const(b);
226
227         if (a_attr->ent != b_attr->ent ||
228                 a_attr->call_tp != b_attr->call_tp)
229                 return 1;
230
231         return node_cmp_attr(a, b);
232 }
233
234 static arch_register_req_t *allocate_reg_req(const ir_node *node)
235 {
236         ir_graph       *irg  = get_irn_irg(node);
237         struct obstack *obst = be_get_be_obst(irg);
238
239         arch_register_req_t *req = obstack_alloc(obst, sizeof(*req));
240         memset(req, 0, sizeof(*req));
241         return req;
242 }
243
244 void be_set_constr_in(ir_node *node, int pos, const arch_register_req_t *req)
245 {
246         const be_node_attr_t *attr = get_irn_attr_const(node);
247         be_reg_data_t *rd = &attr->reg_data[pos];
248         assert(pos < ARR_LEN(attr->reg_data));
249         rd->in_req = req;
250 }
251
252 void be_set_constr_out(ir_node *node, int pos, const arch_register_req_t *req)
253 {
254         backend_info_t *info = be_get_info(node);
255         info->out_infos[pos].req = req;
256 }
257
258 /**
259  * Initializes the generic attribute of all be nodes and return it.
260  */
261 static void *init_node_attr(ir_node *node, int n_inputs, int n_outputs)
262 {
263         ir_graph       *irg  = get_irn_irg(node);
264         struct obstack *obst = be_get_be_obst(irg);
265         be_node_attr_t *a    = get_irn_attr(node);
266         backend_info_t *info = be_get_info(node);
267
268         memset(a, 0, sizeof(get_op_attr_size(get_irn_op(node))));
269
270         if (n_inputs >= 0) {
271                 int i;
272                 a->reg_data = NEW_ARR_D(be_reg_data_t, obst, n_inputs);
273                 for (i = 0; i < n_inputs; ++i) {
274                         a->reg_data[i].in_req = arch_no_register_req;
275                 }
276         } else {
277                 a->reg_data = NEW_ARR_F(be_reg_data_t, 0);
278         }
279
280         if (n_outputs >= 0) {
281                 int i;
282                 info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_outputs);
283                 memset(info->out_infos, 0, n_outputs * sizeof(info->out_infos[0]));
284                 for (i = 0; i < n_outputs; ++i) {
285                         info->out_infos[i].req = arch_no_register_req;
286                 }
287         } else {
288                 info->out_infos = NEW_ARR_F(reg_out_info_t, 0);
289         }
290
291         return a;
292 }
293
294 static void add_register_req_out(ir_node *node)
295 {
296         backend_info_t *info = be_get_info(node);
297         reg_out_info_t  out_info;
298         memset(&out_info, 0, sizeof(out_info));
299         out_info.req = arch_no_register_req;
300         ARR_APP1(reg_out_info_t, info->out_infos, out_info);
301 }
302
303 static void add_register_req_in(ir_node *node)
304 {
305         be_node_attr_t *a    = get_irn_attr(node);
306         be_reg_data_t   regreq;
307         memset(&regreq, 0, sizeof(regreq));
308         regreq.in_req = arch_no_register_req;
309         ARR_APP1(be_reg_data_t, a->reg_data, regreq);
310 }
311
312 ir_node *be_new_Spill(const arch_register_class_t *cls,
313                 const arch_register_class_t *cls_frame, ir_node *bl,
314                 ir_node *frame, ir_node *to_spill)
315 {
316         be_frame_attr_t *a;
317         ir_node         *in[2];
318         ir_node         *res;
319         ir_graph        *irg = get_Block_irg(bl);
320
321         in[0]     = frame;
322         in[1]     = to_spill;
323         res       = new_ir_node(NULL, irg, bl, op_be_Spill, mode_M, 2, in);
324         a         = init_node_attr(res, 2, 1);
325         a->ent    = NULL;
326         a->offset = 0;
327
328         be_node_set_reg_class_in(res, be_pos_Spill_frame, cls_frame);
329         be_node_set_reg_class_in(res, be_pos_Spill_val, cls);
330         /*
331          * For spills and reloads, we return "none" as requirement for frame
332          * pointer, so every input is ok. Some backends need this (STA).
333          * Matze: we should investigate if this is really needed, this solution
334          *        looks very hacky to me
335          */
336         be_set_constr_in(res, be_pos_Spill_frame, arch_no_register_req);
337
338         arch_set_out_register_req(res, 0, arch_no_register_req);
339
340         return res;
341 }
342
343 ir_node *be_new_Reload(const arch_register_class_t *cls,
344                 const arch_register_class_t *cls_frame, ir_node *block,
345                 ir_node *frame, ir_node *mem, ir_mode *mode)
346 {
347         ir_node  *in[2];
348         ir_node  *res;
349         ir_graph *irg = get_Block_irg(block);
350
351         in[0] = frame;
352         in[1] = mem;
353         res   = new_ir_node(NULL, irg, block, op_be_Reload, mode, 2, in);
354
355         init_node_attr(res, 2, 1);
356         be_node_set_reg_class_out(res, 0, cls);
357
358         be_node_set_reg_class_in(res, be_pos_Reload_frame, cls_frame);
359         arch_irn_set_flags(res, arch_irn_flags_rematerializable);
360
361         /*
362          * For spills and reloads, we return "none" as requirement for frame
363          * pointer, so every input is ok. Some backends need this (e.g. STA).
364          * Matze: we should investigate if this is really needed, this solution
365          *        looks very hacky to me
366          */
367         be_set_constr_in(res, be_pos_Reload_frame, arch_no_register_req);
368
369         return res;
370 }
371
372 ir_node *be_get_Reload_mem(const ir_node *irn)
373 {
374         assert(be_is_Reload(irn));
375         return get_irn_n(irn, be_pos_Reload_mem);
376 }
377
378 ir_node *be_get_Reload_frame(const ir_node *irn)
379 {
380         assert(be_is_Reload(irn));
381         return get_irn_n(irn, be_pos_Reload_frame);
382 }
383
384 ir_node *be_get_Spill_val(const ir_node *irn)
385 {
386         assert(be_is_Spill(irn));
387         return get_irn_n(irn, be_pos_Spill_val);
388 }
389
390 ir_node *be_get_Spill_frame(const ir_node *irn)
391 {
392         assert(be_is_Spill(irn));
393         return get_irn_n(irn, be_pos_Spill_frame);
394 }
395
396 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_node *block,
397                      int n, ir_node *in[])
398 {
399         int      i;
400         ir_graph *irg = get_Block_irg(block);
401
402         ir_node *irn = new_ir_node(NULL, irg, block, op_be_Perm, mode_T, n, in);
403         init_node_attr(irn, n, n);
404         for (i = 0; i < n; ++i) {
405                 be_node_set_reg_class_in(irn, i, cls);
406                 be_node_set_reg_class_out(irn, i, cls);
407         }
408
409         return irn;
410 }
411
412 void be_Perm_reduce(ir_node *perm, int new_size, int *map)
413 {
414         int            arity      = get_irn_arity(perm);
415         be_reg_data_t  *old_data  = ALLOCAN(be_reg_data_t, arity);
416         reg_out_info_t *old_infos = ALLOCAN(reg_out_info_t, arity);
417         be_node_attr_t *attr      = get_irn_attr(perm);
418         backend_info_t *info      = be_get_info(perm);
419         ir_node        **new_in;
420
421         int i;
422
423         assert(be_is_Perm(perm));
424         assert(new_size <= arity);
425
426         new_in = alloca(new_size * sizeof(*new_in));
427
428         /* save the old register data */
429         memcpy(old_data, attr->reg_data, arity * sizeof(old_data[0]));
430         memcpy(old_infos, info->out_infos, arity * sizeof(old_infos[0]));
431
432         /* compose the new in array and set the new register data directly in place */
433         for (i = 0; i < new_size; ++i) {
434                 int idx = map[i];
435                 new_in[i]          = get_irn_n(perm, idx);
436                 attr->reg_data[i]  = old_data[idx];
437                 info->out_infos[i] = old_infos[idx];
438         }
439
440         set_irn_in(perm, new_size, new_in);
441 }
442
443 ir_node *be_new_MemPerm(ir_node *block, int n, ir_node *in[])
444 {
445         ir_graph                     *irg       = get_Block_irg(block);
446         const arch_env_t             *arch_env  = be_get_irg_arch_env(irg);
447         ir_node                      *frame     = get_irg_frame(irg);
448         const arch_register_t        *sp        = arch_env->sp;
449         ir_node                      *irn;
450         be_memperm_attr_t            *attr;
451         ir_node                     **real_in;
452
453         real_in = ALLOCAN(ir_node*, n + 1);
454         real_in[0] = frame;
455         memcpy(&real_in[1], in, n * sizeof(real_in[0]));
456
457         irn = new_ir_node(NULL, irg, block, op_be_MemPerm, mode_T, n+1, real_in);
458
459         init_node_attr(irn, n + 1, n);
460         be_node_set_reg_class_in(irn, 0, sp->reg_class);
461
462         attr               = get_irn_attr(irn);
463         attr->in_entities  = OALLOCNZ(irg->obst, ir_entity*, n);
464         attr->out_entities = OALLOCNZ(irg->obst, ir_entity*, n);
465
466         return irn;
467 }
468
469 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_node *bl, ir_node *op)
470 {
471         ir_node *in[1];
472         ir_node *res;
473         arch_register_req_t *req;
474         ir_graph *irg = get_Block_irg(bl);
475
476         in[0] = op;
477         res   = new_ir_node(NULL, irg, bl, op_be_Copy, get_irn_mode(op), 1, in);
478         init_node_attr(res, 1, 1);
479         be_node_set_reg_class_in(res, 0, cls);
480         be_node_set_reg_class_out(res, 0, cls);
481
482         req = allocate_reg_req(res);
483         req->cls        = cls;
484         req->type       = arch_register_req_type_should_be_same;
485         req->other_same = 1U << 0;
486         req->width      = 1;
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 static bool 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 true;
842         default:
843                 return false;
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 const arch_register_req_t *be_create_reg_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         req->width   = 1;
925         return req;
926 }
927
928 void be_set_constr_single_reg_in(ir_node *node, int pos,
929                 const arch_register_t *reg, arch_register_req_type_t additional_types)
930 {
931         const arch_register_req_t *req;
932
933         if (additional_types == 0) {
934                 req = reg->single_req;
935         } else {
936                 ir_graph       *irg  = get_irn_irg(node);
937                 struct obstack *obst = be_get_be_obst(irg);
938                 req = be_create_reg_req(obst, reg, additional_types);
939         }
940         be_set_constr_in(node, pos, req);
941 }
942
943 void be_set_constr_single_reg_out(ir_node *node, int pos,
944                 const arch_register_t *reg, arch_register_req_type_t additional_types)
945 {
946         const arch_register_req_t *req;
947
948         /* if we have an ignore register, add ignore flag and just assign it */
949         if (reg->type & arch_register_type_ignore) {
950                 additional_types |= arch_register_req_type_ignore;
951         }
952
953         if (additional_types == 0) {
954                 req = reg->single_req;
955         } else {
956                 ir_graph       *irg  = get_irn_irg(node);
957                 struct obstack *obst = be_get_be_obst(irg);
958                 req = be_create_reg_req(obst, reg, additional_types);
959         }
960
961         arch_irn_set_register(node, pos, reg);
962         be_set_constr_out(node, pos, req);
963 }
964
965 void be_node_set_reg_class_in(ir_node *irn, int pos,
966                               const arch_register_class_t *cls)
967 {
968         be_set_constr_in(irn, pos, cls->class_req);
969 }
970
971 void be_node_set_reg_class_out(ir_node *irn, int pos,
972                                const arch_register_class_t *cls)
973 {
974         be_set_constr_out(irn, pos, cls->class_req);
975 }
976
977 ir_node *be_get_IncSP_pred(ir_node *irn)
978 {
979         assert(be_is_IncSP(irn));
980         return get_irn_n(irn, 0);
981 }
982
983 void be_set_IncSP_pred(ir_node *incsp, ir_node *pred)
984 {
985         assert(be_is_IncSP(incsp));
986         set_irn_n(incsp, 0, pred);
987 }
988
989 void be_set_IncSP_offset(ir_node *irn, int offset)
990 {
991         be_incsp_attr_t *a = get_irn_attr(irn);
992         assert(be_is_IncSP(irn));
993         a->offset = offset;
994 }
995
996 int be_get_IncSP_offset(const ir_node *irn)
997 {
998         const be_incsp_attr_t *a = get_irn_attr_const(irn);
999         assert(be_is_IncSP(irn));
1000         return a->offset;
1001 }
1002
1003 int be_get_IncSP_align(const ir_node *irn)
1004 {
1005         const be_incsp_attr_t *a = get_irn_attr_const(irn);
1006         assert(be_is_IncSP(irn));
1007         return a->align;
1008 }
1009
1010 ir_node *be_spill(ir_node *block, ir_node *irn)
1011 {
1012         ir_graph                    *irg       = get_Block_irg(block);
1013         ir_node                     *frame     = get_irg_frame(irg);
1014         const arch_register_class_t *cls       = arch_get_irn_reg_class_out(irn);
1015         const arch_register_class_t *cls_frame = arch_get_irn_reg_class_out(frame);
1016         ir_node                     *spill;
1017
1018         spill = be_new_Spill(cls, cls_frame, block, frame, irn);
1019         return spill;
1020 }
1021
1022 ir_node *be_reload(const arch_register_class_t *cls, ir_node *insert, ir_mode *mode, ir_node *spill)
1023 {
1024         ir_node  *reload;
1025         ir_node  *bl    = is_Block(insert) ? insert : get_nodes_block(insert);
1026         ir_graph *irg   = get_Block_irg(bl);
1027         ir_node  *frame = get_irg_frame(irg);
1028         const arch_register_class_t *cls_frame = arch_get_irn_reg_class_out(frame);
1029
1030         assert(be_is_Spill(spill) || (is_Phi(spill) && get_irn_mode(spill) == mode_M));
1031
1032         reload = be_new_Reload(cls, cls_frame, bl, frame, spill, mode);
1033
1034         if (is_Block(insert)) {
1035                 insert = sched_skip(insert, 0, sched_skip_cf_predicator, NULL);
1036                 sched_add_after(insert, reload);
1037         } else {
1038                 sched_add_before(insert, reload);
1039         }
1040
1041         return reload;
1042 }
1043
1044 /*
1045   ____              ____
1046  |  _ \ ___  __ _  |  _ \ ___  __ _ ___
1047  | |_) / _ \/ _` | | |_) / _ \/ _` / __|
1048  |  _ <  __/ (_| | |  _ <  __/ (_| \__ \
1049  |_| \_\___|\__, | |_| \_\___|\__, |___/
1050             |___/                |_|
1051
1052 */
1053
1054
1055 static const arch_register_req_t *be_node_get_in_reg_req(
1056                 const ir_node *irn, int pos)
1057 {
1058         const be_node_attr_t *a = get_irn_attr_const(irn);
1059
1060         assert(pos >= 0);
1061         if (pos >= get_irn_arity(irn) || pos >= ARR_LEN(a->reg_data))
1062                 return arch_no_register_req;
1063
1064         return a->reg_data[pos].in_req;
1065 }
1066
1067 static arch_irn_class_t be_node_classify(const ir_node *irn)
1068 {
1069         switch (get_irn_opcode(irn)) {
1070                 case beo_Spill:  return arch_irn_class_spill;
1071                 case beo_Reload: return arch_irn_class_reload;
1072                 case beo_Perm:   return arch_irn_class_perm;
1073                 case beo_Copy:   return arch_irn_class_copy;
1074                 default:         return 0;
1075         }
1076 }
1077
1078 static ir_entity *be_node_get_frame_entity(const ir_node *irn)
1079 {
1080         return be_get_frame_entity(irn);
1081 }
1082
1083 void be_node_set_frame_entity(ir_node *irn, ir_entity *ent)
1084 {
1085         be_frame_attr_t *a;
1086
1087         assert(be_has_frame_entity(irn));
1088
1089         a = get_irn_attr(irn);
1090         a->ent = ent;
1091 }
1092
1093 static void be_node_set_frame_offset(ir_node *irn, int offset)
1094 {
1095         be_frame_attr_t *a;
1096
1097         if (!be_has_frame_entity(irn))
1098                 return;
1099
1100         a = get_irn_attr(irn);
1101         a->offset = offset;
1102 }
1103
1104 static int be_node_get_sp_bias(const ir_node *irn)
1105 {
1106         if (be_is_IncSP(irn))
1107                 return be_get_IncSP_offset(irn);
1108         if (be_is_Call(irn))
1109                 return -(int)be_Call_get_pop(irn);
1110
1111         return 0;
1112 }
1113
1114 /*
1115   ___ ____  _   _   _   _                 _ _
1116  |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1117   | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1118   | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1119  |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1120
1121 */
1122
1123 /* for be nodes */
1124 static const arch_irn_ops_t be_node_irn_ops = {
1125         be_node_get_in_reg_req,
1126         be_node_classify,
1127         be_node_get_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_offset(ir_node *node, int bias)
1157 {
1158         (void) node;
1159         (void) bias;
1160         panic("dummy_set_frame_offset() should not be called");
1161 }
1162
1163 static int dummy_get_sp_bias(const ir_node *node)
1164 {
1165         (void) node;
1166         return 0;
1167 }
1168
1169 /* for "middleend" nodes */
1170 static const arch_irn_ops_t dummy_be_irn_ops = {
1171         dummy_reg_req,
1172         dummy_classify,
1173         dummy_get_frame_entity,
1174         dummy_set_frame_offset,
1175         dummy_get_sp_bias,
1176         NULL,      /* get_inverse           */
1177         NULL,      /* get_op_estimated_cost */
1178         NULL,      /* possible_memory_operand */
1179         NULL,      /* perform_memory_operand */
1180 };
1181
1182 /*
1183   ____  _     _   ___ ____  _   _   _   _                 _ _
1184  |  _ \| |__ (_) |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
1185  | |_) | '_ \| |  | || |_) |  \| | | |_| |/ _` | '_ \ / _` | |/ _ \ '__|
1186  |  __/| | | | |  | ||  _ <| |\  | |  _  | (_| | | | | (_| | |  __/ |
1187  |_|   |_| |_|_| |___|_| \_\_| \_| |_| |_|\__,_|_| |_|\__,_|_|\___|_|
1188
1189 */
1190
1191 ir_node *be_new_Phi(ir_node *block, int n_ins, ir_node **ins, ir_mode *mode,
1192                     const arch_register_class_t *cls)
1193 {
1194         struct obstack *obst = be_get_be_obst(get_irn_irg(block));
1195         backend_info_t *info;
1196
1197         ir_node *phi = new_r_Phi(block, n_ins, ins, mode);
1198         info = be_get_info(phi);
1199         info->out_infos = NEW_ARR_D(reg_out_info_t, obst, 1);
1200         memset(info->out_infos, 0, 1 * sizeof(info->out_infos[0]));
1201         if (cls == NULL) {
1202                 info->out_infos[0].req = arch_no_register_req;
1203         } else {
1204                 info->out_infos[0].req = cls->class_req;
1205         }
1206
1207         return phi;
1208 }
1209
1210 /**
1211  * Guess correct register class of a phi node by looking at its arguments
1212  */
1213 static const arch_register_req_t *get_Phi_reg_req_recursive(const ir_node *phi,
1214                                                             pset **visited)
1215 {
1216         int n = get_irn_arity(phi);
1217         ir_node *op;
1218         int i;
1219
1220         if (*visited && pset_find_ptr(*visited, phi))
1221                 return NULL;
1222
1223         for (i = 0; i < n; ++i) {
1224                 op = get_irn_n(phi, i);
1225                 /* Matze: don't we unnecessary constraint our phis with this?
1226                  * we only need to take the regclass IMO*/
1227                 if (!is_Phi(op))
1228                         return arch_get_register_req_out(op);
1229         }
1230
1231         /*
1232          * The operands of that Phi were all Phis themselves.
1233          * We have to start a DFS for a non-Phi argument now.
1234          */
1235         if (!*visited)
1236                 *visited = pset_new_ptr(16);
1237
1238         pset_insert_ptr(*visited, phi);
1239
1240         for (i = 0; i < n; ++i) {
1241                 const arch_register_req_t *req;
1242                 op = get_irn_n(phi, i);
1243                 req = get_Phi_reg_req_recursive(op, visited);
1244                 if (req != NULL)
1245                         return req;
1246         }
1247
1248         return NULL;
1249 }
1250
1251 static const arch_register_req_t *phi_get_irn_reg_req(const ir_node *node,
1252                                                       int pos)
1253 {
1254         backend_info_t            *info = be_get_info(node);
1255         const arch_register_req_t *req  = info->out_infos[0].req;
1256         (void) pos;
1257
1258         if (req == NULL) {
1259                 if (!mode_is_datab(get_irn_mode(node))) {
1260                         req = arch_no_register_req;
1261                 } else {
1262                         pset *visited = NULL;
1263
1264                         req = get_Phi_reg_req_recursive(node, &visited);
1265                         assert(req->cls != NULL);
1266                         req = req->cls->class_req;
1267
1268                         if (visited != NULL)
1269                                 del_pset(visited);
1270                 }
1271                 info->out_infos[0].req = req;
1272         }
1273
1274         return req;
1275 }
1276
1277 void be_set_phi_reg_req(ir_node *node, const arch_register_req_t *req)
1278 {
1279         backend_info_t *info = be_get_info(node);
1280         info->out_infos[0].req = req;
1281
1282         assert(mode_is_datab(get_irn_mode(node)));
1283 }
1284
1285 void be_dump_phi_reg_reqs(FILE *F, ir_node *node, dump_reason_t reason)
1286 {
1287         switch (reason) {
1288         case dump_node_opcode_txt:
1289                 fputs(get_op_name(get_irn_op(node)), F);
1290                 break;
1291         case dump_node_mode_txt:
1292                 fprintf(F, "%s", get_mode_name(get_irn_mode(node)));
1293                 break;
1294         case dump_node_nodeattr_txt:
1295                 break;
1296         case dump_node_info_txt:
1297         {
1298                 backend_info_t *info = be_get_info(node);
1299                 if (info != NULL && info->out_infos[0].req != NULL) {
1300                         arch_dump_reqs_and_registers(F, node);
1301                 }
1302                 break;
1303         }
1304
1305         default:
1306                 break;
1307         }
1308 }
1309
1310 static const arch_irn_ops_t phi_irn_ops = {
1311         phi_get_irn_reg_req,
1312         dummy_classify,
1313         dummy_get_frame_entity,
1314         dummy_set_frame_offset,
1315         dummy_get_sp_bias,
1316         NULL,    /* get_inverse             */
1317         NULL,    /* get_op_estimated_cost   */
1318         NULL,    /* possible_memory_operand */
1319         NULL,    /* perform_memory_operand  */
1320 };
1321
1322 /*
1323   _   _           _        ____                        _
1324  | \ | | ___   __| | ___  |  _ \ _   _ _ __ ___  _ __ (_)_ __   __ _
1325  |  \| |/ _ \ / _` |/ _ \ | | | | | | | '_ ` _ \| '_ \| | '_ \ / _` |
1326  | |\  | (_) | (_| |  __/ | |_| | |_| | | | | | | |_) | | | | | (_| |
1327  |_| \_|\___/ \__,_|\___| |____/ \__,_|_| |_| |_| .__/|_|_| |_|\__, |
1328                                                 |_|            |___/
1329 */
1330
1331 /**
1332  * ir_op-Operation: dump a be node to file
1333  */
1334 static void dump_node(FILE *f, ir_node *irn, dump_reason_t reason)
1335 {
1336         assert(is_be_node(irn));
1337
1338         switch (reason) {
1339                 case dump_node_opcode_txt:
1340                         fputs(get_op_name(get_irn_op(irn)), f);
1341                         break;
1342                 case dump_node_mode_txt:
1343                         if (be_is_Copy(irn) || be_is_CopyKeep(irn)) {
1344                                 fprintf(f, "%s", get_mode_name(get_irn_mode(irn)));
1345                         }
1346                         break;
1347                 case dump_node_nodeattr_txt:
1348                         if (be_is_Call(irn)) {
1349                                 const be_call_attr_t *a = get_irn_generic_attr_const(irn);
1350                                 if (a->ent)
1351                                         fprintf(f, " [%s] ", get_entity_name(a->ent));
1352                         }
1353                         if (be_is_IncSP(irn)) {
1354                                 const be_incsp_attr_t *attr = get_irn_generic_attr_const(irn);
1355                                 if (attr->offset == BE_STACK_FRAME_SIZE_EXPAND) {
1356                                         fprintf(f, " [Setup Stackframe] ");
1357                                 } else if (attr->offset == BE_STACK_FRAME_SIZE_SHRINK) {
1358                                         fprintf(f, " [Destroy Stackframe] ");
1359                                 } else {
1360                                         fprintf(f, " [%d] ", attr->offset);
1361                                 }
1362                         }
1363                         break;
1364                 case dump_node_info_txt:
1365                         arch_dump_reqs_and_registers(f, irn);
1366
1367                         if (be_has_frame_entity(irn)) {
1368                                 const be_frame_attr_t *a = get_irn_generic_attr_const(irn);
1369                                 if (a->ent) {
1370                                         unsigned size = get_type_size_bytes(get_entity_type(a->ent));
1371                                         ir_fprintf(f, "frame entity: %+F, offset 0x%x (%d), size 0x%x (%d) bytes\n",
1372                                           a->ent, a->offset, a->offset, size, size);
1373                                 }
1374
1375                         }
1376
1377                         switch (get_irn_opcode(irn)) {
1378                         case beo_IncSP: {
1379                                 const be_incsp_attr_t *a = get_irn_generic_attr_const(irn);
1380                                 fprintf(f, "align: %d\n", a->align);
1381                                 if (a->offset == BE_STACK_FRAME_SIZE_EXPAND)
1382                                         fprintf(f, "offset: FRAME_SIZE\n");
1383                                 else if (a->offset == BE_STACK_FRAME_SIZE_SHRINK)
1384                                         fprintf(f, "offset: -FRAME SIZE\n");
1385                                 else
1386                                         fprintf(f, "offset: %d\n", a->offset);
1387                                 break;
1388                         }
1389                         case beo_Call: {
1390                                 const be_call_attr_t *a = get_irn_generic_attr_const(irn);
1391
1392                                 if (a->ent)
1393                                         fprintf(f, "\ncalling: %s\n", get_entity_name(a->ent));
1394                                 break;
1395                         }
1396                         case beo_MemPerm: {
1397                                 int i;
1398                                 for (i = 0; i < be_get_MemPerm_entity_arity(irn); ++i) {
1399                                         ir_entity *in, *out;
1400                                         in = be_get_MemPerm_in_entity(irn, i);
1401                                         out = be_get_MemPerm_out_entity(irn, i);
1402                                         if (in) {
1403                                                 fprintf(f, "\nin[%d]: %s\n", i, get_entity_name(in));
1404                                         }
1405                                         if (out) {
1406                                                 fprintf(f, "\nout[%d]: %s\n", i, get_entity_name(out));
1407                                         }
1408                                 }
1409                                 break;
1410                         }
1411
1412                         default:
1413                                 break;
1414                         }
1415         }
1416 }
1417
1418 /**
1419  * ir_op-Operation:
1420  * Copies the backend specific attributes from old node to new node.
1421  */
1422 static void copy_attr(ir_graph *irg, const ir_node *old_node, ir_node *new_node)
1423 {
1424         const be_node_attr_t *old_attr = get_irn_attr_const(old_node);
1425         be_node_attr_t *new_attr = get_irn_attr(new_node);
1426         struct obstack *obst     = be_get_be_obst(irg);
1427         backend_info_t *old_info = be_get_info(old_node);
1428         backend_info_t *new_info = be_get_info(new_node);
1429
1430         assert(is_be_node(old_node));
1431         assert(is_be_node(new_node));
1432
1433         memcpy(new_attr, old_attr, get_op_attr_size(get_irn_op(old_node)));
1434
1435         if (old_info->out_infos != NULL) {
1436                 unsigned n_outs = ARR_LEN(old_info->out_infos);
1437                 /* need dyanmic out infos? */
1438                 if (be_is_Barrier(new_node)     || be_is_Perm(new_node)) {
1439                         new_info->out_infos = NEW_ARR_F(reg_out_info_t, n_outs);
1440                 } else {
1441                         new_info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_outs);
1442                 }
1443                 memcpy(new_info->out_infos, old_info->out_infos,
1444                            n_outs * sizeof(new_info->out_infos[0]));
1445         } else {
1446                 new_info->out_infos = NULL;
1447         }
1448
1449         /* input infos */
1450         if (old_attr->reg_data != NULL) {
1451                 unsigned n_ins = ARR_LEN(old_attr->reg_data);
1452                 /* need dynamic in infos? */
1453                 if (get_irn_op(old_node)->opar == oparity_dynamic) {
1454                         new_attr->reg_data = NEW_ARR_F(be_reg_data_t, n_ins);
1455                 } else {
1456                         new_attr->reg_data = NEW_ARR_D(be_reg_data_t, obst, n_ins);
1457                 }
1458                 memcpy(new_attr->reg_data, old_attr->reg_data,
1459                        n_ins * sizeof(be_reg_data_t));
1460         } else {
1461                 new_attr->reg_data = NULL;
1462         }
1463 }
1464
1465 static const ir_op_ops be_node_op_ops = {
1466         firm_default_hash,
1467         NULL,
1468         NULL,
1469         NULL,
1470         NULL,
1471         NULL,
1472         NULL,
1473         NULL,
1474         NULL,
1475         copy_attr,
1476         NULL,
1477         NULL,
1478         NULL,
1479         NULL,
1480         NULL,
1481         dump_node,
1482         NULL,
1483         &be_node_irn_ops
1484 };
1485
1486 int is_be_node(const ir_node *irn)
1487 {
1488         return get_op_ops(get_irn_op(irn))->be_ops == &be_node_irn_ops;
1489 }
1490
1491 void be_init_op(void)
1492 {
1493         ir_opcode opc;
1494
1495         /* Acquire all needed opcodes. */
1496         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);
1497         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);
1498         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);
1499         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);
1500         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);
1501         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);
1502         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);
1503         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);
1504         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);
1505         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);
1506         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);
1507         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);
1508         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);
1509         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);
1510         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);
1511
1512         op_be_Spill->ops.node_cmp_attr     = FrameAddr_cmp_attr;
1513         op_be_Reload->ops.node_cmp_attr    = FrameAddr_cmp_attr;
1514         op_be_Perm->ops.node_cmp_attr      = node_cmp_attr;
1515         op_be_MemPerm->ops.node_cmp_attr   = node_cmp_attr;
1516         op_be_Copy->ops.node_cmp_attr      = node_cmp_attr;
1517         op_be_Keep->ops.node_cmp_attr      = node_cmp_attr;
1518         op_be_CopyKeep->ops.node_cmp_attr  = node_cmp_attr;
1519         op_be_Call->ops.node_cmp_attr      = Call_cmp_attr;
1520         op_be_Return->ops.node_cmp_attr    = Return_cmp_attr;
1521         op_be_AddSP->ops.node_cmp_attr     = node_cmp_attr;
1522         op_be_SubSP->ops.node_cmp_attr     = node_cmp_attr;
1523         op_be_IncSP->ops.node_cmp_attr     = IncSP_cmp_attr;
1524         op_be_Start->ops.node_cmp_attr     = node_cmp_attr;
1525         op_be_FrameAddr->ops.node_cmp_attr = FrameAddr_cmp_attr;
1526         op_be_Barrier->ops.node_cmp_attr   = node_cmp_attr;
1527
1528         /* attach out dummy_ops to middle end nodes */
1529         for (opc = iro_First; opc <= iro_Last; ++opc) {
1530                 ir_op *op = get_irp_opcode(opc);
1531                 assert(op->ops.be_ops == NULL);
1532                 op->ops.be_ops = &dummy_be_irn_ops;
1533         }
1534
1535         op_Phi->ops.be_ops = &phi_irn_ops;
1536 }