use more IR_RESOURCE_TYPE_VISITED, remove pointless inc_master_type_visited calls
[libfirm] / ir / be / mips / mips_new_nodes.c
index d952d7a..0d52ae1 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.
  *
@@ -25,9 +25,7 @@
  * @author   Matthias Braun, Mehdi
  * @version  $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
 #include <stdlib.h>
 
 #include "ircons_t.h"
 #include "iropt_t.h"
 #include "irop.h"
-#include "firm_common_t.h"
 #include "irvrfy_t.h"
 #include "irprintf.h"
 #include "xmalloc.h"
 
-#include "../bearch_t.h"
+#include "../bearch.h"
 
 #include "mips_nodes_attr.h"
 #include "mips_new_nodes.h"
  *                       |_|
  ***********************************************************************************/
 
-/**
- * Dumps the register requirements for either in or out.
- */
-static void dump_reg_req(FILE *F, ir_node *n, const arch_register_req_t **reqs,
-                         int inout)
-{
-       const mips_attr_t *attr = get_mips_attr_const(n);
-       char *dir = inout ? "out" : "in";
-       int   max = inout ? ARR_LEN(attr->slots) : get_irn_arity(n);
-       char  buf[1024];
-       int   i;
-
-       memset(buf, 0, sizeof(buf));
-
-       if (reqs) {
-               for (i = 0; i < max; i++) {
-                       fprintf(F, "%sreq #%d =", dir, i);
-
-                       if (reqs[i]->type == arch_register_req_type_none) {
-                               fprintf(F, " n/a");
-                       }
-
-                       if (reqs[i]->type & arch_register_req_type_normal) {
-                               fprintf(F, " %s", reqs[i]->cls->name);
-                       }
-
-                       if (reqs[i]->type & arch_register_req_type_limited) {
-                               fprintf(F, " %s",
-                                       arch_register_req_format(buf, sizeof(buf), reqs[i], n));
-                       }
-
-                       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", i);
-                                       }
-                               }
-                       }
-
-                       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", i);
-                                       }
-                               }
-                       }
-
-                       fprintf(F, "\n");
-               }
-
-               fprintf(F, "\n");
-       } else {
-               fprintf(F, "%sreq = N/A\n", dir);
-       }
-}
-
-
 /**
  * Dumper interface for dumping mips nodes in vcg.
  * @param n        the node to dump
@@ -134,13 +66,8 @@ static void dump_reg_req(FILE *F, ir_node *n, const arch_register_req_t **reqs,
  * @param reason   indicates which kind of information should be dumped
  * @return 0 on success or != 0 on failure
  */
-static int mips_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
-       int          bad  = 0;
-       int          i;
-       const mips_attr_t *attr = get_mips_attr_const(n);
-       const arch_register_req_t **reqs;
-       const arch_register_t     **slots;
-
+static int mips_dump_node(ir_node *n, FILE *F, dump_reason_t reason)
+{
        switch (reason) {
                case dump_node_opcode_txt:
                        fprintf(F, "%s", get_irn_opname(n));
@@ -180,63 +107,11 @@ static int mips_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
                        break;
 
                case dump_node_info_txt:
-                       attr = get_mips_attr(n);
-                       fprintf(F, "=== mips attr begin ===\n");
-
-                       /* dump IN requirements */
-                       if (get_irn_arity(n) > 0) {
-                               reqs = get_mips_in_req_all(n);
-                               dump_reg_req(F, n, reqs, 0);
-                       }
-
-                       /* dump OUT requirements */
-                       if (ARR_LEN(attr->slots) > 0) {
-                               reqs = get_mips_out_req_all(n);
-                               dump_reg_req(F, n, reqs, 1);
-                       }
-
-                       /* dump assigned registers */
-                       slots = get_mips_slots(n);
-                       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);
-                                       }
-                                       else {
-                                               fprintf(F, "reg #%d = n/a\n", i);
-                                       }
-                               }
-                       }
-                       fprintf(F, "\n");
-
-                       /* dump n_res */
-                       fprintf(F, "n_res = %d\n", ARR_LEN(attr->slots));
-
-                       /* dump flags */
-                       fprintf(F, "flags =");
-                       if (attr->flags == arch_irn_flags_none) {
-                               fprintf(F, " none");
-                       }
-                       else {
-                               if (attr->flags & arch_irn_flags_dont_spill) {
-                                       fprintf(F, " unspillable");
-                               }
-                               if (attr->flags & arch_irn_flags_rematerializable) {
-                                       fprintf(F, " remat");
-                               }
-                               if (attr->flags & arch_irn_flags_ignore) {
-                                       fprintf(F, " ignore");
-                               }
-                       }
-                       fprintf(F, " (%d)\n", attr->flags);
-
-                       fprintf(F, "=== mips attr end ===\n");
-                       /* end of: case dump_node_info_txt */
+                       arch_dump_reqs_and_registers(F, n);
                        break;
        }
 
-
-       return bad;
+       return 0;
 }
 
 
@@ -286,15 +161,6 @@ const arch_register_req_t **get_mips_in_req_all(const ir_node *node)
        return attr->in_req;
 }
 
-/**
- * Returns the result register requirements of an mips node.
- */
-const arch_register_req_t **get_mips_out_req_all(const ir_node *node)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-       return attr->out_req;
-}
-
 /**
  * Returns the argument register requirement at position pos of an mips node.
  */
