set the global isa object
[libfirm] / ir / be / arm / arm_new_nodes.c
index 69ba1c2..e90b0cc 100644 (file)
@@ -1,18 +1,34 @@
+/*
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
+ */
+
 /**
- * This file implements the creation of the achitecture specific firm opcodes
- * and the coresponding node constructors for the arm assembler irg.
- * $Id$
+ * @file
+ * @brief  This file implements the creation of the architecture specific firm
+ *         opcodes and the corresponding node constructors for the arm
+ *         assembler irg.
+ * @author Oliver Richter, Tobias Gneist
+ * @version $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
-#ifdef _WIN32
-#include <malloc.h>
-#else
-#include <alloca.h>
-#endif
-
 #include <stdlib.h>
 
 #include "irprog_t.h"
 #include "firm_common_t.h"
 #include "irvrfy_t.h"
 #include "irprintf.h"
+#include "xmalloc.h"
 
-#include "../bearch.h"
+#include "../bearch_t.h"
 
 #include "arm_nodes_attr.h"
 #include "arm_new_nodes.h"
-#include "gen_arm_regalloc_if.h"
 
 #include "../beabi.h"
 #include "bearch_arm_t.h"
 
+/**
+ * Returns the shift modifier string.
+ */
+const char *arm_shf_mod_name(arm_shift_modifier mod) {
+  static const char *names[] = { NULL, NULL, "asr", "lsl", "lsr", "ror", "rrx" };
+       return names[mod];
+}
 
 /***********************************************************************************
  *      _                                   _       _             __
  *                       |_|
  ***********************************************************************************/
 
-/**
- * Returns a string containing the names of all registers within the limited bitset
- */
-static char *get_limited_regs(const arch_register_req_t *req, char *buf, int max) {
-       bitset_t *bs   = bitset_alloca(req->cls->n_regs);
-       char     *p    = buf;
-       int       size = 0;
-       int       i, cnt;
-
-       req->limited(NULL, bs);
-
-       for (i = 0; i < req->cls->n_regs; i++) {
-               if (bitset_is_set(bs, i)) {
-                       cnt = snprintf(p, max - size, " %s", req->cls->regs[i].name);
-                       if (cnt < 0) {
-                               fprintf(stderr, "dumper problem, exiting\n");
-                               exit(1);
-                       }
-
-                       p    += cnt;
-                       size += cnt;
-
-                       if (size >= max)
-                               break;
-               }
-       }
-
-       return buf;
-}
-
 /**
  * Dumps the register requirements for either in or out.
  */
