Rename arch_register_req_type_should_be_different to the more appropriate arch_regist...
[libfirm] / ir / be / benode.c
index d85b6f6..f26ec00 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
 #include "belive_t.h"
 #include "besched_t.h"
 #include "benode_t.h"
+#include "bearch_t.h"
 
 #include "beirgmod.h"
 
 #define OUT_POS(x) (-((x) + 1))
 
-/* Sometimes we want to put const nodes into get_irn_generic_attr ... */
-#define get_irn_attr(irn) get_irn_generic_attr((ir_node *) (irn))
-
-static unsigned be_node_tag = FOURCC('B', 'E', 'N', 'O');
+#define get_irn_attr(irn) get_irn_generic_attr(irn)
+#define get_irn_attr_const(irn) get_irn_generic_attr_const(irn)
 
 typedef struct {
        arch_register_req_t req;
@@ -72,45 +71,50 @@ typedef struct {
 
 typedef struct {
        const arch_register_t *reg;
-       be_req_t req;
-       be_req_t in_req;
+       be_req_t               req;
+       be_req_t               in_req;
 } be_reg_data_t;
 
 /** The generic be nodes attribute type. */
 typedef struct {
-       be_reg_data_t         *reg_data;
+       be_reg_data_t *reg_data;
 } be_node_attr_t;
 
 /** The be_Return nodes attribute type. */
 typedef struct {
-       be_node_attr_t node_attr;
+       be_node_attr_t node_attr;     /**< base attributes of every be node. */
        int            num_ret_vals;  /**< number of return values */
+       unsigned       pop;           /**< number of bytes that should be popped */
+       int            emit_pop;      /**< if set, emit pop bytes, even if pop = 0 */
 } be_return_attr_t;
 
-/** The be_Stack attribute type. */
+/** The be_IncSP attribute type. */
 typedef struct {
-       be_node_attr_t node_attr;
-       int offset;           /**< The offset by which the stack shall be expanded/shrinked. */
-} be_stack_attr_t;
+       be_node_attr_t node_attr;   /**< base attributes of every be node. */
+       int            offset;      /**< The offset by which the stack shall be expanded/shrinked. */
+       int            align;       /**< whether stack should be aligned after the
+                                        IncSP */
+} be_incsp_attr_t;
 
 /** The be_Frame attribute type. */
 typedef struct {
-       be_node_attr_t node_attr;
-       ir_entity *ent;
-       int offset;
+       be_node_attr_t  node_attr;   /**< base attributes of every be node. */
+       ir_entity      *ent;
+       int             offset;
 } be_frame_attr_t;
 
 /** The be_Call attribute type. */
 typedef struct {
-       be_node_attr_t node_attr;
-       ir_entity *ent;      /**< The called entity if this is a static call. */
-       ir_type *call_tp;    /**< The call type, copied from the original Call node. */
+       be_node_attr_t  node_attr;  /**< base attributes of every be node. */
+       ir_entity      *ent;        /**< The called entity if this is a static call. */
+       unsigned        pop;
+       ir_type        *call_tp;    /**< The call type, copied from the original Call node. */
 } be_call_attr_t;
 
 typedef struct {
-       be_node_attr_t node_attr;
-       ir_entity **in_entities;
-       ir_entity **out_entities;
+       be_node_attr_t   node_attr;  /**< base attributes of every be node. */
+       ir_entity      **in_entities;
+       ir_entity      **out_entities;
 } be_memperm_attr_t;
 
 ir_op *op_be_Spill;
@@ -125,15 +129,10 @@ ir_op *op_be_Return;
 ir_op *op_be_IncSP;
 ir_op *op_be_AddSP;
 ir_op *op_be_SubSP;
-ir_op *op_be_SetSP;
 ir_op *op_be_RegParams;
-ir_op *op_be_StackParam;
 ir_op *op_be_FrameAddr;
-ir_op *op_be_FrameLoad;
-ir_op *op_be_FrameStore;
 ir_op *op_be_Barrier;
-
-static int beo_base = -1;
+ir_op *op_be_Unwind;
 
 static const ir_op_ops be_node_op_ops;
 
@@ -147,92 +146,125 @@ static const ir_op_ops be_node_op_ops;
 #define H   irop_flag_highlevel
 #define c   irop_flag_constlike
 #define K   irop_flag_keep
-#define M   irop_flag_machine
+#define M   irop_flag_uses_memory
+
+static int be_reqs_equal(const be_req_t *req1, const be_req_t *req2)
+{
+       if(!reg_reqs_equal(&req1->req, &req2->req))
+               return 0;
+       if(req1->flags != req2->flags)
+               return 0;
 
+       return 1;
+}
 
 /**
- * Compare two node attributes.
+ * Compare two be node attributes.
  *
  * @return zero if both attributes are identically
  */
-static int _node_cmp_attr(be_node_attr_t *a, be_node_attr_t *b) {
+static int _node_cmp_attr(const be_node_attr_t *a, const be_node_attr_t *b) {
        int i, len;
 
-       if(ARR_LEN(a->reg_data) != ARR_LEN(b->reg_data))
+       if (ARR_LEN(a->reg_data) != ARR_LEN(b->reg_data))
                return 1;
 
        len = ARR_LEN(a->reg_data);
        for (i = 0; i < len; ++i) {
                if (a->reg_data[i].reg != b->reg_data[i].reg ||
-                               memcmp(&a->reg_data[i].in_req, &b->reg_data[i].in_req, sizeof(b->reg_data[i].in_req)) ||
-                           memcmp(&a->reg_data[i].req,    &b->reg_data[i].req,    sizeof(a->reg_data[i].req)))
+                               !be_reqs_equal(&a->reg_data[i].in_req, &b->reg_data[i].in_req) ||
+                           !be_reqs_equal(&a->reg_data[i].req,    &b->reg_data[i].req))
                        return 1;
        }
 
        return 0;
 }
 
+/**
+ * Compare the node attributes of two be_node's.
+ *
+ * @return zero if both nodes have identically attributes
+ */
 static int node_cmp_attr(ir_node *a, ir_node *b) {
-       be_node_attr_t *a_attr = get_irn_attr(a);
-       be_node_attr_t *b_attr = get_irn_attr(b);
+       const be_node_attr_t *a_attr = get_irn_attr_const(a);
+       const be_node_attr_t *b_attr = get_irn_attr_const(b);
 
        return _node_cmp_attr(a_attr, b_attr);
 }
 
 /**
- * Compare the attributes of two FrameAddr nodes.
+ * Compare the attributes of two be_FrameAddr nodes.
  *
- * @return zero if both attributes are identically
+ * @return zero if both nodes have identically attributes
  */
 static int FrameAddr_cmp_attr(ir_node *a, ir_node *b) {
-       be_frame_attr_t *a_attr = get_irn_attr(a);
-       be_frame_attr_t *b_attr = get_irn_attr(b);
+       const be_frame_attr_t *a_attr = get_irn_attr_const(a);
+       const be_frame_attr_t *b_attr = get_irn_attr_const(b);
 
        if (a_attr->ent != b_attr->ent || a_attr->offset != b_attr->offset)
                return 1;
 
-       return _node_cmp_attr((be_node_attr_t*) a_attr, (be_node_attr_t*) b_attr);
+       return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
 }
 
+/**
+ * Compare the attributes of two be_Return nodes.
+ *
+ * @return zero if both nodes have identically attributes
+ */
 static int Return_cmp_attr(ir_node *a, ir_node *b) {
-       be_return_attr_t *a_attr = get_irn_attr(a);
-       be_return_attr_t *b_attr = get_irn_attr(b);
+       const be_return_attr_t *a_attr = get_irn_attr_const(a);
+       const be_return_attr_t *b_attr = get_irn_attr_const(b);
 
        if (a_attr->num_ret_vals != b_attr->num_ret_vals)
                return 1;
+       if (a_attr->pop != b_attr->pop)
+               return 1;
+       if (a_attr->emit_pop != b_attr->emit_pop)
+               return 1;
 
-       return _node_cmp_attr((be_node_attr_t*) a_attr, (be_node_attr_t*) b_attr);
+       return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
 }
 
-static int Stack_cmp_attr(ir_node *a, ir_node *b) {
-       be_stack_attr_t *a_attr = get_irn_attr(a);
-       be_stack_attr_t *b_attr = get_irn_attr(b);
+/**
+ * Compare the attributes of two be_IncSP nodes.
+ *
+ * @return zero if both nodes have identically attributes
+ */
+static int IncSP_cmp_attr(ir_node *a, ir_node *b) {
+       const be_incsp_attr_t *a_attr = get_irn_attr_const(a);
+       const be_incsp_attr_t *b_attr = get_irn_attr_const(b);
 
        if (a_attr->offset != b_attr->offset)
                return 1;
 
-       return _node_cmp_attr((be_node_attr_t*) a_attr, (be_node_attr_t*) b_attr);
+       return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
 }
 
+/**
+ * Compare the attributes of two be_Call nodes.
+ *
+ * @return zero if both nodes have identically attributes
+ */
 static int Call_cmp_attr(ir_node *a, ir_node *b) {
-       be_call_attr_t *a_attr = get_irn_attr(a);
-       be_call_attr_t *b_attr = get_irn_attr(b);
+       const be_call_attr_t *a_attr = get_irn_attr_const(a);
+       const be_call_attr_t *b_attr = get_irn_attr_const(b);
 
        if (a_attr->ent != b_attr->ent ||
                        a_attr->call_tp != b_attr->call_tp)
                return 1;
 
-       return _node_cmp_attr((be_node_attr_t*) a_attr, (be_node_attr_t*) b_attr);
+       return _node_cmp_attr(&a_attr->node_attr, &b_attr->node_attr);
 }
 
 static INLINE be_req_t *get_be_req(const ir_node *node, int pos)
 {
        int idx;
-       be_node_attr_t *attr;
+       const be_node_attr_t *attr;
        be_reg_data_t *rd;
 
        assert(is_be_node(node));
-       attr = get_irn_attr(node);
+       attr = get_irn_attr_const(node);
 
        if(pos < 0) {
                idx = -(pos + 1);
@@ -252,77 +284,6 @@ static INLINE arch_register_req_t *get_req(const ir_node *node, int pos)
        return &bereq->req;
 }
 
-void be_node_init(void) {
-       static int inited = 0;
-
-       if(inited)
-               return;
-
-       inited = 1;
-
-       /* Acquire all needed opcodes. */
-       beo_base = get_next_ir_opcodes(beo_Last);
-
-       op_be_Spill      = new_ir_op(beo_base + beo_Spill,      "be_Spill",      op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
-       op_be_Reload     = new_ir_op(beo_base + beo_Reload,     "be_Reload",     op_pin_state_pinned,     N, oparity_zero,     0, sizeof(be_frame_attr_t),   &be_node_op_ops);
-       op_be_Perm       = new_ir_op(beo_base + beo_Perm,       "be_Perm",       op_pin_state_pinned,     N, oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_MemPerm    = new_ir_op(beo_base + beo_MemPerm,    "be_MemPerm",    op_pin_state_pinned,     N, oparity_variable, 0, sizeof(be_memperm_attr_t), &be_node_op_ops);
-       op_be_Copy       = new_ir_op(beo_base + beo_Copy,       "be_Copy",       op_pin_state_floats,     N, oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_Keep       = new_ir_op(beo_base + beo_Keep,       "be_Keep",       op_pin_state_pinned,     K, oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_CopyKeep   = new_ir_op(beo_base + beo_CopyKeep,   "be_CopyKeep",   op_pin_state_pinned,     K, oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_Call       = new_ir_op(beo_base + beo_Call,       "be_Call",       op_pin_state_pinned,     F, oparity_variable, 0, sizeof(be_call_attr_t),    &be_node_op_ops);
-       op_be_Return     = new_ir_op(beo_base + beo_Return,     "be_Return",     op_pin_state_pinned,     X, oparity_dynamic,  0, sizeof(be_return_attr_t),  &be_node_op_ops);
-       op_be_AddSP      = new_ir_op(beo_base + beo_AddSP,      "be_AddSP",      op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_SubSP      = new_ir_op(beo_base + beo_SubSP,      "be_SubSP",      op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_IncSP      = new_ir_op(beo_base + beo_IncSP,      "be_IncSP",      op_pin_state_pinned,     N, oparity_unary,    0, sizeof(be_stack_attr_t),   &be_node_op_ops);
-       op_be_SetSP      = new_ir_op(beo_base + beo_SetSP,      "be_SetSP",      op_pin_state_pinned,     N, oparity_binary,   0, sizeof(be_stack_attr_t),   &be_node_op_ops);
-       op_be_RegParams  = new_ir_op(beo_base + beo_RegParams,  "be_RegParams",  op_pin_state_pinned,     N, oparity_zero,     0, sizeof(be_node_attr_t),    &be_node_op_ops);
-       op_be_StackParam = new_ir_op(beo_base + beo_StackParam, "be_StackParam", op_pin_state_floats,     N, oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
-       op_be_FrameLoad  = new_ir_op(beo_base + beo_FrameLoad,  "be_FrameLoad",  op_pin_state_floats,     N, oparity_any,      0, sizeof(be_frame_attr_t),   &be_node_op_ops);
-       op_be_FrameStore = new_ir_op(beo_base + beo_FrameStore, "be_FrameStore", op_pin_state_floats,     N, oparity_any,      0, sizeof(be_frame_attr_t),   &be_node_op_ops);
-       op_be_FrameAddr  = new_ir_op(beo_base + beo_FrameAddr,  "be_FrameAddr",  op_pin_state_floats,     N, oparity_unary,    0, sizeof(be_frame_attr_t),   &be_node_op_ops);
-       op_be_Barrier    = new_ir_op(beo_base + beo_Barrier,    "be_Barrier",    op_pin_state_pinned,     N, oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
-
-       set_op_tag(op_be_Spill,      &be_node_tag);
-       op_be_Spill->ops.node_cmp_attr = FrameAddr_cmp_attr;
-       set_op_tag(op_be_Reload,     &be_node_tag);
-       op_be_Reload->ops.node_cmp_attr = FrameAddr_cmp_attr;
-       set_op_tag(op_be_Perm,       &be_node_tag);
-       op_be_Perm->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_MemPerm,    &be_node_tag);
-       op_be_MemPerm->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_Copy,       &be_node_tag);
-       op_be_Copy->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_Keep,       &be_node_tag);
-       op_be_Keep->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_CopyKeep,   &be_node_tag);
-       op_be_CopyKeep->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_Call,       &be_node_tag);
-       op_be_Call->ops.node_cmp_attr = Call_cmp_attr;
-       set_op_tag(op_be_Return,     &be_node_tag);
-       op_be_Return->ops.node_cmp_attr = Return_cmp_attr;
-       set_op_tag(op_be_AddSP,      &be_node_tag);
-       op_be_AddSP->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_SubSP,      &be_node_tag);
-       op_be_SubSP->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_SetSP,      &be_node_tag);
-       op_be_SetSP->ops.node_cmp_attr = Stack_cmp_attr;
-       set_op_tag(op_be_IncSP,      &be_node_tag);
-       op_be_IncSP->ops.node_cmp_attr = Stack_cmp_attr;
-       set_op_tag(op_be_RegParams,  &be_node_tag);
-       op_be_RegParams->ops.node_cmp_attr = node_cmp_attr;
-       set_op_tag(op_be_StackParam, &be_node_tag);
-       op_be_StackParam->ops.node_cmp_attr = FrameAddr_cmp_attr;
-       set_op_tag(op_be_FrameLoad,  &be_node_tag);
-       op_be_FrameLoad->ops.node_cmp_attr = FrameAddr_cmp_attr;
-       set_op_tag(op_be_FrameStore, &be_node_tag);
-       op_be_FrameStore->ops.node_cmp_attr = FrameAddr_cmp_attr;
-       set_op_tag(op_be_FrameAddr,  &be_node_tag);
-       op_be_FrameAddr->ops.node_cmp_attr = FrameAddr_cmp_attr;
-       set_op_tag(op_be_Barrier,    &be_node_tag);
-       op_be_Barrier->ops.node_cmp_attr = node_cmp_attr;
-}
-
 /**
  * Initializes the generic attribute of all be nodes and return ir.
  */
@@ -352,16 +313,6 @@ static void add_register_req(ir_node *node)
        ARR_APP1(be_reg_data_t, a->reg_data, regreq);
 }
 
-int is_be_node(const ir_node *irn)
-{
-       return get_op_tag(get_irn_op(irn)) == &be_node_tag;
-}
-
-be_opcode_t be_get_irn_opcode(const ir_node *irn)
-{
-       return is_be_node(irn) ? (be_opcode_t) get_irn_opcode(irn) - beo_base : beo_NoBeOp;
-}
-
 /**
  * Skip Proj nodes and return their Proj numbers.
  *
@@ -391,7 +342,7 @@ static int redir_proj(const ir_node **node)
 
 static be_reg_data_t *retrieve_reg_data(const ir_node *node)
 {
-       be_node_attr_t *attr;
+       const be_node_attr_t *attr;
        int pos = 0;
 
        if(is_Proj(node)) {
@@ -400,17 +351,16 @@ static be_reg_data_t *retrieve_reg_data(const ir_node *node)
        }
 
        assert(is_be_node(node));
-       attr = get_irn_attr(node);
+       attr = get_irn_attr_const(node);
        assert(pos >= 0 && pos < ARR_LEN(attr->reg_data) && "illegal proj number");
 
        return &attr->reg_data[pos];
 }
 
 static void
-be_node_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg)
+be_node_set_irn_reg(ir_node *irn, const arch_register_t *reg)
 {
        be_reg_data_t *r = retrieve_reg_data(irn);
-       (void) self;
        r->reg = reg;
 }
 
@@ -490,29 +440,26 @@ ir_node *be_new_Perm(const arch_register_class_t *cls, ir_graph *irg, ir_node *b
 void be_Perm_reduce(ir_node *perm, int new_size, int *map)
 {
        ir_graph *irg           = get_irn_irg(perm);
-       int n                   = get_irn_arity(perm);
-       be_reg_data_t *old_data = xmalloc(n * sizeof(old_data[0]));
+       int            arity    = get_irn_arity(perm);
+       be_reg_data_t *old_data = alloca(arity * sizeof(old_data[0]));
        be_node_attr_t *attr    = get_irn_attr(perm);
-       ir_node **new_in        = NEW_ARR_D(ir_node *, irg->obst, new_size + 1);
+       ir_node **new_in        = NEW_ARR_D(ir_node *, irg->obst, new_size);
 
        int i;
 
        assert(be_is_Perm(perm));
-       assert(new_size <= n);
+       assert(new_size <= arity);
 
        /* save the old register data */
-       memcpy(old_data, attr->reg_data, n * sizeof(old_data[0]));
+       memcpy(old_data, attr->reg_data, arity * sizeof(old_data[0]));
 
        /* compose the new in array and set the new register data directly in place */
-       for (i = 0; i < n; ++i) {
+       for (i = 0; i < new_size; ++i) {
                int idx = map[i];
-               if (idx >= 0) {
-                       new_in[idx] = get_irn_n(perm, i);
-                       attr->reg_data[idx] = old_data[i];
-               }
+               new_in[i]         = get_irn_n(perm, idx);
+               attr->reg_data[i] = old_data[idx];
        }
 
-       free(old_data);
        set_irn_in(perm, new_size, new_in);
 }
 
@@ -522,7 +469,7 @@ ir_node *be_new_MemPerm(const arch_env_t *arch_env, ir_graph *irg, ir_node *bl,
        ir_node *frame = get_irg_frame(irg);
        const arch_register_class_t *cls_frame = arch_get_irn_reg_class(arch_env, frame, -1);
        ir_node *irn;
-       const arch_register_t *sp = arch_env->isa->sp;
+       const arch_register_t *sp = arch_env->sp;
        be_memperm_attr_t *attr;
        ir_node **real_in;
 
@@ -534,7 +481,7 @@ ir_node *be_new_MemPerm(const arch_env_t *arch_env, ir_graph *irg, ir_node *bl,
 
        init_node_attr(irn, n + 1);
        be_node_set_reg_class(irn, 0, sp->reg_class);
-       for(i = 0; i < n; ++i) {
+       for (i = 0; i < n; ++i) {
                be_node_set_reg_class(irn, i + 1, cls_frame);
                be_node_set_reg_class(irn, OUT_POS(i), cls_frame);
        }
@@ -565,7 +512,7 @@ ir_node *be_new_Copy(const arch_register_class_t *cls, ir_graph *irg, ir_node *b
        req = get_req(res, OUT_POS(0));
        req->cls = cls;
        req->type = arch_register_req_type_should_be_same;
-       req->other_same = 0;
+       req->other_same = 1U << 0;
 
        return res;
 }
@@ -625,12 +572,13 @@ ir_node *be_new_Call(dbg_info *dbg, ir_graph *irg, ir_node *bl, ir_node *mem, ir
        a = init_node_attr(irn, (n_outs > real_n ? n_outs : real_n));
        a->ent     = NULL;
        a->call_tp = call_tp;
+       a->pop     = 0;
        return irn;
 }
 
 /* Gets the call entity or NULL if this is no static call. */
 ir_entity *be_Call_get_entity(const ir_node *call) {
-       be_call_attr_t *a = get_irn_attr(call);
+       const be_call_attr_t *a = get_irn_attr_const(call);
        assert(be_is_Call(call));
        return a->ent;
 }
@@ -644,7 +592,7 @@ void be_Call_set_entity(ir_node *call, ir_entity *ent) {
 
 /* Gets the call type. */
 ir_type *be_Call_get_type(ir_node *call) {
-       be_call_attr_t *a = get_irn_attr(call);
+       const be_call_attr_t *a = get_irn_attr_const(call);
        assert(be_is_Call(call));
        return a->call_tp;
 }
@@ -656,9 +604,19 @@ void be_Call_set_type(ir_node *call, ir_type *call_tp) {
        a->call_tp = call_tp;
 }
 
+void be_Call_set_pop(ir_node *call, unsigned pop) {
+       be_call_attr_t *a = get_irn_attr(call);
+       a->pop = pop;
+}
+
+unsigned be_Call_get_pop(const ir_node *call) {
+       const be_call_attr_t *a = get_irn_attr_const(call);
+       return a->pop;
+}
+
 /* Construct a new be_Return. */
 ir_node *be_new_Return(dbg_info *dbg, ir_graph *irg, ir_node *block, int n_res,
-                       int n, ir_node *in[])
+                       unsigned pop, int n, ir_node *in[])
 {
        be_return_attr_t *a;
        ir_node *res;
@@ -673,19 +631,37 @@ ir_node *be_new_Return(dbg_info *dbg, ir_graph *irg, ir_node *block, int n_res,
 
        a = get_irn_attr(res);
        a->num_ret_vals = n_res;
+       a->pop          = pop;
+       a->emit_pop     = 0;
 
        return res;
 }
 
 /* Returns the number of real returns values */
-int be_Return_get_n_rets(ir_node *ret)
-{
-       be_return_attr_t *a = get_irn_attr(ret);
+int be_Return_get_n_rets(const ir_node *ret) {
+       const be_return_attr_t *a = get_irn_generic_attr_const(ret);
        return a->num_ret_vals;
 }
 
-int be_Return_append_node(ir_node *ret, ir_node *node)
-{
+/* return the number of bytes that should be popped from stack when executing the Return. */
+unsigned be_Return_get_pop(const ir_node *ret) {
+       const be_return_attr_t *a = get_irn_generic_attr_const(ret);
+       return a->pop;
+}
+
+/* return non-zero, if number of popped bytes must be always emitted */
+int be_Return_get_emit_pop(const ir_node *ret) {
+       const be_return_attr_t *a = get_irn_generic_attr_const(ret);
+       return a->emit_pop;
+}
+
+/* return non-zero, if number of popped bytes must be always emitted */
+void be_Return_set_emit_pop(ir_node *ret, int emit_pop) {
+       be_return_attr_t *a = get_irn_generic_attr(ret);
+       a->emit_pop = emit_pop;
+}
+
+int be_Return_append_node(ir_node *ret, ir_node *node) {
        int pos;
 
        pos = add_irn_n(ret, node);
@@ -694,23 +670,26 @@ int be_Return_append_node(ir_node *ret, ir_node *node)
        return pos;
 }
 
-ir_node *be_new_IncSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, int offset)
+ir_node *be_new_IncSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl,
+                      ir_node *old_sp, int offset, int align)
 {
-       be_stack_attr_t *a;
+       be_incsp_attr_t *a;
        ir_node *irn;
        ir_node *in[1];
 
        in[0]     = old_sp;
-       irn       = new_ir_node(NULL, irg, bl, op_be_IncSP, sp->reg_class->mode, sizeof(in) / sizeof(in[0]), in);
+       irn       = new_ir_node(NULL, irg, bl, op_be_IncSP, sp->reg_class->mode,
+                               sizeof(in) / sizeof(in[0]), in);
        a         = init_node_attr(irn, 1);
        a->offset = offset;
+       a->align  = align;
 
        be_node_set_flags(irn, -1, arch_irn_flags_ignore | arch_irn_flags_modify_sp);
 
        /* Set output constraint to stack register. */
        be_node_set_reg_class(irn, 0, sp->reg_class);
        be_set_constr_single_reg(irn, BE_OUT_POS(0), sp);
-       be_node_set_irn_reg(NULL, irn, sp);
+       be_node_set_irn_reg(irn, sp);
 
        return irn;
 }
@@ -720,7 +699,7 @@ ir_node *be_new_AddSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_
        be_node_attr_t *a;
        ir_node *irn;
        ir_node *in[be_pos_AddSP_last];
-       const arch_register_class_t *class;
+       const arch_register_class_t *cls;
 
        in[be_pos_AddSP_old_sp] = old_sp;
        in[be_pos_AddSP_size]   = sz;
@@ -737,8 +716,8 @@ ir_node *be_new_AddSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_
        be_set_constr_single_reg(irn, OUT_POS(pn_be_AddSP_sp), sp);
        a->reg_data[pn_be_AddSP_sp].reg = sp;
 
-       class = arch_register_get_class(sp);
-       be_node_set_reg_class(irn, OUT_POS(pn_be_AddSP_res), class);
+       cls = arch_register_get_class(sp);
+       be_node_set_reg_class(irn, OUT_POS(pn_be_AddSP_res), cls);
 
        return irn;
 }
@@ -767,47 +746,6 @@ ir_node *be_new_SubSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_
        return irn;
 }
 
-ir_node *be_new_SetSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl,
-                      ir_node *old_sp, ir_node *op, ir_node *mem)
-{
-       be_node_attr_t *a;
-       ir_node *irn;
-       ir_node *in[3];
-
-       in[0] = mem;
-       in[1] = old_sp;
-       in[2] = op;
-       irn   = new_ir_node(NULL, irg, bl, op_be_SetSP, get_irn_mode(old_sp), 3, in);
-       a     = init_node_attr(irn, 3);
-
-       be_node_set_flags(irn, OUT_POS(0), arch_irn_flags_ignore | arch_irn_flags_modify_sp);
-
-       /* Set output constraint to stack register. */
-       be_set_constr_single_reg(irn, OUT_POS(0), sp);
-       be_node_set_reg_class(irn, be_pos_AddSP_size, sp->reg_class);
-       be_node_set_reg_class(irn, be_pos_AddSP_old_sp, sp->reg_class);
-
-       return irn;
-}
-
-ir_node *be_new_StackParam(const arch_register_class_t *cls, const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_mode *mode, ir_node *frame_pointer, ir_entity *ent)
-{
-       be_frame_attr_t *a;
-       ir_node *irn;
-       ir_node *in[1];
-
-       in[0] = frame_pointer;
-       irn = new_ir_node(NULL, irg, bl, op_be_StackParam, mode, 1, in);
-       a = init_node_attr(irn, 1);
-       a->ent = ent;
-
-       be_node_set_reg_class(irn, 0, cls_frame);
-       be_node_set_reg_class(irn, OUT_POS(0), cls);
-       be_node_set_flags(irn, OUT_POS(0), arch_irn_flags_rematerializable);
-
-       return irn;
-}
-
 ir_node *be_new_RegParams(ir_graph *irg, ir_node *bl, int n_outs)
 {
        ir_node *res;
@@ -844,43 +782,6 @@ ir_node *be_RegParams_append_out_reg(ir_node *regparams,
        return proj;
 }
 
-ir_node *be_new_FrameLoad(const arch_register_class_t *cls_frame, const arch_register_class_t *cls_data,
-                                                 ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *frame, ir_entity *ent)
-{
-       be_frame_attr_t *a;
-       ir_node *irn;
-       ir_node *in[2];
-
-       in[0]  = mem;
-       in[1]  = frame;
-       irn    = new_ir_node(NULL, irg, bl, op_be_FrameLoad, mode_T, 2, in);
-       a      = init_node_attr(irn, 3);
-       a->ent = ent;
-       a->offset = 0;
-       be_node_set_reg_class(irn, 1, cls_frame);
-       be_node_set_reg_class(irn, OUT_POS(pn_Load_res), cls_data);
-       return irn;
-}
-
-ir_node *be_new_FrameStore(const arch_register_class_t *cls_frame, const arch_register_class_t *cls_data,
-                                                  ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *frame, ir_node *data, ir_entity *ent)
-{
-       be_frame_attr_t *a;
-       ir_node *irn;
-       ir_node *in[3];
-
-       in[0]  = mem;
-       in[1]  = frame;
-       in[2]  = data;
-       irn    = new_ir_node(NULL, irg, bl, op_be_FrameStore, mode_T, 3, in);
-       a      = init_node_attr(irn, 3);
-       a->ent = ent;
-       a->offset = 0;
-       be_node_set_reg_class(irn, 1, cls_frame);
-       be_node_set_reg_class(irn, 2, cls_data);
-       return irn;
-}
-
 ir_node *be_new_FrameAddr(const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, ir_entity *ent)
 {
        be_frame_attr_t *a;
@@ -898,11 +799,17 @@ ir_node *be_new_FrameAddr(const arch_register_class_t *cls_frame, ir_graph *irg,
        return optimize_node(irn);
 }
 
-ir_node *be_get_FrameAddr_frame(ir_node *node) {
+ir_node *be_get_FrameAddr_frame(const ir_node *node) {
        assert(be_is_FrameAddr(node));
        return get_irn_n(node, be_pos_FrameAddr_ptr);
 }
 
+ir_entity *be_get_FrameAddr_entity(const ir_node *node)
+{
+       const be_frame_attr_t *attr = get_irn_generic_attr_const(node);
+       return attr->ent;
+}
+
 ir_node *be_new_CopyKeep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, int n, ir_node *in_keep[], ir_mode *mode)
 {
        ir_node *irn;
@@ -920,10 +827,7 @@ ir_node *be_new_CopyKeep(const arch_register_class_t *cls, ir_graph *irg, ir_nod
 
 ir_node *be_new_CopyKeep_single(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, ir_node *keep, ir_mode *mode)
 {
-       ir_node *in[1];
-
-       in[0] = keep;
-       return be_new_CopyKeep(cls, irg, bl, src, 1, in, mode);
+       return be_new_CopyKeep(cls, irg, bl, src, 1, &keep, mode);
 }
 
 ir_node *be_get_CopyKeep_op(const ir_node *cpy) {
@@ -962,34 +866,26 @@ ir_node *be_Barrier_append_node(ir_node *barrier, ir_node *node)
        return proj;
 }
 
-int be_is_Spill         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Spill          ; }
-int be_is_Reload        (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Reload         ; }
-int be_is_Copy          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Copy           ; }
-int be_is_CopyKeep      (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_CopyKeep       ; }
-int be_is_Perm          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Perm           ; }
-int be_is_MemPerm       (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_MemPerm        ; }
-int be_is_Keep          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Keep           ; }
-int be_is_Call          (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Call           ; }
-int be_is_Return        (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Return         ; }
-int be_is_IncSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_IncSP          ; }
-int be_is_SetSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_SetSP          ; }
-int be_is_AddSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_AddSP          ; }
-int be_is_SubSP         (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_SubSP          ; }
-int be_is_RegParams     (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_RegParams      ; }
-int be_is_StackParam    (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_StackParam     ; }
-int be_is_FrameAddr     (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_FrameAddr      ; }
-int be_is_FrameLoad     (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_FrameLoad      ; }
-int be_is_FrameStore    (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_FrameStore     ; }
-int be_is_Barrier       (const ir_node *irn) { return be_get_irn_opcode(irn) == beo_Barrier        ; }
+/* Construct a new be_Unwind. */
+ir_node *be_new_Unwind(dbg_info *dbg, ir_graph *irg, ir_node *block,
+                                          ir_node *mem, ir_node *sp)
+{
+       ir_node *res;
+       ir_node *in[2];
+
+       in[be_pos_Unwind_mem] = mem;
+       in[be_pos_Unwind_sp]  = sp;
+       res = new_ir_node(dbg, irg, block, op_be_Unwind, mode_X, 2, in);
+       init_node_attr(res, -1);
+
+       return res;
+}
 
 int be_has_frame_entity(const ir_node *irn)
 {
-       switch(be_get_irn_opcode(irn)) {
-       case beo_StackParam:
+       switch (get_irn_opcode(irn)) {
        case beo_Spill:
        case beo_Reload:
-       case beo_FrameStore:
-       case beo_FrameLoad:
        case beo_FrameAddr:
                return 1;
        default:
@@ -1000,7 +896,7 @@ int be_has_frame_entity(const ir_node *irn)
 ir_entity *be_get_frame_entity(const ir_node *irn)
 {
        if (be_has_frame_entity(irn)) {
-               be_frame_attr_t *a = get_irn_attr(irn);
+               const be_frame_attr_t *a = get_irn_attr_const(irn);
                return a->ent;
        }
        return NULL;
@@ -1010,7 +906,7 @@ int be_get_frame_offset(const ir_node *irn)
 {
        assert(is_be_node(irn));
        if (be_has_frame_entity(irn)) {
-               be_frame_attr_t *a = get_irn_attr(irn);
+               const be_frame_attr_t *a = get_irn_attr_const(irn);
                return a->offset;
        }
        return 0;
@@ -1018,7 +914,7 @@ int be_get_frame_offset(const ir_node *irn)
 
 void be_set_MemPerm_in_entity(const ir_node *irn, int n, ir_entity *ent)
 {
-       be_memperm_attr_t *attr = get_irn_attr(irn);
+       const be_memperm_attr_t *attr = get_irn_attr_const(irn);
 
        assert(be_is_MemPerm(irn));
        assert(n < be_get_MemPerm_entity_arity(irn));
@@ -1028,7 +924,7 @@ void be_set_MemPerm_in_entity(const ir_node *irn, int n, ir_entity *ent)
 
 ir_entity* be_get_MemPerm_in_entity(const ir_node* irn, int n)
 {
-       be_memperm_attr_t *attr = get_irn_attr(irn);
+       const be_memperm_attr_t *attr = get_irn_attr_const(irn);
 
        assert(be_is_MemPerm(irn));
        assert(n < be_get_MemPerm_entity_arity(irn));
@@ -1038,7 +934,7 @@ ir_entity* be_get_MemPerm_in_entity(const ir_node* irn, int n)
 
 void be_set_MemPerm_out_entity(const ir_node *irn, int n, ir_entity *ent)
 {
-       be_memperm_attr_t *attr = get_irn_attr(irn);
+       const be_memperm_attr_t *attr = get_irn_attr_const(irn);
 
        assert(be_is_MemPerm(irn));
        assert(n < be_get_MemPerm_entity_arity(irn));
@@ -1048,7 +944,7 @@ void be_set_MemPerm_out_entity(const ir_node *irn, int n, ir_entity *ent)
 
 ir_entity* be_get_MemPerm_out_entity(const ir_node* irn, int n)
 {
-       be_memperm_attr_t *attr = get_irn_attr(irn);
+       const be_memperm_attr_t *attr = get_irn_attr_const(irn);
 
        assert(be_is_MemPerm(irn));
        assert(n < be_get_MemPerm_entity_arity(irn));
@@ -1088,7 +984,7 @@ void be_set_constr_limited(ir_node *node, int pos, const arch_register_req_t *re
        arch_register_req_t *r = get_req(node, pos);
 
        assert(arch_register_req_is(req, limited));
-       assert(! (req->type & (arch_register_req_type_should_be_same | arch_register_req_type_should_be_different)));
+       assert(!(req->type & (arch_register_req_type_should_be_same | arch_register_req_type_must_be_different)));
        memcpy(r, req, sizeof(r[0]));
        r->limited = rbitset_duplicate_obstack_alloc(obst, req->limited, req->cls->n_regs);
 }
@@ -1099,6 +995,12 @@ void be_node_set_flags(ir_node *irn, int pos, arch_irn_flags_t flags)
        bereq->flags = flags;
 }
 
+void be_node_add_flags(ir_node *irn, int pos, arch_irn_flags_t flags)
+{
+       be_req_t *bereq = get_be_req(irn, pos);
+       bereq->flags |= flags;
+}
+
 void be_node_set_reg_class(ir_node *irn, int pos, const arch_register_class_t *cls)
 {
        arch_register_req_t *req = get_req(irn, pos);
@@ -1128,35 +1030,36 @@ void be_set_IncSP_pred(ir_node *incsp, ir_node *pred) {
        set_irn_n(incsp, 0, pred);
 }
 
-ir_node *be_get_IncSP_mem(ir_node *irn) {
-       assert(be_is_IncSP(irn));
-       return get_irn_n(irn, 1);
-}
-
 void be_set_IncSP_offset(ir_node *irn, int offset)
 {
-       be_stack_attr_t *a = get_irn_attr(irn);
+       be_incsp_attr_t *a = get_irn_attr(irn);
        assert(be_is_IncSP(irn));
        a->offset = offset;
 }
 
 int be_get_IncSP_offset(const ir_node *irn)
 {
-       be_stack_attr_t *a = get_irn_attr(irn);
+       const be_incsp_attr_t *a = get_irn_attr_const(irn);
        assert(be_is_IncSP(irn));
        return a->offset;
 }
 
-ir_node *be_spill(const arch_env_t *arch_env, ir_node *irn)
+int be_get_IncSP_align(const ir_node *irn)
 {
-       ir_node                     *bl        = get_nodes_block(irn);
-       ir_graph                    *irg       = get_irn_irg(bl);
+       const be_incsp_attr_t *a = get_irn_attr_const(irn);
+       assert(be_is_IncSP(irn));
+       return a->align;
+}
+
+ir_node *be_spill(const arch_env_t *arch_env, ir_node *block, ir_node *irn)
+{
+       ir_graph                    *irg       = get_irn_irg(block);
        ir_node                     *frame     = get_irg_frame(irg);
        const arch_register_class_t *cls       = arch_get_irn_reg_class(arch_env, irn, -1);
        const arch_register_class_t *cls_frame = arch_get_irn_reg_class(arch_env, frame, -1);
        ir_node                     *spill;
 
-       spill = be_new_Spill(cls, cls_frame, irg, bl, frame, irn);
+       spill = be_new_Spill(cls, cls_frame, irg, block, frame, irn);
        return spill;
 }
 
@@ -1196,7 +1099,7 @@ ir_node *be_reload(const arch_env_t *arch_env, const arch_register_class_t *cls,
 static const
 arch_register_req_t *get_out_reg_req(const ir_node *irn, int out_pos)
 {
-       const be_node_attr_t *a = get_irn_attr(irn);
+       const be_node_attr_t *a = get_irn_attr_const(irn);
 
        if(out_pos >= ARR_LEN(a->reg_data)) {
                return arch_no_register_req;
@@ -1208,7 +1111,7 @@ arch_register_req_t *get_out_reg_req(const ir_node *irn, int out_pos)
 static const
 arch_register_req_t *get_in_reg_req(const ir_node *irn, int pos)
 {
-       const be_node_attr_t *a = get_irn_attr(irn);
+       const be_node_attr_t *a = get_irn_attr_const(irn);
 
        if(pos >= get_irn_arity(irn) || pos >= ARR_LEN(a->reg_data))
                return arch_no_register_req;
@@ -1217,11 +1120,10 @@ arch_register_req_t *get_in_reg_req(const ir_node *irn, int pos)
 }
 
 static const arch_register_req_t *
-be_node_get_irn_reg_req(const void *self, const ir_node *irn, int pos)
+be_node_get_irn_reg_req(const ir_node *irn, int pos)
 {
        int out_pos = pos;
 
-       (void) self;
        if (pos < 0) {
                if (get_irn_mode(irn) == mode_T)
                        return arch_no_register_req;
@@ -1245,43 +1147,46 @@ be_node_get_irn_reg_req(const void *self, const ir_node *irn, int pos)
 }
 
 const arch_register_t *
-be_node_get_irn_reg(const void *self, const ir_node *irn)
+be_node_get_irn_reg(const ir_node *irn)
 {
        be_reg_data_t *r;
 
-       (void) self;
        if (get_irn_mode(irn) == mode_T)
                return NULL;
        r = retrieve_reg_data(irn);
        return r->reg;
 }
 
-static arch_irn_class_t be_node_classify(const void *self, const ir_node *irn)
+static arch_irn_class_t be_node_classify(const ir_node *irn)
 {
-       redir_proj((const ir_node **) &irn);
-
-       (void) self;
-       switch(be_get_irn_opcode(irn)) {
-#define XXX(a,b) case beo_ ## a: return arch_irn_class_ ## b
-               XXX(Spill, spill);
-               XXX(Reload, reload);
-               XXX(Perm, perm);
-               XXX(Copy, copy);
-               XXX(Return, branch);
-               XXX(StackParam, stackparam);
+restart:
+       switch (get_irn_opcode(irn)) {
+#define XXX(a,b) case a: return b
+               XXX(beo_Spill, arch_irn_class_spill);
+               XXX(beo_Reload, arch_irn_class_reload);
+               XXX(beo_Perm, arch_irn_class_perm);
+               XXX(beo_Copy, arch_irn_class_copy);
+               XXX(beo_Return, arch_irn_class_branch);
 #undef XXX
+               case iro_Proj:
+                       irn = get_Proj_pred(irn);
+                       if (is_Proj(irn)) {
+                               assert(get_irn_mode(irn) == mode_T);
+                               irn = get_Proj_pred(irn);
+                       }
+                       goto restart;
+                       break;
                default:
-               return arch_irn_class_normal;
+                       return arch_irn_class_normal;
        }
 
        return 0;
 }
 
-static arch_irn_flags_t be_node_get_flags(const void *self, const ir_node *node)
+static arch_irn_flags_t be_node_get_flags(const ir_node *node)
 {
        be_req_t *bereq;
        int pos = -1;
-       (void) self;
 
        if(is_Proj(node)) {
                pos = OUT_POS(get_Proj_proj(node));
@@ -1293,16 +1198,14 @@ static arch_irn_flags_t be_node_get_flags(const void *self, const ir_node *node)
        return bereq->flags;
 }
 
-static ir_entity *be_node_get_frame_entity(const void *self, const ir_node *irn)
+static ir_entity *be_node_get_frame_entity(const ir_node *irn)
 {
-       (void) self;
        return be_get_frame_entity(irn);
 }
 
-static void be_node_set_frame_entity(const void *self, ir_node *irn, ir_entity *ent)
+static void be_node_set_frame_entity(ir_node *irn, ir_entity *ent)
 {
        be_frame_attr_t *a;
-       (void) self;
 
        assert(be_has_frame_entity(irn));
 
@@ -1310,19 +1213,22 @@ static void be_node_set_frame_entity(const void *self, ir_node *irn, ir_entity *
        a->ent = ent;
 }
 
-static void be_node_set_frame_offset(const void *self, ir_node *irn, int offset)
+static void be_node_set_frame_offset(ir_node *irn, int offset)
 {
-       (void) self;
        if(be_has_frame_entity(irn)) {
                be_frame_attr_t *a = get_irn_attr(irn);
                a->offset = offset;
        }
 }
 
-static int be_node_get_sp_bias(const void *self, const ir_node *irn)
+static int be_node_get_sp_bias(const ir_node *irn)
 {
-       (void) self;
-       return be_is_IncSP(irn) ? be_get_IncSP_offset(irn) : 0;
+       if(be_is_IncSP(irn))
+               return be_get_IncSP_offset(irn);
+       if(be_is_Call(irn))
+               return -(int)be_Call_get_pop(irn);
+
+       return 0;
 }
 
 /*
@@ -1334,7 +1240,7 @@ static int be_node_get_sp_bias(const void *self, const ir_node *irn)
 
 */
 
-static const arch_irn_ops_if_t be_node_irn_ops_if = {
+static const arch_irn_ops_t be_node_irn_ops = {
        be_node_get_irn_reg_req,
        be_node_set_irn_reg,
        be_node_get_irn_reg,
@@ -1350,21 +1256,6 @@ static const arch_irn_ops_if_t be_node_irn_ops_if = {
        NULL,    /* perform_memory_operand  */
 };
 
-static const arch_irn_ops_t be_node_irn_ops = {
-       &be_node_irn_ops_if
-};
-
-const void *be_node_get_irn_ops(const arch_irn_handler_t *self, const ir_node *irn)
-{
-       redir_proj((const ir_node **) &irn);
-       (void) self;
-       return is_be_node(irn) ? &be_node_irn_ops : NULL;
-}
-
-const arch_irn_handler_t be_node_irn_handler = {
-       be_node_get_irn_ops
-};
-
 /*
   ____  _     _   ___ ____  _   _   _   _                 _ _
  |  _ \| |__ (_) |_ _|  _ \| \ | | | | | | __ _ _ __   __| | | ___ _ __
@@ -1380,38 +1271,23 @@ typedef struct {
        arch_irn_flags_t       flags;
 } phi_attr_t;
 
-typedef struct {
-       arch_irn_handler_t irn_handler;
-       arch_irn_ops_t     irn_ops;
-       const arch_env_t   *arch_env;
-       pmap               *phi_attrs;
-} phi_handler_t;
+struct {
+       arch_env_t  *arch_env;
+       pmap        *phi_attrs;
+} phi_handler;
 
-#define get_phi_handler_from_handler(h)  container_of(h, phi_handler_t, irn_handler)
 #define get_phi_handler_from_ops(h)      container_of(h, phi_handler_t, irn_ops)
 
-static
-const void *phi_get_irn_ops(const arch_irn_handler_t *handler,
-                            const ir_node *irn)
-{
-       const phi_handler_t *h;
-       if(!is_Phi(irn) || !mode_is_datab(get_irn_mode(irn)))
-               return NULL;
-
-       h = get_phi_handler_from_handler(handler);
-       return &h->irn_ops;
-}
-
 static INLINE
-phi_attr_t *get_Phi_attr(const phi_handler_t *handler, const ir_node *phi)
+phi_attr_t *get_Phi_attr(const ir_node *phi)
 {
-       phi_attr_t *attr = pmap_get(handler->phi_attrs, (void*) phi);
+       phi_attr_t *attr = pmap_get(phi_handler.phi_attrs, (void*) phi);
        if(attr == NULL) {
                ir_graph *irg = get_irn_irg(phi);
                struct obstack *obst = get_irg_obstack(irg);
                attr = obstack_alloc(obst, sizeof(attr[0]));
                memset(attr, 0, sizeof(attr[0]));
-               pmap_insert(handler->phi_attrs, phi, attr);
+               pmap_insert(phi_handler.phi_attrs, phi, attr);
        }
 
        return attr;
@@ -1421,8 +1297,7 @@ phi_attr_t *get_Phi_attr(const phi_handler_t *handler, const ir_node *phi)
  * Get register class of a Phi.
  */
 static
-const arch_register_req_t *get_Phi_reg_req_recursive(const phi_handler_t *h,
-                                                     const ir_node *phi,
+const arch_register_req_t *get_Phi_reg_req_recursive(const ir_node *phi,
                                                      pset **visited)
 {
        int n = get_irn_arity(phi);
@@ -1437,7 +1312,7 @@ const arch_register_req_t *get_Phi_reg_req_recursive(const phi_handler_t *h,
                /* Matze: don't we unnecessary constraint our phis with this?
                 * we only need to take the regclass IMO*/
                if(!is_Phi(op))
-                       return arch_get_register_req(h->arch_env, op, BE_OUT_POS(0));
+                       return arch_get_register_req(phi_handler.arch_env, op, BE_OUT_POS(0));
        }
 
        /*
@@ -1452,7 +1327,7 @@ const arch_register_req_t *get_Phi_reg_req_recursive(const phi_handler_t *h,
        for(i = 0; i < n; ++i) {
                const arch_register_req_t *req;
                op = get_irn_n(phi, i);
-               req = get_Phi_reg_req_recursive(h, op, visited);
+               req = get_Phi_reg_req_recursive(op, visited);
                if(req != NULL)
                        return req;
        }
@@ -1461,23 +1336,20 @@ const arch_register_req_t *get_Phi_reg_req_recursive(const phi_handler_t *h,
 }
 
 static
-const arch_register_req_t *phi_get_irn_reg_req(const void *self,
-                                               const ir_node *irn, int pos)
+const arch_register_req_t *phi_get_irn_reg_req(const ir_node *irn, int pos)
 {
-       phi_handler_t *phi_handler = get_phi_handler_from_ops(self);
        phi_attr_t *attr;
-       (void) self;
        (void) pos;
 
        if(!mode_is_datab(get_irn_mode(irn)))
                return arch_no_register_req;
 
-       attr = get_Phi_attr(phi_handler, irn);
+       attr = get_Phi_attr(irn);
 
        if(attr->req.type == arch_register_req_type_none) {
                pset *visited = NULL;
                const arch_register_req_t *req;
-               req = get_Phi_reg_req_recursive(phi_handler, irn, &visited);
+               req = get_Phi_reg_req_recursive(irn, &visited);
 
                memcpy(&attr->req, req, sizeof(req[0]));
                assert(attr->req.cls != NULL);
@@ -1493,98 +1365,78 @@ const arch_register_req_t *phi_get_irn_reg_req(const void *self,
 void be_set_phi_reg_req(const arch_env_t *arch_env, ir_node *node,
                         const arch_register_req_t *req)
 {
-       const arch_irn_ops_t *ops = arch_get_irn_ops(arch_env, node);
-       const phi_handler_t *handler = get_phi_handler_from_ops(ops);
        phi_attr_t *attr;
+       (void) arch_env;
 
        assert(mode_is_datab(get_irn_mode(node)));
 
-       attr = get_Phi_attr(handler, node);
+       attr = get_Phi_attr(node);
        memcpy(&attr->req, req, sizeof(req[0]));
 }
 
 void be_set_phi_flags(const arch_env_t *arch_env, ir_node *node,
                       arch_irn_flags_t flags)
 {
-       const arch_irn_ops_t *ops = arch_get_irn_ops(arch_env, node);
-       const phi_handler_t *handler = get_phi_handler_from_ops(ops);
        phi_attr_t *attr;
+       (void) arch_env;
 
        assert(mode_is_datab(get_irn_mode(node)));
 
-       attr = get_Phi_attr(handler, node);
+       attr = get_Phi_attr(node);
        attr->flags = flags;
 }
 
-static
-void phi_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg)
+static void phi_set_irn_reg(ir_node *irn, const arch_register_t *reg)
 {
-       phi_handler_t *h = get_phi_handler_from_ops(self);
-       phi_attr_t *attr = get_Phi_attr(h, irn);
+       phi_attr_t *attr = get_Phi_attr(irn);
        attr->reg = reg;
 }
 
-static
-const arch_register_t *phi_get_irn_reg(const void *self, const ir_node *irn)
+static const arch_register_t *phi_get_irn_reg(const ir_node *irn)
 {
-       phi_handler_t *h = get_phi_handler_from_ops(self);
-       phi_attr_t *attr = get_Phi_attr(h, irn);
+       phi_attr_t *attr = get_Phi_attr(irn);
        return attr->reg;
 }
 
-static
-arch_irn_class_t phi_classify(const void *self, const ir_node *irn)
+static arch_irn_class_t phi_classify(const ir_node *irn)
 {
-       (void) self;
        (void) irn;
        return arch_irn_class_normal;
 }
 
-static
-arch_irn_flags_t phi_get_flags(const void *self, const ir_node *irn)
+static arch_irn_flags_t phi_get_flags(const ir_node *irn)
 {
-       phi_handler_t *h = get_phi_handler_from_ops(self);
-       phi_attr_t *attr = get_Phi_attr(h, irn);
-       (void) self;
+       phi_attr_t *attr = get_Phi_attr(irn);
        return attr->flags;
 }
 
-static
-ir_entity *phi_get_frame_entity(const void *self, const ir_node *irn)
+static ir_entity *phi_get_frame_entity(const ir_node *irn)
 {
-       (void) self;
        (void) irn;
        return NULL;
 }
 
-static
-void phi_set_frame_entity(const void *self, ir_node *irn, ir_entity *ent)
+static void phi_set_frame_entity(ir_node *irn, ir_entity *ent)
 {
-       (void) self;
        (void) irn;
        (void) ent;
        assert(0);
 }
 
-static
-void phi_set_frame_offset(const void *self, ir_node *irn, int bias)
+static void phi_set_frame_offset(ir_node *irn, int bias)
 {
-       (void) self;
        (void) irn;
        (void) bias;
        assert(0);
 }
 
-static
-int phi_get_sp_bias(const void* self, const ir_node *irn)
+static int phi_get_sp_bias(const ir_node *irn)
 {
-       (void) self;
        (void) irn;
        return 0;
 }
 
-static
-const arch_irn_ops_if_t phi_irn_ops = {
+static const arch_irn_ops_t phi_irn_ops = {
        phi_get_irn_reg_req,
        phi_set_irn_reg,
        phi_get_irn_reg,
@@ -1600,30 +1452,25 @@ const arch_irn_ops_if_t phi_irn_ops = {
        NULL,    /* perform_memory_operand  */
 };
 
-arch_irn_handler_t *be_phi_handler_new(const arch_env_t *arch_env)
+void be_phi_handler_new(be_main_env_t *env)
 {
-       phi_handler_t *h           = xmalloc(sizeof(h[0]));
-       h->irn_handler.get_irn_ops = phi_get_irn_ops;
-       h->irn_ops.impl            = &phi_irn_ops;
-       h->arch_env                = arch_env;
-       h->phi_attrs               = pmap_create();
-       return (arch_irn_handler_t *) h;
+       phi_handler.arch_env  = env->arch_env;
+       phi_handler.phi_attrs = pmap_create();
+       op_Phi->ops.be_ops    = &phi_irn_ops;
 }
 
-void be_phi_handler_free(arch_irn_handler_t *handler)
+void be_phi_handler_free(void)
 {
-       phi_handler_t *h = get_phi_handler_from_handler(handler);
-       pmap_destroy(h->phi_attrs);
-       h->phi_attrs = NULL;
-       free(handler);
+       pmap_destroy(phi_handler.phi_attrs);
+       phi_handler.phi_attrs = NULL;
+       op_Phi->ops.be_ops    = NULL;
 }
 
-void be_phi_handler_reset(arch_irn_handler_t *handler)
+void be_phi_handler_reset(void)
 {
-       phi_handler_t *h = get_phi_handler_from_handler(handler);
-       if(h->phi_attrs)
-               pmap_destroy(h->phi_attrs);
-       h->phi_attrs = pmap_create();
+       if(phi_handler.phi_attrs)
+               pmap_destroy(phi_handler.phi_attrs);
+       phi_handler.phi_attrs = pmap_create();
 }
 
 /*
@@ -1701,7 +1548,9 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
                        fprintf(f, get_op_name(get_irn_op(irn)));
                        break;
                case dump_node_mode_txt:
-                       fprintf(f, get_mode_name(get_irn_mode(irn)));
+                       if(be_is_Perm(irn) || be_is_Copy(irn) || be_is_CopyKeep(irn)) {
+                               fprintf(f, " %s", get_mode_name(get_irn_mode(irn)));
+                       }
                        break;
                case dump_node_nodeattr_txt:
                        if(be_is_Call(irn)) {
@@ -1709,6 +1558,16 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
                                if (a->ent)
                                        fprintf(f, " [%s] ", get_entity_name(a->ent));
                        }
+                       if(be_is_IncSP(irn)) {
+                               const be_incsp_attr_t *attr = get_irn_generic_attr_const(irn);
+                               if(attr->offset == BE_STACK_FRAME_SIZE_EXPAND) {
+                                       fprintf(f, " [Setup Stackframe] ");
+                               } else if(attr->offset == BE_STACK_FRAME_SIZE_SHRINK) {
+                                       fprintf(f, " [Destroy Stackframe] ");
+                               } else {
+                                       fprintf(f, " [%d] ", attr->offset);
+                               }
+                       }
                        break;
                case dump_node_info_txt:
                        dump_node_reqs(f, irn);
@@ -1716,17 +1575,17 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
                        if(be_has_frame_entity(irn)) {
                                be_frame_attr_t *a = (be_frame_attr_t *) at;
                                if (a->ent) {
-                                       int bits = get_type_size_bits(get_entity_type(a->ent));
-                                       ir_fprintf(f, "frame entity: %+F, offset 0x%x (%d), size 0x%x (%d) bits\n",
-                                         a->ent, a->offset, a->offset, bits, bits);
+                                       unsigned size = get_type_size_bytes(get_entity_type(a->ent));
+                                       ir_fprintf(f, "frame entity: %+F, offset 0x%x (%d), size 0x%x (%d) bytes\n",
+                                         a->ent, a->offset, a->offset, size, size);
                                }
 
                        }
 
-                       switch(be_get_irn_opcode(irn)) {
+                       switch (get_irn_opcode(irn)) {
                        case beo_IncSP:
                                {
-                                       be_stack_attr_t *a = (be_stack_attr_t *) at;
+                                       be_incsp_attr_t *a = (be_incsp_attr_t *) at;
                                        if (a->offset == BE_STACK_FRAME_SIZE_EXPAND)
                                                fprintf(f, "offset: FRAME_SIZE\n");
                                        else if(a->offset == BE_STACK_FRAME_SIZE_SHRINK)
@@ -1774,7 +1633,7 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
  */
 static void copy_attr(const ir_node *old_node, ir_node *new_node)
 {
-       be_node_attr_t *old_attr = get_irn_attr(old_node);
+       const be_node_attr_t *old_attr = get_irn_attr_const(old_node);
        be_node_attr_t *new_attr = get_irn_attr(new_node);
        struct obstack *obst = get_irg_obstack(get_irn_irg(new_node));
        unsigned i, len;
@@ -1819,6 +1678,10 @@ static void copy_attr(const ir_node *old_node, ir_node *new_node)
 }
 
 static const ir_op_ops be_node_op_ops = {
+       firm_default_hash,
+       NULL,
+       NULL,
+       NULL,
        NULL,
        NULL,
        NULL,
@@ -1831,5 +1694,55 @@ static const ir_op_ops be_node_op_ops = {
        NULL,
        NULL,
        dump_node,
-       NULL
+       NULL,
+       &be_node_irn_ops
 };
+
+int is_be_node(const ir_node *irn)
+{
+       return get_op_ops(get_irn_op(irn))->be_ops == &be_node_irn_ops;
+}
+
+void be_node_init(void) {
+       static int inited = 0;
+
+       if(inited)
+               return;
+
+       inited = 1;
+
+       /* Acquire all needed opcodes. */
+       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);
+       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);
+       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);
+       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);
+       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);
+       op_be_Keep       = new_ir_op(beo_Keep,      "be_Keep",      op_pin_state_pinned, K,   oparity_dynamic,  0, sizeof(be_node_attr_t),    &be_node_op_ops);
+       op_be_CopyKeep   = new_ir_op(beo_CopyKeep,  "be_CopyKeep",  op_pin_state_pinned, K,   oparity_variable, 0, sizeof(be_node_attr_t),    &be_node_op_ops);
+       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);
+       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);
+       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);
+       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);
+       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);
+       op_be_RegParams  = new_ir_op(beo_RegParams, "be_RegParams", op_pin_state_pinned, N,   oparity_zero,     0, sizeof(be_node_attr_t),    &be_node_op_ops);
+       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);
+       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);
+       op_be_Unwind     = new_ir_op(beo_Unwind,    "be_Unwind",    op_pin_state_pinned, X,   oparity_zero,     0, sizeof(be_node_attr_t),    &be_node_op_ops);
+
+       op_be_Spill->ops.node_cmp_attr     = FrameAddr_cmp_attr;
+       op_be_Reload->ops.node_cmp_attr    = FrameAddr_cmp_attr;
+       op_be_Perm->ops.node_cmp_attr      = node_cmp_attr;
+       op_be_MemPerm->ops.node_cmp_attr   = node_cmp_attr;
+       op_be_Copy->ops.node_cmp_attr      = node_cmp_attr;
+       op_be_Keep->ops.node_cmp_attr      = node_cmp_attr;
+       op_be_CopyKeep->ops.node_cmp_attr  = node_cmp_attr;
+       op_be_Call->ops.node_cmp_attr      = Call_cmp_attr;
+       op_be_Return->ops.node_cmp_attr    = Return_cmp_attr;
+       op_be_AddSP->ops.node_cmp_attr     = node_cmp_attr;
+       op_be_SubSP->ops.node_cmp_attr     = node_cmp_attr;
+       op_be_IncSP->ops.node_cmp_attr     = IncSP_cmp_attr;
+       op_be_RegParams->ops.node_cmp_attr = node_cmp_attr;
+       op_be_FrameAddr->ops.node_cmp_attr = FrameAddr_cmp_attr;
+       op_be_Barrier->ops.node_cmp_attr   = node_cmp_attr;
+       op_be_Unwind->ops.node_cmp_attr    = node_cmp_attr;
+}