@@ -304,24 +170,6 @@ const arch_register_req_t *get_mips_in_req(const ir_node *node, int pos)
        return attr->in_req[pos];
 }
 
-/**
- * Returns the result register requirement at position pos of an mips node.
- */
-const arch_register_req_t *get_mips_out_req(const ir_node *node, int pos)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-       return attr->out_req[pos];
-}
-
-/**
- * Sets the OUT register requirements at position pos.
- */
-void set_mips_req_out(ir_node *node, const arch_register_req_t *req, int pos)
-{
-       mips_attr_t *attr   = get_mips_attr(node);
-       attr->out_req[pos] = req;
-}
-
 /**
  * Sets the IN register requirements at position pos.
  */
@@ -331,95 +179,26 @@ void set_mips_req_in(ir_node *node, const arch_register_req_t *req, int pos)
        attr->in_req[pos] = req;
 }
 
-/**
- * Returns the register flag of an mips node.
- */
-arch_irn_flags_t get_mips_flags(const ir_node *node)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-       return attr->flags;
-}
-
-/**
- * Sets the register flag of an mips node.
- */
-void set_mips_flags(ir_node *node, arch_irn_flags_t flags)
-{
-       mips_attr_t *attr = get_mips_attr(node);
-       attr->flags      = flags;
-}
-
-/**
- * Returns the result register slots of an mips node.
- */
-const arch_register_t **get_mips_slots(const ir_node *node)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-       return attr->slots;
-}
-
-/**
- * Returns the name of the OUT register at position pos.
- */
-const char *get_mips_out_reg_name(const ir_node *node, int pos)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-
-       assert(is_mips_irn(node) && "Not an mips node.");
-       assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
-       assert(attr->slots[pos]  && "No register assigned");
-
-       return arch_register_get_name(attr->slots[pos]);
-}
-
-/**
- * Returns the index of the OUT register at position pos within its register class.
- */
-int get_mips_out_regnr(const ir_node *node, int pos)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-
-       assert(is_mips_irn(node) && "Not an mips node.");
-       assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
-       assert(attr->slots[pos]  && "No register assigned");
-
-       return arch_register_get_index(attr->slots[pos]);
-}
-
-/**
- * Returns the OUT register at position pos.
- */
-const arch_register_t *get_mips_out_reg(const ir_node *node, int pos)
-{
-       const mips_attr_t *attr = get_mips_attr_const(node);
-
-       assert(is_mips_irn(node) && "Not an mips node.");
-       assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
-       assert(attr->slots[pos]  && "No register assigned");
-
-       return attr->slots[pos];
-}
-
 /**
  * Initializes the nodes attributes.
  */
 static void init_mips_attributes(ir_node *node, arch_irn_flags_t 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);
        mips_attr_t    *attr = get_mips_attr(node);
+       backend_info_t *info;
        (void) execution_units;
 
-       attr->flags   = flags;
-       attr->out_req = out_reqs;
+       arch_irn_set_flags(node, flags);
        attr->in_req  = in_reqs;
 
-       attr->slots = NEW_ARR_D(const arch_register_t*, obst, n_res);
-       memset(attr->slots, 0, n_res * sizeof(attr->slots[0]));
+       info            = be_get_info(node);
+       info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_res);
+       memset(info->out_infos, 0, n_res * sizeof(info->out_infos[0]));
 }
 
 static void init_mips_immediate_attributes(ir_node *node,
@@ -446,10 +225,6 @@ static int mips_compare_nodes_attr(ir_node *node_a, ir_node *node_b)
        const mips_attr_t *a = get_mips_attr_const(node_a);
        const mips_attr_t *b = get_mips_attr_const(node_b);
 
-       if(a->flags != b->flags)
-               return 1;
-       if(ARR_LEN(a->slots) != ARR_LEN(b->slots))
-               return 1;
        if(a->switch_default_pn != b->switch_default_pn)
                return 1;
 
@@ -461,8 +236,6 @@ static int mips_compare_immediate_attr(ir_node *node_a, ir_node *node_b)
        const mips_immediate_attr_t *a = get_mips_immediate_attr_const(node_a);
        const mips_immediate_attr_t *b = get_mips_immediate_attr_const(node_b);
 
-       if(a->attr.flags != b->attr.flags)
-               return 1;
        if(a->val != b->val)
                return 1;
 
@@ -490,12 +263,15 @@ static void mips_copy_attr(const ir_node *old_node , ir_node *new_node)
        struct obstack    *obst     = get_irg_obstack(irg);
        const mips_attr_t *attr_old = get_mips_attr_const(old_node);
        mips_attr_t       *attr_new = get_mips_attr(new_node);
+       backend_info_t    *old_info = be_get_info(old_node);
+       backend_info_t    *new_info = be_get_info(new_node);
 
        /* copy the attributes */
        memcpy(attr_new, attr_old, get_op_attr_size(get_irn_op(old_node)));
 
-       /* copy register assignments */
-       attr_new->slots = DUP_ARR_D(arch_register_t*, obst, attr_old->slots);
+       /* copy out flags */
+       new_info->out_infos =
+               DUP_ARR_D(reg_out_info_t, obst, old_info->out_infos);
 }
 
 /***************************************************************************************