-static void dump_reg_req(FILE *F, ir_node *n, const arm_register_req_t **reqs, int inout) {
+static void dump_reg_req(FILE *F, const ir_node *node,
+                         const arch_register_req_t **reqs, int inout) {
        char *dir = inout ? "out" : "in";
-       int   max = inout ? get_arm_n_res(n) : get_irn_arity(n);
-       char *buf = alloca(1024);
+       int   max = inout ? get_arm_n_res(node) : get_irn_arity(node);
+       char  buf[1024];
        int   i;
 
-       memset(buf, 0, 1024);
+       memset(buf, 0, sizeof(buf));
 
        if (reqs) {
                for (i = 0; i < max; i++) {
                        fprintf(F, "%sreq #%d =", dir, i);
 
-                       if (reqs[i]->req.type == arch_register_req_type_none) {
+                       if (reqs[i]->type == arch_register_req_type_none) {
                                fprintf(F, " n/a");
                        }
 
-                       if (reqs[i]->req.type & arch_register_req_type_normal) {
-                               fprintf(F, " %s", reqs[i]->req.cls->name);
+                       if (reqs[i]->type & arch_register_req_type_normal) {
+                               fprintf(F, " %s", reqs[i]->cls->name);
                        }
 
-                       if (reqs[i]->req.type & arch_register_req_type_limited) {
-                               fprintf(F, " %s", get_limited_regs(&reqs[i]->req, buf, 1024));
+                       if (reqs[i]->type & arch_register_req_type_limited) {
+                               fprintf(F, " %s",
+                                       arch_register_req_format(buf, sizeof(buf), reqs[i], node));
                        }
 
-                       if (reqs[i]->req.type & arch_register_req_type_should_be_same) {
-                               ir_fprintf(F, " same as %+F", get_irn_n(n, reqs[i]->same_pos));
+                       if (reqs[i]->type & arch_register_req_type_should_be_same) {
+                               const unsigned other = reqs[i]->other_same;
+                               int i;
+
+                               ir_fprintf(F, " same as");
+                               for (i = 0; 1U << i <= other; ++i) {
+                                       if (other & (1U << i)) {
+                                               ir_fprintf(F, " %+F", get_irn_n(node, i));
+                                       }
+                               }
                        }
 
-                       if (reqs[i]->req.type & arch_register_req_type_should_be_different) {
-                               ir_fprintf(F, " different from %+F", get_irn_n(n, reqs[i]->different_pos));
+                       if (reqs[i]->type & arch_register_req_type_should_be_different) {
+                               const unsigned other = reqs[i]->other_different;
+                               int i;
+
+                               ir_fprintf(F, " different from");
+                               for (i = 0; 1U << i <= other; ++i) {
+                                       if (other & (1U << i)) {
+                                               ir_fprintf(F, " %+F", get_irn_n(node, i));
+                                       }
+                               }
                        }
 
                        fprintf(F, "\n");
                }
 
                fprintf(F, "\n");
-       }
-       else {
+       } else {
                fprintf(F, "%sreq = N/A\n", dir);
        }
 }
 
-
 /**
  * Dumper interface for dumping arm nodes in vcg.
  * @param n        the node to dump
@@ -130,13 +139,14 @@ static void dump_reg_req(FILE *F, ir_node *n, const arm_register_req_t **reqs, i
  * @param reason   indicates which kind of information should be dumped
  * @return 0 on success or != 0 on failure
  */
-static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
-       ir_mode     *mode = NULL;
+static int arm_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
+       ir_mode     *mode = NULL;
        int          bad  = 0;
        int          i;
-       arm_attr_t *attr;
-       const arm_register_req_t **reqs;
+       arm_attr_t  *attr = get_arm_attr(n);
+       const arch_register_req_t **reqs;
        const arch_register_t     **slots;
+       arm_shift_modifier        mod;
 
        switch (reason) {
                case dump_node_opcode_txt:
@@ -155,14 +165,17 @@ static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
                        break;
 
                case dump_node_nodeattr_txt:
-
-                       /* TODO: dump some attributes which should show up */
-                       /* in node name in dump (e.g. consts or the like)  */
-
+                       mod = ARM_GET_SHF_MOD(attr);
+                       if (ARM_HAS_SHIFT(mod)) {
+                               fprintf(F, "[%s #%ld]", arm_shf_mod_name(mod), get_tarval_long(attr->value));
+                       }
+                       else if (mod == ARM_SHF_IMM) {
+                               /* immediate */
+                               fprintf(F, "[#0x%X]", arm_decode_imm_w_shift(attr->value));
+                       }
                        break;
 
                case dump_node_info_txt:
-                       attr = get_arm_attr(n);
                        fprintf(F, "=== arm attr begin ===\n");
 
                        /* dump IN requirements */
@@ -172,15 +185,15 @@ static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
                        }
 
                        /* dump OUT requirements */
-                       if (attr->n_res > 0) {
+                       if (ARR_LEN(attr->slots) > 0) {
                                reqs = get_arm_out_req_all(n);
                                dump_reg_req(F, n, reqs, 1);
                        }
 
                        /* dump assigned registers */
                        slots = get_arm_slots(n);
-                       if (slots && attr->n_res > 0) {
-                               for (i = 0; i < attr->n_res; i++) {
+                       if (slots && ARR_LEN(attr->slots) > 0) {
+                               for (i = 0; i < ARR_LEN(attr->slots); i++) {
                                        if (slots[i]) {
                                                fprintf(F, "reg #%d = %s\n", i, slots[i]->name);
                                        }
@@ -214,10 +227,10 @@ static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
 
                        if (get_arm_value(n)) {
                                if (is_arm_CopyB(n)) {
-                                       fprintf(F, "size = %u\n", get_tarval_long(get_arm_value(n)));
+                                       fprintf(F, "size = %lu\n", get_tarval_long(get_arm_value(n)));
                                } else {
                                        if (mode_is_float(get_irn_mode(n))) {
-                                               fprintf(F, "float value = (%lf)\n", get_tarval_double(get_arm_value(n)));
+                                               fprintf(F, "float value = (%f)\n", (double) get_tarval_double(get_arm_value(n)));
                                        } else if (mode_is_int(get_irn_mode(n))) {
                                                long v =  get_tarval_long(get_arm_value(n));
                                                fprintf(F, "long value = %ld (0x%08lx)\n", v, v);
@@ -228,8 +241,8 @@ static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
                                        }
                                }
                        }
-                       if (get_arm_proj_num(n) >= 0) {
-                               fprintf(F, "proj_num = (%d)\n", get_arm_proj_num(n));
+                       if (is_arm_CmpBra(n) && get_arm_CondJmp_proj_num(n) >= 0) {
+                               fprintf(F, "proj_num = (%d)\n", get_arm_CondJmp_proj_num(n));
                        }
                        /* TODO: dump all additional attributes */
 
@@ -237,8 +250,6 @@ static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
                        /* end of: case dump_node_info_txt */
                        break;
        }
-
-
        return bad;
 }
 
@@ -255,51 +266,88 @@ static int dump_node_arm(ir_node *n, FILE *F, dump_reason_t reason) {
  *                                       |___/
  ***************************************************************************************************/
 
+/* Returns the attributes of a generic Arm node. */
+arm_attr_t *get_arm_attr(ir_node *node) {
+       assert(is_arm_irn(node) && "need arm node to get attributes");
+       return get_irn_generic_attr(node);
+}
+
+const arm_attr_t *get_arm_attr_const(const ir_node *node) {
+       assert(is_arm_irn(node) && "need arm node to get attributes");
+       return get_irn_generic_attr_const(node);
+}
+
 /**
- * Wraps get_irn_generic_attr() as it takes no const ir_node, so we need to do a cast.
- * Firm was made by people hating const :-(
+ * Returns the attributes of an ARM SymConst node.
  */
-arm_attr_t *get_arm_attr(const ir_node *node) {
-       assert(is_arm_irn(node) && "need arm node to get attributes");
-       return (arm_attr_t *)get_irn_generic_attr((ir_node *)node);
+arm_SymConst_attr_t *get_arm_SymConst_attr(ir_node *node) {
+       assert(is_arm_SymConst(node));
+       return get_irn_generic_attr(node);
+}
+
+const arm_SymConst_attr_t *get_arm_SymConst_attr_const(const ir_node *node) {
+       assert(is_arm_SymConst(node));
+       return get_irn_generic_attr_const(node);
+}
+
+/* Returns the attributes of a CondJmp node. */
+arm_CondJmp_attr_t *get_arm_CmpBra_attr(ir_node *node) {
+       assert(is_arm_CmpBra(node));
+       return get_irn_generic_attr(node);
+}
+
+const arm_CondJmp_attr_t *get_arm_CmpBra_attr_const(const ir_node *node) {
+       assert(is_arm_CmpBra(node));
+       return get_irn_generic_attr_const(node);
+}
+
+/* Returns the attributes of a SwitchJmp node. */
+arm_SwitchJmp_attr_t *get_arm_SwitchJmp_attr(ir_node *node) {
+       assert(is_arm_SwitchJmp(node));
+       return get_irn_generic_attr(node);
+}
+
+const arm_SwitchJmp_attr_t *get_arm_SwitchJmp_attr_const(const ir_node *node) {
+       assert(is_arm_SwitchJmp(node));
+       return get_irn_generic_attr_const(node);
 }
 
 /**
  * Returns the argument register requirements of a arm node.
  */
-const arm_register_req_t **get_arm_in_req_all(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+const arch_register_req_t **get_arm_in_req_all(const ir_node *node) {
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->in_req;
 }
 
 /**
  * Returns the result register requirements of an arm node.
  */
-const arm_register_req_t **get_arm_out_req_all(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+const arch_register_req_t **get_arm_out_req_all(const ir_node *node) {
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->out_req;
 }
 
 /**
  * Returns the argument register requirement at position pos of an arm node.
  */
-const arm_register_req_t *get_arm_in_req(const ir_node *node, int pos) {
-       arm_attr_t *attr = get_arm_attr(node);
+const arch_register_req_t *get_arm_in_req(const ir_node *node, int pos) {
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->in_req[pos];
 }
 
 /**
  * Returns the result register requirement at position pos of an arm node.
  */
-const arm_register_req_t *get_arm_out_req(const ir_node *node, int pos) {
-       arm_attr_t *attr = get_arm_attr(node);
+const arch_register_req_t *get_arm_out_req(const ir_node *node, int pos) {
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->out_req[pos];
 }
 
 /**
  * Sets the OUT register requirements at position pos.
  */
-void set_arm_req_out(ir_node *node, const arm_register_req_t *req, int pos) {
+void set_arm_req_out(ir_node *node, const arch_register_req_t *req, int pos) {
        arm_attr_t *attr   = get_arm_attr(node);
        attr->out_req[pos] = req;
 }
@@ -307,7 +355,7 @@ void set_arm_req_out(ir_node *node, const arm_register_req_t *req, int pos) {
 /**
  * Sets the complete OUT requirements of node.
  */
-void set_arm_req_out_all(ir_node *node, const arm_register_req_t **reqs) {
+void set_arm_req_out_all(ir_node *node, const arch_register_req_t **reqs) {
        arm_attr_t *attr = get_arm_attr(node);
        attr->out_req    = reqs;
 }
@@ -315,7 +363,7 @@ void set_arm_req_out_all(ir_node *node, const arm_register_req_t **reqs) {
 /**
  * Sets the IN register requirements at position pos.
  */
-void set_arm_req_in(ir_node *node, const arm_register_req_t *req, int pos) {
+void set_arm_req_in(ir_node *node, const arch_register_req_t *req, int pos) {
        arm_attr_t *attr  = get_arm_attr(node);
        attr->in_req[pos] = req;
 }
@@ -324,14 +372,14 @@ void set_arm_req_in(ir_node *node, const arm_register_req_t *req, int pos) {
  * Returns the register flag of an arm node.
  */
 arch_irn_flags_t get_arm_flags(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->flags;
 }
 
 /**
  * Sets the register flag of an arm node.
  */
-void set_arm_flags(const ir_node *node, arch_irn_flags_t flags) {
+void set_arm_flags(ir_node *node, arch_irn_flags_t flags) {
        arm_attr_t *attr = get_arm_attr(node);
        attr->flags      = flags;
 }
@@ -340,7 +388,7 @@ void set_arm_flags(const ir_node *node, arch_irn_flags_t flags) {
  * Returns the result register slots of an arm node.
  */
 const arch_register_t **get_arm_slots(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->slots;
 }
 
@@ -348,10 +396,10 @@ const arch_register_t **get_arm_slots(const ir_node *node) {
  * Returns the name of the OUT register at position pos.
  */
 const char *get_arm_out_reg_name(const ir_node *node, int pos) {
-       arm_attr_t *attr = get_arm_attr(node);
+       const arm_attr_t *attr = get_arm_attr_const(node);
 
        assert(is_arm_irn(node) && "Not an arm node.");
-       assert(pos < attr->n_res && "Invalid OUT position.");
+       assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
        assert(attr->slots[pos]  && "No register assigned");
 
        return arch_register_get_name(attr->slots[pos]);
@@ -361,10 +409,10 @@ const char *get_arm_out_reg_name(const ir_node *node, int pos) {
  * Returns the index of the OUT register at position pos within its register class.
  */
 int get_arm_out_regnr(const ir_node *node, int pos) {
-       arm_attr_t *attr = get_arm_attr(node);
+       const arm_attr_t *attr = get_arm_attr_const(node);
 
        assert(is_arm_irn(node) && "Not an arm node.");
-       assert(pos < attr->n_res && "Invalid OUT position.");
+       assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
        assert(attr->slots[pos]  && "No register assigned");
 
        return arch_register_get_index(attr->slots[pos]);
@@ -374,35 +422,45 @@ int get_arm_out_regnr(const ir_node *node, int pos) {
  * Returns the OUT register at position pos.
  */
 const arch_register_t *get_arm_out_reg(const ir_node *node, int pos) {
-       arm_attr_t *attr = get_arm_attr(node);
+       const arm_attr_t *attr = get_arm_attr_const(node);
 
        assert(is_arm_irn(node) && "Not an arm node.");
-       assert(pos < attr->n_res && "Invalid OUT position.");
+       assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
        assert(attr->slots[pos]  && "No register assigned");
 
        return attr->slots[pos];
 }
 
 /**
- * Sets the number of results.
+ * Sets the flags for the n'th out.
  */
-void set_arm_n_res(ir_node *node, int n_res) {
+void set_arm_out_flags(ir_node *node, arch_irn_flags_t flags, int pos) {
        arm_attr_t *attr = get_arm_attr(node);
-       attr->n_res      = n_res;
+       assert(pos < ARR_LEN(attr->out_flags) && "Invalid OUT position.");
+       attr->out_flags[pos] = flags;
+}
+
+/**
+ * Gets the flags for the n'th out.
+ */
+arch_irn_flags_t get_arm_out_flags(const ir_node *node, int pos) {
+       const arm_attr_t *attr = get_arm_attr_const(node);
+       assert(pos < ARR_LEN(attr->out_flags) && "Invalid OUT position.");
+       return attr->out_flags[pos];
 }
 
 /**
  * Returns the number of results.
  */
 int get_arm_n_res(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
-       return attr->n_res;
+       const arm_attr_t *attr = get_arm_attr_const(node);
+       return ARR_LEN(attr->slots);
 }
 /**
  * Returns the tarvalue
  */
 tarval *get_arm_value(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+       const arm_attr_t *attr = get_arm_attr_const(node);
        return attr->value;
 }
 
@@ -417,183 +475,192 @@ void set_arm_value(ir_node *node, tarval *tv) {
 /**
  * Returns the proj num
  */
-int get_arm_proj_num(const ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+int get_arm_CondJmp_proj_num(const ir_node *node) {
+       const arm_CondJmp_attr_t *attr = get_arm_CmpBra_attr_const(node);
        return attr->proj_num;
 }
 
 /**
  * Sets the proj num
  */
-void set_arm_proj_num(ir_node *node, int proj_num) {
-       arm_attr_t *attr = get_arm_attr(node);
-       attr->proj_num      = proj_num;
+void set_arm_CondJmp_proj_num(ir_node *node, int proj_num) {
+       arm_CondJmp_attr_t *attr = get_arm_CmpBra_attr(node);
+       attr->proj_num   = proj_num;
 }
 
 /**
  * Returns the SymConst label
  */
-const char *get_arm_symconst_label(ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
-       return attr->symconst_label;
+ident *get_arm_symconst_id(const ir_node *node) {
+       const arm_SymConst_attr_t *attr = get_arm_SymConst_attr_const(node);
+       return attr->symconst_id;
 }
 
 /**
  * Sets the SymConst label
  */
-void set_arm_symconst_label(ir_node *node, const char *symconst_label) {
-       arm_attr_t *attr = get_arm_attr(node);
-       attr->symconst_label = symconst_label;
+void set_arm_symconst_id(ir_node *node, ident *symconst_id) {
+       arm_SymConst_attr_t *attr = get_arm_SymConst_attr(node);
+       attr->symconst_id = symconst_id;
 }
 
-
 /**
- * Returns the number of projs.
+ * Returns the number of projs of a SwitchJmp.
  */
-int get_arm_n_projs(ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+int get_arm_SwitchJmp_n_projs(const ir_node *node) {
+       const arm_SwitchJmp_attr_t *attr = get_arm_SwitchJmp_attr_const(node);
        return attr->n_projs;
 }
 
 /**
  * Sets the number of projs.
  */
-void set_arm_n_projs(ir_node *node, int n_projs) {
-       arm_attr_t *attr = get_arm_attr(node);
+void set_arm_SwitchJmp_n_projs(ir_node *node, int n_projs) {
+       arm_SwitchJmp_attr_t *attr = get_arm_SwitchJmp_attr(node);
        attr->n_projs = n_projs;
 }
 
 /**
  * Returns the default_proj_num.
  */
-long get_arm_default_proj_num(ir_node *node) {
-       arm_attr_t *attr = get_arm_attr(node);
+long get_arm_SwitchJmp_default_proj_num(const ir_node *node) {
+       const arm_SwitchJmp_attr_t *attr = get_arm_SwitchJmp_attr_const(node);
        return attr->default_proj_num;
 }
 
 /**
  * Sets the default_proj_num.
  */
-void set_arm_default_proj_num(ir_node *node, long default_proj_num) {
-       arm_attr_t *attr = get_arm_attr(node);
+void set_arm_SwitchJmp_default_proj_num(ir_node *node, long default_proj_num) {
+       arm_SwitchJmp_attr_t *attr = get_arm_SwitchJmp_attr(node);
        attr->default_proj_num = default_proj_num;
 }
 
-
-
-void init_arm_attributes(ir_node *node, int flags, const arm_register_req_t ** in_reqs,
-                                                const arm_register_req_t ** out_reqs, int n_res) {
-       arm_attr_t *attr = get_arm_attr(node);
-       attr->in_req = in_reqs;
-       attr->out_req = out_reqs;
-       attr->n_res = n_res;
-       attr->flags = flags;
-       attr->slots = xcalloc(n_res, sizeof(attr->slots[0]));
-       attr->value = NULL;
-       attr->proj_num = -42;
-       attr->symconst_label = NULL;
-       attr->n_projs = 0;
-       attr->default_proj_num = 0;
-}
-
-static int arm_comp_condJmp(arm_attr_t *attr_a, arm_attr_t *attr_b) {
+/**
+ * Gets the shift modifier attribute.
+ */
+arm_shift_modifier get_arm_shift_modifier(const ir_node *node) {
+       const arm_attr_t *attr = get_arm_attr_const(node);
+       return ARM_GET_SHF_MOD(attr);
+}
+
+/* Set the ARM machine node attributes to default values. */
+static void init_arm_attributes(ir_node *node, int flags,
+                         const arch_register_req_t ** in_reqs,
+                                                const arch_register_req_t ** out_reqs,
+                         const be_execution_unit_t ***execution_units,
+                                                int n_res) {
+       ir_graph       *irg  = get_irn_irg(node);
+       struct obstack *obst = get_irg_obstack(irg);
+       arm_attr_t     *attr = get_arm_attr(node);
+       (void) execution_units;
+
+       attr->in_req           = in_reqs;
+       attr->out_req          = out_reqs;
+       attr->flags            = flags;
+       attr->instr_fl         = (ARM_COND_AL << 3) | ARM_SHF_NONE;
+       attr->value            = NULL;
+
+       attr->out_flags = NEW_ARR_D(int, obst, n_res);
+       memset(attr->out_flags, 0, n_res * sizeof(attr->out_flags[0]));
+
+       attr->slots = NEW_ARR_D(const arch_register_t*, obst, n_res);
+       memset(attr->slots, 0, n_res * sizeof(attr->slots[0]));
+}
+
+/************************************************
+ *   ___        _   _           _               *
+ *  / _ \ _ __ | |_(_)_ __ ___ (_)_______ _ __  *
+ * | | | | '_ \| __| | '_ ` _ \| |_  / _ \ '__| *
+ * | |_| | |_) | |_| | | | | | | |/ /  __/ |    *
+ *  \___/| .__/ \__|_|_| |_| |_|_/___\___|_|    *
+ *       |_|                                    *
+ ************************************************/
+
+typedef struct _opt_tuple {
+       ir_op *op_imm_left;             /**< immediate is left */
+       ir_op *op_imm_right;    /**< immediate is right */
+       ir_op *op_shf_left;             /**< shift operand on left */
+       ir_op *op_shf_right;    /**< shift operand on right */
+} opt_tuple;
+
+//static const opt_tuple *opt_ops[iro_arm_last];
+
+void arm_set_optimizers(void) {
+       /*
+#define STD(op)                p_##op = { op_arm_##op##_i, op_arm_##op##_i, op_arm_##op, op_arm_##op }
+#define LEFT(op)       p_##op = { op_arm_##op##_i, NULL, op_arm_##op, NULL }
+#define SET(op)   opt_ops[iro_arm_##op] = &p_##op;
+
+       static const opt_tuple
+               STD(Add),
+               STD(And),
+               STD(Or),
+               STD(Eor),
+               LEFT(Bic),
+               LEFT(Shl),
+               LEFT(Shr),
+               LEFT(Shrs),
+               p_Sub = { op_arm_Sub_i, op_arm_Rsb_i, op_arm_Sub, op_arm_Rsb },
+
+       memset(opt_ops, 0, sizeof(opt_ops));
+       SET(Add);
+       SET(And);
+       SET(Or);
+       SET(Eor);
+       SET(Sub);
+       SET(Bic);
+       SET(Shl);
+       SET(Shr);
+       SET(Shrs);
+       */
+}
+
+static int cmp_attr_arm_SymConst(ir_node *a, ir_node *b) {
+       const arm_SymConst_attr_t *attr_a = get_irn_generic_attr_const(a);
+       const arm_SymConst_attr_t *attr_b = get_irn_generic_attr_const(b);
+       return attr_a->symconst_id != attr_b->symconst_id;
+}
+
+static int cmp_attr_arm(ir_node *a, ir_node *b) {
+       arm_attr_t *attr_a = get_irn_generic_attr(a);
+       arm_attr_t *attr_b = get_irn_generic_attr(b);
+       return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->value != attr_b->value);
+}
+
+static int cmp_attr_arm_CondJmp(ir_node *a, ir_node *b) {
+       (void) a;
+       (void) b;
+       /* never identical */
        return 1;
 }
 
-ir_node *arm_new_NoReg_gp(arm_code_gen_t *cg) {
-       return be_abi_get_callee_save_irn(cg->birg->abi, &arm_general_purpose_regs[REG_RXX]);
-}
-
-ir_node *arm_new_NoReg_fp(arm_code_gen_t *cg) {
-       return be_abi_get_callee_save_irn(cg->birg->abi, &arm_floating_point_regs[REG_FXX]);
+static int cmp_attr_arm_SwitchJmp(ir_node *a, ir_node *b) {
+       (void) a;
+       (void) b;
+       /* never identical */
+       return 1;
 }
 
+/** copies the ARM attributes of a node. */
+static void arm_copy_attr(const ir_node *old_node, ir_node *new_node) {
+       ir_graph          *irg     = get_irn_irg(new_node);
+       struct obstack    *obst    = get_irg_obstack(irg);
+       const arm_attr_t *attr_old = get_arm_attr_const(old_node);
+       arm_attr_t       *attr_new = get_arm_attr(new_node);
 
+       /* copy the attributes */
+       memcpy(attr_new, attr_old, get_op_attr_size(get_irn_op(old_node)));
 
-
-/***************************************************************************************
- *                  _                            _                   _
- *                 | |                          | |                 | |
- *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
- * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
- * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
- * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
- *
- ***************************************************************************************/
-
-/* limit the possible registers for sp in arm_StoreStackM4Inc */
-static void limit_reg_arm_StoreStackM4Inc_sp(void *_unused, bitset_t *bs) {
-  bs = bitset_clear_all(bs);   /* disallow all register (positive constraints given) */
-  bitset_set(bs, 14);           /* allow r13 */
-  bitset_clear(bs, 13);         /* disallow ignore reg r12 */
-  bitset_clear(bs, 14);         /* disallow ignore reg r13 */
-  bitset_clear(bs, 15);         /* disallow ignore reg r15 */
-  bitset_clear(bs, 16);         /* disallow ignore reg rxx */
-  bitset_clear(bs, 17);         /* disallow ignore reg MURX */
-}
-
-static const arm_register_req_t _arm_req_sp = {
-  {
-    arch_register_req_type_limited,
-    &arm_reg_classes[CLASS_arm_general_purpose],
-    limit_reg_arm_StoreStackM4Inc_sp,
-    NULL,        /* limit environment */
-    NULL,        /* same node */
-    NULL         /* different node */
-  },
-  0,
-  0
-};
-
-/* construct Store: Store(ptr, val, mem) = ST ptr,val */
-ir_node *new_r_arm_StoreStackMInc(ir_graph *irg, ir_node *block, ir_node *mem, ir_node *sp,
-                                                                 int n_regs, ir_node **regs, ir_mode *mode) {
-  ir_node *res;
-  ir_node *in[16];
-  int flags = 0;
-  static const arm_register_req_t *_in_req_arm_StoreStackM4Inc[] =
-  {
-       &arm_default_req_none,
-    &_arm_req_sp,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-    &arm_default_req_arm_general_purpose,
-  };
-
-  assert(n_regs <= 15);
-
-  in[0] = mem;
-  in[1] = sp;
-  memcpy(&in[2], regs, n_regs * sizeof(in[0]));
-  res = new_ir_node(NULL, irg, block, op_arm_StoreStackM4Inc, mode, 2 + n_regs, in);
-  flags |= arch_irn_flags_rematerializable;   /* op can be easily recalculated */
-
-  /* init node attributes */
-  init_arm_attributes(res, flags, _in_req_arm_StoreStackM4Inc, NULL, 0);
-
-  res = optimize_node(res);
-  irn_vrfy_irg(res, irg);
-
-  return res;
-}
-
-/**
- * Register additional opcodes here.
- */
-static void arm_register_additional_opcodes(int cur_opcode) {
+       /* copy out flags */
+       attr_new->out_flags =
+               DUP_ARR_D(int, obst, attr_old->out_flags);
+       /* copy register assignments */
+       attr_new->slots =
+               DUP_ARR_D(arch_register_t*, obst, attr_old->slots);
 }
 
 
+
 /* Include the generated constructor functions */
 #include "gen_arm_new_nodes.c.inl"