OSDN Git Service

* except.c (expand_start_all_catch): If the machine needs a
[pf3gnuchains/gcc-fork.git] / gcc / genattrtab.c
index cb22fb9..14ecac1 100644 (file)
@@ -1,6 +1,6 @@
 /* Generate code from machine description to compute values of attributes.
-   Copyright (C) 1991 Free Software Foundation, Inc.
-   Contributed by Richard Kenner (kenner@nyu.edu)
+   Copyright (C) 1991, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+   Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
 
 This file is part of GNU CC.
 
@@ -16,7 +16,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU CC; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 /* This program handles insn attributes and the DEFINE_DELAY and
    DEFINE_FUNCTION_UNIT definitions.
@@ -94,13 +95,28 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
       EQ_ATTR rtx is true if !volatil and false if volatil.  */
 
 
-#include "gvarargs.h"
-#include "config.h"
+#include "hconfig.h"
+/* varargs must always be included after *config.h.  */
+#ifdef __STDC__
+#include <stdarg.h>
+#else
+#include <varargs.h>
+#endif
 #include "rtl.h"
-#include "obstack.h"
 #include "insn-config.h"       /* For REGISTER_CONSTRAINTS */
 #include <stdio.h>
 
+#ifndef VMS
+#ifndef USG
+#include <sys/time.h>
+#include <sys/resource.h>
+#endif
+#endif
+
+/* We must include obstack.h after <sys/time.h>, to avoid lossage with
+   /usr/include/sys/stdtypes.h on Sun OS 4.x.  */
+#include "obstack.h"
+
 static struct obstack obstack, obstack1, obstack2;
 struct obstack *rtl_obstack = &obstack;
 struct obstack *hash_obstack = &obstack1;
@@ -118,6 +134,9 @@ extern rtx read_rtx ();
 static void fatal ();
 void fancy_abort ();
 
+/* enough space to reserve for printing out ints */
+#define MAX_DIGITS (HOST_BITS_PER_INT * 3 / 10 + 3)
+
 /* Define structures used to record attributes and values.  */
 
 /* As each DEFINE_INSN, DEFINE_PEEPHOLE, or DEFINE_ASM_ATTRIBUTES is
@@ -127,12 +146,12 @@ void fancy_abort ();
 
 struct insn_def
 {
-  int insn_code;               /* Instruction number. */
-  int insn_index;              /* Expression numer in file, for errors. */
-  struct insn_def *next;       /* Next insn in chain. */
-  rtx def;                     /* The DEFINE_... */
+  int insn_code;               /* Instruction number.  */
+  int insn_index;              /* Expression numer in file, for errors.  */
+  struct insn_def *next;       /* Next insn in chain.  */
+  rtx def;                     /* The DEFINE_...  */
   int num_alternatives;                /* Number of alternatives.  */
-  int vec_idx;                 /* Index of attribute vector in `def'. */
+  int vec_idx;                 /* Index of attribute vector in `def'.  */
 };
 
 /* Once everything has been read in, we store in each attribute value a list
@@ -163,24 +182,33 @@ struct attr_value
 
 struct attr_desc
 {
-  char *name;                  /* Name of attribute. */
-  struct attr_desc *next;      /* Next attribute. */
-  int is_numeric;              /* Values of this attribute are numeric. */
+  char *name;                  /* Name of attribute.  */
+  struct attr_desc *next;      /* Next attribute.  */
+  int is_numeric;              /* Values of this attribute are numeric.  */
   int negative_ok;             /* Allow negative numeric values.  */
+  int unsigned_p;              /* Make the output function unsigned int.  */
   int is_const;                        /* Attribute value constant for each run.  */
-  int is_special;              /* Don't call `write_attr_set'. */
-  struct attr_value *first_value; /* First value of this attribute. */
-  struct attr_value *default_val; /* Default value for this attribute. */
+  int is_special;              /* Don't call `write_attr_set'.  */
+  struct attr_value *first_value; /* First value of this attribute.  */
+  struct attr_value *default_val; /* Default value for this attribute.  */
 };
 
 #define NULL_ATTR (struct attr_desc *) NULL
 
+/* A range of values.  */
+
+struct range
+{
+  int min;
+  int max;
+};
+
 /* Structure for each DEFINE_DELAY.  */
 
 struct delay_desc
 {
   rtx def;                     /* DEFINE_DELAY expression.  */
-  struct delay_desc *next;     /* Next DEFINE_DELAY. */
+  struct delay_desc *next;     /* Next DEFINE_DELAY.  */
   int num;                     /* Number of DEFINE_DELAY, starting at 1.  */
 };
 
@@ -192,7 +220,9 @@ struct function_unit_op
   struct function_unit_op *next; /* Next operation for this function unit.  */
   int num;                     /* Ordinal for this operation type in unit.  */
   int ready;                   /* Cost until data is ready.  */
-  rtx busyexp;                 /* Expression computing conflict cost.  */
+  int issue_delay;             /* Cost until unit can accept another insn.  */
+  rtx conflict_exp;            /* Expression TRUE for insns incurring issue delay.  */
+  rtx issue_exp;               /* Expression computing issue delay.  */
 };
 
 /* Record information about each function unit mentioned in a
@@ -206,15 +236,15 @@ struct function_unit
   int multiplicity;            /* Number of units of this type.  */
   int simultaneity;            /* Maximum number of simultaneous insns
                                   on this function unit or 0 if unlimited.  */
-  rtx condexp;                 /* Expression TRUE for insn needing unit. */
-  rtx costexp;                 /* Worst-case cost as function of insn. */
+  rtx condexp;                 /* Expression TRUE for insn needing unit.  */
   int num_opclasses;           /* Number of different operation types.  */
   struct function_unit_op *ops;        /* Pointer to first operation type.  */
   int needs_conflict_function; /* Nonzero if a conflict function required.  */
+  int needs_blockage_function; /* Nonzero if a blockage function required.  */
+  int needs_range_function;    /* Nonzero if blockage range function needed.*/
   rtx default_cost;            /* Conflict cost, if constant.  */
-  rtx max_busy_cost;           /* Maximum conflict cost.  */
-  int min_busy_delay;          /* Minimum conflict cost.  */
-  int max_busy_delay;          /* Maximum conflict cost.  */
+  struct range issue_delay;    /* Range of issue delay values.  */
+  int max_blockage;            /* Maximum time an insn blocks the unit.  */
 };
 
 /* Listheads of above structures.  */
@@ -226,7 +256,50 @@ static struct insn_def *defs;
 static struct delay_desc *delays;
 static struct function_unit *units;
 
-/* Other variables. */
+/* An expression where all the unknown terms are EQ_ATTR tests can be
+   rearranged into a COND provided we can enumerate all possible
+   combinations of the unknown values.  The set of combinations become the
+   tests of the COND; the value of the expression given that combination is
+   computed and becomes the corresponding value.  To do this, we must be
+   able to enumerate all values for each attribute used in the expression
+   (currently, we give up if we find a numeric attribute).
+   
+   If the set of EQ_ATTR tests used in an expression tests the value of N
+   different attributes, the list of all possible combinations can be made
+   by walking the N-dimensional attribute space defined by those
+   attributes.  We record each of these as a struct dimension.
+
+   The algorithm relies on sharing EQ_ATTR nodes: if two nodes in an
+   expression are the same, the will also have the same address.  We find
+   all the EQ_ATTR nodes by marking them MEM_VOLATILE_P.  This bit later
+   represents the value of an EQ_ATTR node, so once all nodes are marked,
+   they are also given an initial value of FALSE.
+
+   We then separate the set of EQ_ATTR nodes into dimensions for each
+   attribute and put them on the VALUES list.  Terms are added as needed by
+   `add_values_to_cover' so that all possible values of the attribute are
+   tested.
+
+   Each dimension also has a current value.  This is the node that is
+   currently considered to be TRUE.  If this is one of the nodes added by
+   `add_values_to_cover', all the EQ_ATTR tests in the original expression
+   will be FALSE.  Otherwise, only the CURRENT_VALUE will be true.
+
+   NUM_VALUES is simply the length of the VALUES list and is there for
+   convenience.
+
+   Once the dimensions are created, the algorithm enumerates all possible
+   values and computes the current value of the given expression.  */
+
+struct dimension 
+{
+  struct attr_desc *attr;      /* Attribute for this dimension.  */
+  rtx values;                  /* List of attribute values used.  */
+  rtx current_value;           /* Position in the list for the TRUE value.  */
+  int num_values;              /* Length of the values list.  */
+};
+
+/* Other variables.  */
 
 static int insn_code_number;
 static int insn_index_number;
@@ -234,13 +307,15 @@ static int got_define_asm_attributes;
 static int must_extract;
 static int must_constrain;
 static int address_used;
+static int length_used;
 static int num_delays;
 static int have_annul_true, have_annul_false;
 static int num_units;
+static int num_insn_ents;
 
 /* Used as operand to `operate_exp':  */
 
-enum operator {PLUS_OP, MINUS_OP, OR_OP, MAX_OP};
+enum operator {PLUS_OP, MINUS_OP, POS_MINUS_OP, EQ_OP, OR_OP, MAX_OP, MIN_OP, RANGE_OP};
 
 /* Stores, for each insn code, the number of constraint alternatives.  */
 
@@ -283,82 +358,99 @@ static char *alternative_name;
 /* These are referenced by rtlanal.c and hence need to be defined somewhere.
    They won't actually be used.  */
 
-rtx frame_pointer_rtx, stack_pointer_rtx, arg_pointer_rtx;
+rtx frame_pointer_rtx, hard_frame_pointer_rtx, stack_pointer_rtx;
+rtx arg_pointer_rtx;
 
-static rtx attr_rtx ();
+static rtx attr_rtx            PVPROTO((enum rtx_code, ...));
+#ifdef HAVE_VPRINTF
+static char *attr_printf       PVPROTO((int, char *, ...));
+#else
 static char *attr_printf ();
-static char *attr_string ();
-static rtx check_attr_test ();
-static rtx check_attr_value ();
-static rtx convert_set_attr_alternative ();
-static rtx convert_set_attr ();
-static void check_defs ();
-static rtx convert_const_symbol_ref ();
-static rtx make_canonical ();
-static struct attr_value *get_attr_value ();
-static rtx copy_rtx_unchanging ();
-static rtx copy_boolean ();
-static void expand_delays ();
-static rtx operate_exp ();
-static void expand_units ();
-static rtx encode_units_mask ();
-static void fill_attr ();
-static rtx substitute_address ();
-static void make_length_attrs ();
-static rtx identity_fn ();
-static rtx zero_fn ();
-static rtx one_fn ();
-static rtx max_fn ();
-static rtx simplify_cond ();
-static rtx simplify_by_alternatives ();
-static rtx simplify_by_exploding ();
-static int find_and_mark_used_attributes ();
-static void unmark_used_attributes ();
-static int add_values_to_cover ();
-static int increment_current_value ();
-static rtx test_for_current_value ();
-static rtx simplify_with_current_value ();
-static rtx simplify_with_current_value_aux ();
-static void remove_insn_ent ();
-static void insert_insn_ent ();
-static rtx insert_right_side ();
-static rtx make_alternative_compare ();
-static int compute_alternative_mask ();
-static rtx evaluate_eq_attr ();
-static rtx simplify_and_tree ();
-static rtx simplify_or_tree ();
-static rtx simplify_test_exp ();
-static void optimize_attrs ();
-static void gen_attr ();
-static int count_alternatives ();
-static int compares_alternatives_p ();
-static int contained_in_p ();
-static void gen_insn ();
-static void gen_delay ();
-static void gen_unit ();
-static void write_test_expr ();
-static int max_attr_value ();
-static void walk_attr_value ();
-static void write_attr_get ();
-static rtx eliminate_known_true ();
-static void write_attr_set ();
-static void write_attr_case ();
-static void write_attr_value ();
-static void write_attr_valueq ();
-static void write_upcase ();
-static void write_indent ();
-static void write_eligible_delay ();
-static void write_function_unit_info ();
-static int n_comma_elts ();
-static char *next_comma_elt ();
-static struct attr_desc *find_attr ();
-static void make_internal_attr ();
-static struct attr_value *find_most_used ();
-static rtx find_single_value ();
-static rtx make_numeric_value ();
-char *xrealloc ();
-char *xmalloc ();
-static void fatal ();
+#endif
+
+static char *attr_string        PROTO((char *, int));
+static rtx check_attr_test     PROTO((rtx, int));
+static rtx check_attr_value    PROTO((rtx, struct attr_desc *));
+static rtx convert_set_attr_alternative PROTO((rtx, int, int, int));
+static rtx convert_set_attr    PROTO((rtx, int, int, int));
+static void check_defs         PROTO((void));
+static rtx convert_const_symbol_ref PROTO((rtx, struct attr_desc *));
+static rtx make_canonical      PROTO((struct attr_desc *, rtx));
+static struct attr_value *get_attr_value PROTO((rtx, struct attr_desc *, int));
+static rtx copy_rtx_unchanging PROTO((rtx));
+static rtx copy_boolean                PROTO((rtx));
+static void expand_delays      PROTO((void));
+static rtx operate_exp         PROTO((enum operator, rtx, rtx));
+static void expand_units       PROTO((void));
+static rtx simplify_knowing    PROTO((rtx, rtx));
+static rtx encode_units_mask   PROTO((rtx));
+static void fill_attr          PROTO((struct attr_desc *));
+/* dpx2 compiler chokes if we specify the arg types of the args.  */
+static rtx substitute_address  PROTO((rtx, rtx (*) (), rtx (*) ()));
+static void make_length_attrs  PROTO((void));
+static rtx identity_fn         PROTO((rtx));
+static rtx zero_fn             PROTO((rtx));
+static rtx one_fn              PROTO((rtx));
+static rtx max_fn              PROTO((rtx));
+static rtx simplify_cond       PROTO((rtx, int, int));
+static rtx simplify_by_alternatives PROTO((rtx, int, int));
+static rtx simplify_by_exploding PROTO((rtx));
+static int find_and_mark_used_attributes PROTO((rtx, rtx *, int *));
+static void unmark_used_attributes PROTO((rtx, struct dimension *, int));
+static int add_values_to_cover PROTO((struct dimension *));
+static int increment_current_value PROTO((struct dimension *, int));
+static rtx test_for_current_value PROTO((struct dimension *, int));
+static rtx simplify_with_current_value PROTO((rtx, struct dimension *, int));
+static rtx simplify_with_current_value_aux PROTO((rtx));
+static void clear_struct_flag PROTO((rtx));
+static int count_sub_rtxs    PROTO((rtx, int));
+static void remove_insn_ent  PROTO((struct attr_value *, struct insn_ent *));
+static void insert_insn_ent  PROTO((struct attr_value *, struct insn_ent *));
+static rtx insert_right_side   PROTO((enum rtx_code, rtx, rtx, int, int));
+static rtx make_alternative_compare PROTO((int));
+static int compute_alternative_mask PROTO((rtx, enum rtx_code));
+static rtx evaluate_eq_attr    PROTO((rtx, rtx, int, int));
+static rtx simplify_and_tree   PROTO((rtx, rtx *, int, int));
+static rtx simplify_or_tree    PROTO((rtx, rtx *, int, int));
+static rtx simplify_test_exp   PROTO((rtx, int, int));
+static void optimize_attrs     PROTO((void));
+static void gen_attr           PROTO((rtx));
+static int count_alternatives  PROTO((rtx));
+static int compares_alternatives_p PROTO((rtx));
+static int contained_in_p      PROTO((rtx, rtx));
+static void gen_insn           PROTO((rtx));
+static void gen_delay          PROTO((rtx));
+static void gen_unit           PROTO((rtx));
+static void write_test_expr    PROTO((rtx, int));
+static int max_attr_value      PROTO((rtx));
+static void walk_attr_value    PROTO((rtx));
+static void write_attr_get     PROTO((struct attr_desc *));
+static rtx eliminate_known_true PROTO((rtx, rtx, int, int));
+static void write_attr_set     PROTO((struct attr_desc *, int, rtx, char *,
+                                      char *, rtx, int, int));
+static void write_attr_case    PROTO((struct attr_desc *, struct attr_value *,
+                                      int, char *, char *, int, rtx));
+static void write_attr_valueq  PROTO((struct attr_desc *, char *));
+static void write_attr_value   PROTO((struct attr_desc *, rtx));
+static void write_upcase       PROTO((char *));
+static void write_indent       PROTO((int));
+static void write_eligible_delay PROTO((char *));
+static void write_function_unit_info PROTO((void));
+static void write_complex_function PROTO((struct function_unit *, char *,
+                                         char *));
+static int n_comma_elts                PROTO((char *));
+static char *next_comma_elt    PROTO((char **));
+static struct attr_desc *find_attr PROTO((char *, int));
+static void make_internal_attr PROTO((char *, rtx, int));
+static struct attr_value *find_most_used  PROTO((struct attr_desc *));
+static rtx find_single_value   PROTO((struct attr_desc *));
+static rtx make_numeric_value  PROTO((int));
+static void extend_range       PROTO((struct range *, int, int));
+char *xrealloc                 PROTO((char *, unsigned));
+char *xmalloc                  PROTO((unsigned));
+
+#define oballoc(size) obstack_alloc (hash_obstack, size)
+
 \f
 /* Hash table for sharing RTL and strings.  */
 
@@ -389,7 +481,7 @@ struct attr_hash *attr_hash_table[RTL_HASH_SIZE];
 
 /* Here is how primitive or already-shared RTL's hash
    codes are made.  */
-#define RTL_HASH(RTL) ((int) (RTL) & 0777777)
+#define RTL_HASH(RTL) ((HOST_WIDE_INT) (RTL) & 0777777)
 
 /* Add an entry to the hash table for RTL with hash code HASHCODE.  */
 
@@ -437,11 +529,12 @@ attr_hash_add_string (hashcode, str)
 
 /*VARARGS1*/
 static rtx
-attr_rtx (va_alist)
-     va_dcl
+attr_rtx VPROTO((enum rtx_code code, ...))
 {
-  va_list p;
+#ifndef __STDC__
   enum rtx_code code;
+#endif
+  va_list p;
   register int i;              /* Array indices...                     */
   register char *fmt;          /* Current rtx's format...              */
   register rtx rt_val;         /* RTX to return to caller...           */
@@ -449,8 +542,11 @@ attr_rtx (va_alist)
   register struct attr_hash *h;
   struct obstack *old_obstack = rtl_obstack;
 
-  va_start (p);
+  VA_START (p, code);
+
+#ifndef __STDC__
   code = va_arg (p, enum rtx_code);
+#endif
 
   /* For each of several cases, search the hash table for an existing entry.
      Use that entry if one is found; otherwise create a new RTL and add it
@@ -469,7 +565,7 @@ attr_rtx (va_alist)
          return rt_val;
        }
 
-      hashcode = ((int) code + RTL_HASH (arg0));
+      hashcode = ((HOST_WIDE_INT) code + RTL_HASH (arg0));
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -500,7 +596,7 @@ attr_rtx (va_alist)
          return rt_val;
        }
 
-      hashcode = ((int) code + RTL_HASH (arg0) + RTL_HASH (arg1));
+      hashcode = ((HOST_WIDE_INT) code + RTL_HASH (arg0) + RTL_HASH (arg1));
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -524,7 +620,7 @@ attr_rtx (va_alist)
       if (code == SYMBOL_REF)
        arg0 = attr_string (arg0, strlen (arg0));
 
-      hashcode = ((int) code + RTL_HASH (arg0));
+      hashcode = ((HOST_WIDE_INT) code + RTL_HASH (arg0));
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -545,7 +641,7 @@ attr_rtx (va_alist)
       char *arg0 = va_arg (p, char *);
       char *arg1 = va_arg (p, char *);
 
-      hashcode = ((int) code + RTL_HASH (arg0) + RTL_HASH (arg1));
+      hashcode = ((HOST_WIDE_INT) code + RTL_HASH (arg0) + RTL_HASH (arg1));
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -632,19 +728,24 @@ attr_rtx (va_alist)
 
 /*VARARGS2*/
 static char *
-attr_printf (va_alist)
-     va_dcl
+attr_printf VPROTO((register int len, char *fmt, ...))
 {
-  va_list p;
+#ifndef __STDC__
   register int len;
-  register char *fmt;
+  char *fmt;
+#endif
+  va_list p;
   register char *str;
 
-  /* Print the string into a temporary location.  */
-  va_start (p);
+  VA_START (p, fmt);
+
+#ifndef __STDC__
   len = va_arg (p, int);
-  str = (char *) alloca (len);
   fmt = va_arg (p, char *);
+#endif
+
+  /* Print the string into a temporary location.  */
+  str = (char *) alloca (len);
   vsprintf (str, fmt, p);
   va_end (p);
 
@@ -905,13 +1006,16 @@ check_attr_test (exp, is_const)
          while ((p = next_comma_elt (&name_ptr)) != NULL)
            {
              newexp = attr_eq (XSTR (exp, 0), p);
-             orexp = insert_right_side (IOR, orexp, newexp, -2);
+             orexp = insert_right_side (IOR, orexp, newexp, -2, -2);
            }
 
          return check_attr_test (orexp, is_const);
        }
       break;
 
+    case ATTR_FLAG:
+      break;
+
     case CONST_INT:
       /* Either TRUE or FALSE.  */
       if (XWINT (exp, 0))
@@ -1048,10 +1152,10 @@ check_attr_value (exp, attr)
        /* A constant SYMBOL_REF is valid as a constant attribute test and
           is expanded later by make_canonical into a COND.  */
        return attr_rtx (SYMBOL_REF, XSTR (exp, 0));
-      /* Otherwise, fall through... */
+      /* Otherwise, fall through...  */
 
     default:
-      fatal ("Illegal operation `%s' for attribute value",
+      fatal ("Invalid operation `%s' for attribute value",
             GET_RTX_NAME (GET_CODE (exp)));
     }
 
@@ -1135,7 +1239,7 @@ convert_set_attr (exp, num_alt, insn_code, insn_index)
 \f
 /* Scan all definitions, checking for validity.  Also, convert any SET_ATTR
    and SET_ATTR_ALTERNATIVE expressions to the corresponding SET
-   expressions. */
+   expressions.  */
 
 static void
 check_defs ()
@@ -1217,7 +1321,7 @@ convert_const_symbol_ref (exp, attr)
       char *p, *string;
       rtx value;
 
-      string = p = (char *) xmalloc (2
+      string = p = (char *) oballoc (2
                                     + strlen (attr->name)
                                     + strlen (XSTR (av->value, 0)));
       strcpy (p, attr->name);
@@ -1299,7 +1403,7 @@ make_canonical (attr, exp)
        int allsame = 1;
        rtx defval;
 
-       /* First, check for degenerate COND. */
+       /* First, check for degenerate COND.  */
        if (XVECLEN (exp, 0) == 0)
          return make_canonical (attr, XEXP (exp, 1));
        defval = XEXP (exp, 1) = make_canonical (attr, XEXP (exp, 1));
@@ -1364,7 +1468,7 @@ get_attr_value (value, attr, insn_code)
            || insn_alternatives[av->first_insn->insn_code]))
       return av;
 
-  av = (struct attr_value *) xmalloc (sizeof (struct attr_value));
+  av = (struct attr_value *) oballoc (sizeof (struct attr_value));
   av->value = value;
   av->next = attr->first_value;
   attr->first_value = av;
@@ -1441,7 +1545,8 @@ expand_delays ()
         newexp = attr_rtx (IF_THEN_ELSE, condexp,
                            make_numeric_value (1), make_numeric_value (0));
 
-        p = attr_printf (13, "*delay_%d_%d", delay->num, i / 3);
+        p = attr_printf (sizeof ("*delay__") + MAX_DIGITS*2, "*delay_%d_%d",
+                         delay->num, i / 3);
         make_internal_attr (p, newexp, 1);
 
         if (have_annul_true)
@@ -1451,7 +1556,8 @@ expand_delays ()
             newexp = attr_rtx (IF_THEN_ELSE, condexp,
                                make_numeric_value (1),
                                make_numeric_value (0));
-            p = attr_printf (18, "*annul_true_%d_%d", delay->num, i / 3);
+            p = attr_printf (sizeof ("*annul_true__") + MAX_DIGITS*2,
+                             "*annul_true_%d_%d", delay->num, i / 3);
             make_internal_attr (p, newexp, 1);
           }
 
@@ -1462,7 +1568,8 @@ expand_delays ()
             newexp = attr_rtx (IF_THEN_ELSE, condexp,
                                make_numeric_value (1),
                                make_numeric_value (0));
-            p = attr_printf (18, "*annul_false_%d_%d", delay->num, i / 3);
+            p = attr_printf (sizeof ("*annul_false__") + MAX_DIGITS*2,
+                             "*annul_false_%d_%d", delay->num, i / 3);
             make_internal_attr (p, newexp, 1);
           }
        }
@@ -1504,10 +1611,25 @@ operate_exp (op, left, right)
              i = left_value - right_value;
              break;
 
+           case POS_MINUS_OP:  /* The positive part of LEFT - RIGHT.  */
+             if (left_value > right_value)
+               i = left_value - right_value;
+             else
+               i = 0;
+             break;
+
            case OR_OP:
              i = left_value | right_value;
              break;
 
+           case EQ_OP:
+             i = left_value == right_value;
+             break;
+
+           case RANGE_OP:
+             i = (left_value << (HOST_BITS_PER_INT / 2)) | right_value;
+             break;
+
            case MAX_OP:
              if (left_value > right_value)
                i = left_value;
@@ -1515,6 +1637,13 @@ operate_exp (op, left, right)
                i = right_value;
              break;
 
+           case MIN_OP:
+             if (left_value < right_value)
+               i = left_value;
+             else
+               i = right_value;
+             break;
+
            default:
              abort ();
            }
@@ -1646,7 +1775,15 @@ operate_exp (op, left, right)
    and a `<name>_unit_conflict_cost' function is given an insn already
    executing on the unit and a candidate to execute and will give the
    cost from the time the executing insn started until the candidate
-   can start (ignore limitations on the number of simultaneous insns).  */
+   can start (ignore limitations on the number of simultaneous insns).
+
+   For each unit, a `<name>_unit_blockage' function is given an insn
+   already executing on the unit and a candidate to execute and will
+   give the delay incurred due to function unit conflicts.  The range of
+   blockage cost values for a given executing insn is given by the
+   `<name>_unit_blockage_range' function.  These values are encoded in
+   an int where the upper half gives the minimum value and the lower
+   half gives the maximum value.  */
 
 static void
 expand_units ()
@@ -1659,19 +1796,45 @@ expand_units ()
   char *str;
   int i, j, u, num, nvalues;
 
-  /* Validate the expressions we were given for the conditions and busy cost.
-     Then make attributes for use in the conflict function.  */
+  /* Rebuild the condition for the unit to share the RTL expressions.
+     Sharing is required by simplify_by_exploding.  Build the issue delay
+     expressions.  Validate the expressions we were given for the conditions
+     and conflict vector.  Then make attributes for use in the conflict
+     function.  */
+
   for (unit = units; unit; unit = unit->next)
-    for (op = unit->ops; op; op = op->next)
-      {
-       op->condexp = check_attr_test (op->condexp, 0);
-       op->busyexp = check_attr_value (make_canonical (NULL_ATTR,
-                                                       op->busyexp),
+    {
+      unit->condexp = check_attr_test (unit->condexp, 0);
+
+      for (op = unit->ops; op; op = op->next)
+       {
+         rtx issue_delay = make_numeric_value (op->issue_delay);
+         rtx issue_exp = issue_delay;
+
+         /* Build, validate, and simplify the issue delay expression.  */
+         if (op->conflict_exp != true_rtx)
+           issue_exp = attr_rtx (IF_THEN_ELSE, op->conflict_exp,
+                                 issue_exp, make_numeric_value (0));
+         issue_exp = check_attr_value (make_canonical (NULL_ATTR,
+                                                       issue_exp),
                                        NULL_ATTR);
-       str = attr_printf (strlen (unit->name) + 11, "*%s_case_%d",
-                          unit->name, op->num);
-       make_internal_attr (str, op->busyexp, 1);
-      }
+         issue_exp = simplify_knowing (issue_exp, unit->condexp);
+         op->issue_exp = issue_exp;
+
+         /* Make an attribute for use in the conflict function if needed.  */
+         unit->needs_conflict_function = (unit->issue_delay.min
+                                          != unit->issue_delay.max);
+         if (unit->needs_conflict_function)
+           {
+             str = attr_printf (strlen (unit->name) + sizeof ("*_cost_") + MAX_DIGITS,
+                                "*%s_cost_%d", unit->name, op->num);
+             make_internal_attr (str, issue_exp, 1);
+           }
+
+         /* Validate the condition.  */
+         op->condexp = check_attr_test (op->condexp, 0);
+       }
+    }
 
   /* Compute the mask of function units used.  Initially, the unitsmask is
      zero.   Set up a conditional to compute each unit's contribution.  */
@@ -1682,7 +1845,7 @@ expand_units ()
   /* Merge each function unit into the unit mask attributes.  */
   for (unit = units; unit; unit = unit->next)
     {
-      XEXP (newexp, 0) = check_attr_test (unit->condexp, 0);
+      XEXP (newexp, 0) = unit->condexp;
       XEXP (newexp, 1) = make_numeric_value (1 << unit->num);
       unitsmask = operate_exp (OR_OP, unitsmask, newexp);
     }
@@ -1722,7 +1885,7 @@ expand_units ()
            * sizeof (struct function_unit_op *));
 
   for (unit = units, i = 0; unit; i += unit->num_opclasses, unit = unit->next)
-    bcopy (unit_ops[unit->num], &op_array[i],
+    bcopy ((char *) unit_ops[unit->num], (char *) &op_array[i],
           unit->num_opclasses * sizeof (struct function_unit_op *));
 
   /* Compute the ready cost function for each unit by computing the
@@ -1773,7 +1936,7 @@ expand_units ()
              if (op->ready <= 1)
                break;
              else if (op->ready == value)
-               orexp = insert_right_side (IOR, orexp, op->condexp, -2);
+               orexp = insert_right_side (IOR, orexp, op->condexp, -2, -2);
              else
                {
                  XVECEXP (readycost, 0, nvalues * 2) = orexp;
@@ -1788,13 +1951,135 @@ expand_units ()
          XVECEXP (readycost, 0, nvalues * 2 + 1) = make_numeric_value (value);
        }
 
-      /* Make an attribute for the ready_cost function.  Simplifying
-        further with simplify_by_exploding doesn't win.  */
       if (u < num_units)
-       str = attr_printf (strlen (unit->name) + 20, "*%s_unit_ready_cost",
-                          unit->name);
+       {
+         rtx max_blockage = 0, min_blockage = 0;
+
+         /* Simplify the readycost expression by only considering insns
+            that use the unit.  */
+         readycost = simplify_knowing (readycost, unit->condexp);
+
+         /* Determine the blockage cost the executing insn (E) given
+            the candidate insn (C).  This is the maximum of the issue
+            delay, the pipeline delay, and the simultaneity constraint.
+            Each function_unit_op represents the characteristics of the
+            candidate insn, so in the expressions below, C is a known
+            term and E is an unknown term.
+
+            We compute the blockage cost for each E for every possible C.
+            Thus OP represents E, and READYCOST is a list of values for
+            every possible C.
+
+            The issue delay function for C is op->issue_exp and is used to
+            write the `<name>_unit_conflict_cost' function.  Symbolicly
+            this is "ISSUE-DELAY (E,C)".
+
+            The pipeline delay results form the FIFO constraint on the
+            function unit and is "READY-COST (E) + 1 - READY-COST (C)".
+
+            The simultaneity constraint is based on how long it takes to
+            fill the unit given the minimum issue delay.  FILL-TIME is the
+            constant "MIN (ISSUE-DELAY (*,*)) * (SIMULTANEITY - 1)", and
+            the simultaneity constraint is "READY-COST (E) - FILL-TIME"
+            if SIMULTANEITY is non-zero and zero otherwise.
+
+            Thus, BLOCKAGE (E,C) when SIMULTANEITY is zero is
+
+                MAX (ISSUE-DELAY (E,C),
+                     READY-COST (E) - (READY-COST (C) - 1))
+
+            and otherwise
+
+                MAX (ISSUE-DELAY (E,C),
+                     READY-COST (E) - (READY-COST (C) - 1),
+                     READY-COST (E) - FILL-TIME)
+
+            The `<name>_unit_blockage' function is computed by determining
+            this value for each candidate insn.  As these values are
+            computed, we also compute the upper and lower bounds for
+            BLOCKAGE (E,*).  These are combined to form the function
+            `<name>_unit_blockage_range'.  Finally, the maximum blockage
+            cost, MAX (BLOCKAGE (*,*)), is computed.  */
+
+         for (op = unit->ops; op; op = op->next)
+           {
+             rtx blockage = operate_exp (POS_MINUS_OP, readycost,
+                                         make_numeric_value (1));
+
+             if (unit->simultaneity != 0)
+               {
+                 rtx filltime = make_numeric_value ((unit->simultaneity - 1)
+                                                    * unit->issue_delay.min);
+                 blockage = operate_exp (MIN_OP, blockage, filltime);
+               }
+
+             blockage = operate_exp (POS_MINUS_OP,
+                                     make_numeric_value (op->ready),
+                                     blockage);
+
+             blockage = operate_exp (MAX_OP, blockage, op->issue_exp);
+             blockage = simplify_knowing (blockage, unit->condexp);
+
+             /* Add this op's contribution to MAX (BLOCKAGE (E,*)) and
+                MIN (BLOCKAGE (E,*)).  */
+             if (max_blockage == 0)
+               max_blockage = min_blockage = blockage;
+             else
+               {
+                 max_blockage
+                   = simplify_knowing (operate_exp (MAX_OP, max_blockage,
+                                                    blockage),
+                                       unit->condexp);
+                 min_blockage
+                   = simplify_knowing (operate_exp (MIN_OP, min_blockage,
+                                                    blockage),
+                                       unit->condexp);
+               }
+
+             /* Make an attribute for use in the blockage function.  */
+             str = attr_printf (strlen (unit->name) + sizeof ("*_block_") + MAX_DIGITS,
+                                "*%s_block_%d", unit->name, op->num);
+             make_internal_attr (str, blockage, 1);
+           }
+
+         /* Record MAX (BLOCKAGE (*,*)).  */
+         unit->max_blockage = max_attr_value (max_blockage);
+
+         /* See if the upper and lower bounds of BLOCKAGE (E,*) are the
+            same.  If so, the blockage function carries no additional
+            information and is not written.  */
+         newexp = operate_exp (EQ_OP, max_blockage, min_blockage);
+         newexp = simplify_knowing (newexp, unit->condexp);
+         unit->needs_blockage_function
+           = (GET_CODE (newexp) != CONST_STRING
+              || atoi (XSTR (newexp, 0)) != 1);
+
+         /* If the all values of BLOCKAGE (E,C) have the same value,
+            neither blockage function is written.  */    
+         unit->needs_range_function
+           = (unit->needs_blockage_function
+              || GET_CODE (max_blockage) != CONST_STRING);
+
+         if (unit->needs_range_function)
+           {
+             /* Compute the blockage range function and make an attribute
+                for writing it's value.  */
+             newexp = operate_exp (RANGE_OP, min_blockage, max_blockage);
+             newexp = simplify_knowing (newexp, unit->condexp);
+
+             str = attr_printf (strlen (unit->name) + sizeof ("*_unit_blockage_range"),
+                                "*%s_unit_blockage_range", unit->name);
+             make_internal_attr (str, newexp, 4);
+           }
+
+         str = attr_printf (strlen (unit->name) + sizeof ("*_unit_ready_cost"),
+                            "*%s_unit_ready_cost", unit->name);
+       }
       else
        str = "*result_ready_cost";
+
+      /* Make an attribute for the ready_cost function.  Simplifying
+        further with simplify_by_exploding doesn't win.  */
       make_internal_attr (str, readycost, 0);
     }
 
@@ -1804,7 +2089,8 @@ expand_units ()
     {
       rtx caseexp;
 
-      if (unit->min_busy_delay == unit->max_busy_delay)
+      if (! unit->needs_conflict_function
+         && ! unit->needs_blockage_function)
        continue;
 
       caseexp = rtx_alloc (COND);
@@ -1828,11 +2114,27 @@ expand_units ()
        }
 
       /* Simplifying caseexp with simplify_by_exploding doesn't win.  */
-      str = attr_printf (strlen (unit->name) + 8, "*%s_cases", unit->name);
+      str = attr_printf (strlen (unit->name) + sizeof ("*_cases"),
+                        "*%s_cases", unit->name);
       make_internal_attr (str, caseexp, 1);
     }
 }
 
+/* Simplify EXP given KNOWN_TRUE.  */
+
+static rtx
+simplify_knowing (exp, known_true)
+     rtx exp, known_true;
+{
+  if (GET_CODE (exp) != CONST_STRING)
+    {
+      exp = attr_rtx (IF_THEN_ELSE, known_true, exp,
+                     make_numeric_value (max_attr_value (exp)));
+      exp = simplify_by_exploding (exp);
+    }
+  return exp;
+}
+
 /* Translate the CONST_STRING expressions in X to change the encoding of
    value.  On input, the value is a bitmask with a one bit for each unit
    used; on output, the value is the unit number (zero based) if one
@@ -1861,7 +2163,7 @@ encode_units_mask (x)
          ;
       else
        j = ~i;
-      return attr_rtx (CONST_STRING, attr_printf (4, "%d", j));
+      return attr_rtx (CONST_STRING, attr_printf (MAX_DIGITS, "%d", j));
 
     case REG:
     case QUEUED:
@@ -1932,7 +2234,7 @@ fill_attr (attr)
       else
        av = get_attr_value (value, attr, id->insn_code);
 
-      ie = (struct insn_ent *) xmalloc (sizeof (struct insn_ent));
+      ie = (struct insn_ent *) oballoc (sizeof (struct insn_ent));
       ie->insn_code = id->insn_code;
       ie->insn_index = id->insn_code;
       insert_insn_ent (av, ie);
@@ -2026,8 +2328,8 @@ make_length_attrs ()
   static char *new_names[] = {"*insn_default_length",
                              "*insn_variable_length_p",
                              "*insn_current_length"};
-  static rtx (*no_address_fn[]) () = {identity_fn, zero_fn, zero_fn};
-  static rtx (*address_fn[]) () = {max_fn, one_fn, identity_fn};
+  static rtx (*no_address_fn[]) PROTO((rtx)) = {identity_fn, zero_fn, zero_fn};
+  static rtx (*address_fn[]) PROTO((rtx)) = {max_fn, one_fn, identity_fn};
   int i;
   struct attr_desc *length_attr, *new_attr;
   struct attr_value *av, *new_av;
@@ -2060,7 +2362,7 @@ make_length_attrs ()
                                                         no_address_fn[i],
                                                         address_fn[i]),
                                     new_attr, ie->insn_code);
-           new_ie = (struct insn_ent *) xmalloc (sizeof (struct insn_ent));
+           new_ie = (struct insn_ent *) oballoc (sizeof (struct insn_ent));
            new_ie->insn_code = ie->insn_code;
            new_ie->insn_index = ie->insn_index;
            insert_insn_ent (new_av, new_ie);
@@ -2116,16 +2418,15 @@ simplify_cond (exp, insn_code, insn_index)
      then build a new expression if they don't match EXP.  */
   rtx defval = XEXP (exp, 1);
   rtx new_defval = XEXP (exp, 1);
-
   int len = XVECLEN (exp, 0);
-  rtx *tests = (rtx *) alloca (len * sizeof (rtx));
+  rtunion *tests = (rtunion *) alloca (len * sizeof (rtunion));
   int allsame = 1;
   char *first_spacer;
 
   /* This lets us free all storage allocated below, if appropriate.  */
   first_spacer = (char *) obstack_finish (rtl_obstack);
 
-  bcopy (&XVECEXP (exp, 0, 0), tests, len * sizeof (rtx));
+  bcopy ((char *) XVEC (exp, 0)->elem, (char *) tests, len * sizeof (rtunion));
 
   /* See if default value needs simplification.  */
   if (GET_CODE (defval) == COND)
@@ -2138,10 +2439,10 @@ simplify_cond (exp, insn_code, insn_index)
       rtx newtest, newval;
 
       /* Simplify this test.  */
-      newtest = SIMPLIFY_TEST_EXP (tests[i], insn_code, insn_index);
-      tests[i] = newtest;
+      newtest = SIMPLIFY_TEST_EXP (tests[i].rtx, insn_code, insn_index);
+      tests[i].rtx = newtest;
 
-      newval = tests[i + 1];
+      newval = tests[i + 1].rtx;
       /* See if this value may need simplification.  */
       if (GET_CODE (newval) == COND)
        newval = simplify_cond (newval, insn_code, insn_index);
@@ -2152,7 +2453,7 @@ simplify_cond (exp, insn_code, insn_index)
          /* If test is true, make this value the default
             and discard this + any following tests.  */
          len = i;
-         defval = tests[i + 1];
+         defval = tests[i + 1].rtx;
          new_defval = newval;
        }
 
@@ -2160,33 +2461,33 @@ simplify_cond (exp, insn_code, insn_index)
        {
          /* If test is false, discard it and its value.  */
          for (j = i; j < len - 2; j++)
-           tests[j] = tests[j + 2];
+           tests[j].rtx = tests[j + 2].rtx;
          len -= 2;
        }
 
-      else if (i > 0 && attr_equal_p (newval, tests[i - 1]))
+      else if (i > 0 && attr_equal_p (newval, tests[i - 1].rtx))
        {
          /* If this value and the value for the prev test are the same,
             merge the tests.  */
 
-         tests[i - 2]
-           = insert_right_side (IOR, tests[i - 2], newtest,
+         tests[i - 2].rtx
+           = insert_right_side (IOR, tests[i - 2].rtx, newtest,
                                 insn_code, insn_index);
 
          /* Delete this test/value.  */
          for (j = i; j < len - 2; j++)
-           tests[j] = tests[j + 2];
+           tests[j].rtx = tests[j + 2].rtx;
          len -= 2;
        }
 
       else
-       tests[i + 1] = newval;
+       tests[i + 1].rtx = newval;
     }
 
   /* If the last test in a COND has the same value
      as the default value, that test isn't needed.  */
 
-  while (len > 0 && attr_equal_p (tests[len - 1], new_defval))
+  while (len > 0 && attr_equal_p (tests[len - 1].rtx, new_defval))
     len -= 2;
 
   /* See if we changed anything.  */
@@ -2194,7 +2495,7 @@ simplify_cond (exp, insn_code, insn_index)
     allsame = 0;
   else
     for (i = 0; i < len; i++)
-      if (! attr_equal_p (tests[i], XVECEXP (exp, 0, i)))
+      if (! attr_equal_p (tests[i].rtx, XVECEXP (exp, 0, i)))
        {
          allsame = 0;
          break;
@@ -2217,7 +2518,8 @@ simplify_cond (exp, insn_code, insn_index)
       rtx newexp = rtx_alloc (COND);
 
       XVEC (newexp, 0) = rtvec_alloc (len);
-      bcopy (tests, &XVECEXP (newexp, 0, 0), len * sizeof (rtx));
+      bcopy ((char *) tests, (char *) XVEC (newexp, 0)->elem,
+            len * sizeof (rtunion));
       XEXP (newexp, 1) = new_defval;
       return newexp;
     }
@@ -2244,6 +2546,8 @@ remove_insn_ent (av, ie)
   av->num_insns--;
   if (ie->insn_code == -1)
     av->has_asm_insn = 0;
+
+  num_insn_ents--;
 }
 
 /* Insert an insn entry in an attribute value list.  */
@@ -2258,6 +2562,8 @@ insert_insn_ent (av, ie)
   av->num_insns++;
   if (ie->insn_code == -1)
     av->has_asm_insn = 1;
+
+  num_insn_ents++;
 }
 \f
 /* This is a utility routine to take an expression that is a tree of either
@@ -2271,7 +2577,7 @@ insert_insn_ent (av, ie)
 
 static rtx
 insert_right_side (code, exp, term, insn_code, insn_index)
-     RTX_CODE code;
+     enum rtx_code code;
      rtx exp;
      rtx term;
      int insn_code, insn_index;
@@ -2333,13 +2639,12 @@ insert_right_side (code, exp, term, insn_code, insn_index)
    If so, we can optimize.  Similarly for IOR's of EQ_ATTR.
 
    This routine is passed an expression and either AND or IOR.  It returns a
-   bitmask indicating which alternatives are present.
-   ??? What does "present" mean?  */
+   bitmask indicating which alternatives are mentioned within EXP.  */
 
 static int
 compute_alternative_mask (exp, code)
      rtx exp;
-     RTX_CODE code;
+     enum rtx_code code;
 {
   char *string;
   if (GET_CODE (exp) == code)
@@ -2387,9 +2692,10 @@ make_alternative_compare (mask)
    of "attr" for this insn code.  From that value, we can compute a test
    showing when the EQ_ATTR will be true.  This routine performs that
    computation.  If a test condition involves an address, we leave the EQ_ATTR
-   intact because addresses are only valid for the `length' attribute.  */
+   intact because addresses are only valid for the `length' attribute. 
 
-/* ??? Kenner, document the meanings of the arguments!!!  */
+   EXP is the EQ_ATTR expression and VALUE is the value of that attribute
+   for the insn corresponding to INSN_CODE and INSN_INDEX.  */
 
 static rtx
 evaluate_eq_attr (exp, value, insn_code, insn_index)
@@ -2421,7 +2727,7 @@ evaluate_eq_attr (exp, value, insn_code, insn_index)
         For each possible COND value, call ourselves recursively.
 
         The extra TRUE and FALSE expressions will be eliminated by another
-        call to the simplification routine. */
+        call to the simplification routine.  */
 
       orexp = false_rtx;
       andexp = true_rtx;
@@ -2439,8 +2745,10 @@ evaluate_eq_attr (exp, value, insn_code, insn_index)
          right = insert_right_side (AND, andexp, this,
                                     insn_code, insn_index);
          right = insert_right_side (AND, right,
-                       evaluate_eq_attr (exp, XVECEXP (value, 0, i + 1),
-                                          insn_code, insn_index),
+                                    evaluate_eq_attr (exp,
+                                                      XVECEXP (value, 0,
+                                                               i + 1),
+                                                      insn_code, insn_index),
                                     insn_code, insn_index);
          orexp = insert_right_side (IOR, orexp, right,
                                     insn_code, insn_index);
@@ -2454,7 +2762,7 @@ evaluate_eq_attr (exp, value, insn_code, insn_index)
       /* Handle the default case.  */
       right = insert_right_side (AND, andexp,
                                 evaluate_eq_attr (exp, XEXP (value, 1),
-                                                   insn_code, insn_index),
+                                                  insn_code, insn_index),
                                 insn_code, insn_index);
       newexp = insert_right_side (IOR, orexp, right, insn_code, insn_index);
     }
@@ -2701,16 +3009,6 @@ simplify_test_exp (exp, insn_code, insn_index)
   rtx newexp = exp;
   char *spacer = (char *) obstack_finish (rtl_obstack);
 
-  static rtx loser = 0;
-  static int count = 0;
-  static stopcount = 0;
-
-  if (exp == loser)
-    do_nothing ();
-  count++;
-  if (count == stopcount)
-    do_nothing ();
-
   /* Don't re-simplify something we already simplified.  */
   if (RTX_UNCHANGING_P (exp) || MEM_IN_STRUCT_P (exp))
     return exp;
@@ -2787,10 +3085,10 @@ simplify_test_exp (exp, insn_code, insn_index)
        {
          i = compute_alternative_mask (exp, AND);
          if (i & ~insn_alternatives[insn_code])
-           fatal ("Illegal alternative specified for pattern number %d",
+           fatal ("Invalid alternative specified for pattern number %d",
                   insn_index);
 
-         /* If all alternatives are excluded, this is false. */
+         /* If all alternatives are excluded, this is false.  */
          i ^= insn_alternatives[insn_code];
          if (i == 0)
            return false_rtx;
@@ -2880,10 +3178,10 @@ simplify_test_exp (exp, insn_code, insn_index)
        {
          i = compute_alternative_mask (exp, IOR);
          if (i & ~insn_alternatives[insn_code])
-           fatal ("Illegal alternative specified for pattern number %d",
+           fatal ("Invalid alternative specified for pattern number %d",
                   insn_index);
 
-         /* If all alternatives are included, this is true. */
+         /* If all alternatives are included, this is true.  */
          i ^= insn_alternatives[insn_code];
          if (i == 0)
            return true_rtx;
@@ -2981,9 +3279,6 @@ simplify_test_exp (exp, insn_code, insn_index)
 
   return newexp;
 }
-
-do_nothing ()
-{}
 \f
 /* Optimize the attribute lists by seeing if we can determine conditional
    values from the known values of other attributes.  This will save subroutine
@@ -3003,34 +3298,48 @@ optimize_attrs ()
                           struct attr_desc * attr;
                           struct attr_value_list *next; };
   struct attr_value_list **insn_code_values;
+  struct attr_value_list *ivbuf;
   struct attr_value_list *iv;
 
   /* For each insn code, make a list of all the insn_ent's for it,
      for all values for all attributes.  */
 
+  if (num_insn_ents == 0)
+    return;
+
   /* Make 2 extra elements, for "code" values -2 and -1.  */
   insn_code_values
     = (struct attr_value_list **) alloca ((insn_code_number + 2)
                                          * sizeof (struct attr_value_list *));
-  bzero (insn_code_values,
+  bzero ((char *) insn_code_values,
         (insn_code_number + 2) * sizeof (struct attr_value_list *));
+
   /* Offset the table address so we can index by -2 or -1.  */
   insn_code_values += 2;
 
+  /* Allocate the attr_value_list structures using xmalloc rather than
+     alloca, because using alloca can overflow the maximum permitted
+     stack limit on SPARC Lynx.  */
+  iv = ivbuf = ((struct attr_value_list *)
+               xmalloc (num_insn_ents * sizeof (struct attr_value_list)));
+
   for (i = 0; i < MAX_ATTRS_INDEX; i++)
     for (attr = attrs[i]; attr; attr = attr->next)
       for (av = attr->first_value; av; av = av->next)
        for (ie = av->first_insn; ie; ie = ie->next)
          {
-           iv = ((struct attr_value_list *)
-                 alloca (sizeof (struct attr_value_list)));
            iv->attr = attr;
            iv->av = av;
            iv->ie = ie;
            iv->next = insn_code_values[ie->insn_code];
            insn_code_values[ie->insn_code] = iv;
+           iv++;
          }
 
+  /* Sanity check on num_insn_ents.  */
+  if (iv != ivbuf + num_insn_ents)
+    abort ();
+
   /* Process one insn code at a time.  */
   for (i = -2; i < insn_code_number; i++)
     {
@@ -3080,6 +3389,8 @@ optimize_attrs ()
            }
        }
     }
+
+  free (ivbuf);
 }
 
 #if 0
@@ -3116,49 +3427,6 @@ simplify_by_alternatives (exp, insn_code, insn_index)
 }
 #endif
 \f
-/* An expression where all the unknown terms are EQ_ATTR tests can be
-   rearranged into a COND provided we can enumerate all possible
-   combinations of the unknown values.  The set of combinations become the
-   tests of the COND; the value of the expression given that combination is
-   computed and becomes the corresponding value.  To do this, we must be
-   able to enumerate all values for each attribute used in the expression
-   (currently, we give up if we find a numeric attribute).
-   
-   If the set of EQ_ATTR tests used in an expression tests the value of N
-   different attributes, the list of all possible combinations can be made
-   by walking the N-dimensional attribute space defined by those
-   attributes.  We record each of these as a struct dimension.
-
-   The algorithm relies on sharing EQ_ATTR nodes: if two nodes in an
-   expression are the same, the will also have the same address.  We find
-   all the EQ_ATTR nodes by marking them MEM_VOLATILE_P.  This bit later
-   represents the value of an EQ_ATTR node, so once all nodes are marked,
-   they are also given an initial value of FALSE.
-
-   We then separate the set of EQ_ATTR nodes into dimensions for each
-   attribute and put them on the VALUES list.  Terms are added as needed by
-   `add_values_to_cover' so that all possible values of the attribute are
-   tested.
-
-   Each dimension also has a current value.  This is the node that is
-   currently considered to be TRUE.  If this is one of the nodes added by
-   `add_values_to_cover', all the EQ_ATTR tests in the original expression
-   will be FALSE.  Otherwise, only the CURRENT_VALUE will be true.
-
-   NUM_VALUES is simply the length of the VALUES list and is there for
-   convenience.
-
-   Once the dimensions are created, the algorithm enumerates all possible
-   values and computes the current value of the given expression.  */
-
-struct dimension 
-{
-  struct attr_desc *attr;      /* Attribute for this dimension.  */
-  rtx values;                  /* List of attribute values used.  */
-  rtx current_value;           /* Position in the list for the TRUE value.  */
-  int num_values;              /* Length of the values list.  */
-};
-
 /* If EXP is a suitable expression, reorganize it by constructing an
    equivalent expression that is a COND with the tests being all combinations
    of attribute values and the values being simple constants.  */
@@ -3170,11 +3438,11 @@ simplify_by_exploding (exp)
   rtx list = 0, link, condexp, defval;
   struct dimension *space;
   rtx *condtest, *condval;
-  int i, j, total, ndim;
+  int i, j, total, ndim = 0;
   int most_tests, num_marks, new_marks;
 
   /* Locate all the EQ_ATTR expressions.  */
-  if (! find_and_mark_used_attributes (exp, &list))
+  if (! find_and_mark_used_attributes (exp, &list, &ndim) || ndim == 0)
     {
       unmark_used_attributes (list, 0, 0);
       return exp;
@@ -3186,9 +3454,6 @@ simplify_by_exploding (exp)
      cover the domain of the attribute.  This makes the expanded COND form
      order independent.  */
 
-  ndim = 0;
-  for (link = list; link; link = XEXP (link, 1))
-    ndim++;
   space = (struct dimension *) alloca (ndim * sizeof (struct dimension));
 
   total = 1;
@@ -3289,6 +3554,10 @@ simplify_by_exploding (exp)
   if (num_marks == 0)
     return exp;
 
+  /* If all values are the default, use that.  */
+  if (total == most_tests)
+    return defval;
+
   /* Make a COND with the most common constant value the default.  (A more
      complex method where tests with the same value were combined didn't
      seem to improve things.)  */
@@ -3311,8 +3580,9 @@ simplify_by_exploding (exp)
    tests have known value.  */
 
 static int
-find_and_mark_used_attributes (exp, terms)
+find_and_mark_used_attributes (exp, terms, nterms)
      rtx exp, *terms;
+     int *nterms;
 {
   int i;
 
@@ -3325,28 +3595,29 @@ find_and_mark_used_attributes (exp, terms)
          XEXP (link, 0) = exp;
          XEXP (link, 1) = *terms;
          *terms = link;
+         *nterms += 1;
          MEM_VOLATILE_P (exp) = 1;
        }
     case CONST_STRING:
       return 1;
 
     case IF_THEN_ELSE:
-      if (! find_and_mark_used_attributes (XEXP (exp, 2), terms))
+      if (! find_and_mark_used_attributes (XEXP (exp, 2), terms, nterms))
        return 0;
     case IOR:
     case AND:
-      if (! find_and_mark_used_attributes (XEXP (exp, 1), terms))
+      if (! find_and_mark_used_attributes (XEXP (exp, 1), terms, nterms))
        return 0;
     case NOT:
-      if (! find_and_mark_used_attributes (XEXP (exp, 0), terms))
+      if (! find_and_mark_used_attributes (XEXP (exp, 0), terms, nterms))
        return 0;
       return 1;
 
     case COND:
       for (i = 0; i < XVECLEN (exp, 0); i++)
-       if (! find_and_mark_used_attributes (XVECEXP (exp, 0, i), terms))
+       if (! find_and_mark_used_attributes (XVECEXP (exp, 0, i), terms, nterms))
          return 0;
-      if (! find_and_mark_used_attributes (XEXP (exp, 1), terms))
+      if (! find_and_mark_used_attributes (XEXP (exp, 1), terms, nterms))
        return 0;
       return 1;
     }
@@ -3429,7 +3700,7 @@ add_values_to_cover (dim)
       prev = &dim->values;
       for (link = dim->values; link; link = *prev)
        {
-         orexp = insert_right_side (IOR, orexp, XEXP (link, 0), -2);
+         orexp = insert_right_side (IOR, orexp, XEXP (link, 0), -2, -2);
          prev = &XEXP (link, 1);
        }
       link = rtx_alloc (EXPR_LIST);
@@ -3473,7 +3744,8 @@ test_for_current_value (space, ndim)
   rtx exp = true_rtx;
 
   for (i = 0; i < ndim; i++)
-    exp = insert_right_side (AND, exp, XEXP (space[i].current_value, 0), -2);
+    exp = insert_right_side (AND, exp, XEXP (space[i].current_value, 0),
+                            -2, -2);
 
   return exp;
 }
@@ -3592,6 +3864,7 @@ simplify_with_current_value_aux (exp)
 \f
 /* Clear the MEM_IN_STRUCT_P flag in EXP and its subexpressions.  */
 
+static void
 clear_struct_flag (x)
      rtx x;
 {
@@ -3617,6 +3890,7 @@ clear_struct_flag (x)
     case PC:
     case CC0:
     case EQ_ATTR:
+    case ATTR_FLAG:
       return;
     }
 
@@ -3644,6 +3918,7 @@ clear_struct_flag (x)
 /* Return the number of RTX objects making up the expression X.
    But if we count more more than MAX objects, stop counting.  */
 
+static int
 count_sub_rtxs (x, max)
      rtx x;
      int max;
@@ -3667,6 +3942,7 @@ count_sub_rtxs (x, max)
     case PC:
     case CC0:
     case EQ_ATTR:
+    case ATTR_FLAG:
       return 1;
     }
 
@@ -3720,7 +3996,7 @@ gen_attr (exp)
       name_ptr = XSTR (exp, 1);
       while ((p = next_comma_elt (&name_ptr)) != NULL)
        {
-         av = (struct attr_value *) xmalloc (sizeof (struct attr_value));
+         av = (struct attr_value *) oballoc (sizeof (struct attr_value));
          av->value = attr_rtx (CONST_STRING, p);
          av->next = attr->first_value;
          attr->first_value = av;
@@ -3742,7 +4018,7 @@ gen_attr (exp)
   if (! strcmp (attr->name, "length") && ! attr->is_numeric)
     fatal ("`length' attribute must take numeric values");
 
-  /* Set up the default value. */
+  /* Set up the default value.  */
   XEXP (exp, 2) = check_attr_value (XEXP (exp, 2), attr);
   attr->default_val = get_attr_value (XEXP (exp, 2), attr, -2);
 }
@@ -3860,7 +4136,7 @@ gen_insn (exp)
 {
   struct insn_def *id;
 
-  id = (struct insn_def *) xmalloc (sizeof (struct insn_def));
+  id = (struct insn_def *) oballoc (sizeof (struct insn_def));
   id->next = defs;
   defs = id;
   id->def = exp;
@@ -3916,7 +4192,7 @@ gen_delay (def)
        have_annul_false = 1;
     }
   
-  delay = (struct delay_desc *) xmalloc (sizeof (struct delay_desc));
+  delay = (struct delay_desc *) oballoc (sizeof (struct delay_desc));
   delay->def = def;
   delay->num = ++num_delays;
   delay->next = delays;
@@ -3935,15 +4211,21 @@ gen_unit (def)
 {
   struct function_unit *unit;
   struct function_unit_op *op;
+  char *name = XSTR (def, 0);
+  int multiplicity = XINT (def, 1);
+  int simultaneity = XINT (def, 2);
+  rtx condexp = XEXP (def, 3);
+  int ready_cost = MAX (XINT (def, 4), 1);
+  int issue_delay = MAX (XINT (def, 5), 1);
 
   /* See if we have already seen this function unit.  If so, check that
      the multiplicity and simultaneity values are the same.  If not, make
      a structure for this function unit.  */
   for (unit = units; unit; unit = unit->next)
-    if (! strcmp (unit->name, XSTR (def, 0)))
+    if (! strcmp (unit->name, name))
       {
-       if (unit->multiplicity != XINT (def, 1)
-           || unit->simultaneity != XINT (def, 2))
+       if (unit->multiplicity != multiplicity
+           || unit->simultaneity != simultaneity)
          fatal ("Differing specifications given for `%s' function unit.",
                 unit->name);
        break;
@@ -3951,28 +4233,29 @@ gen_unit (def)
 
   if (unit == 0)
     {
-      unit = (struct function_unit *) xmalloc (sizeof (struct function_unit));
-      unit->name = XSTR (def, 0);
-      unit->multiplicity = XINT (def, 1);
-      unit->simultaneity = XINT (def, 2);
+      unit = (struct function_unit *) oballoc (sizeof (struct function_unit));
+      unit->name = name;
+      unit->multiplicity = multiplicity;
+      unit->simultaneity = simultaneity;
+      unit->issue_delay.min = unit->issue_delay.max = issue_delay;
       unit->num = num_units++;
       unit->num_opclasses = 0;
       unit->condexp = false_rtx;
       unit->ops = 0;
       unit->next = units;
-      unit->min_busy_delay = unit->max_busy_delay = XINT (def, 5);
       units = unit;
     }
 
   /* Make a new operation class structure entry and initialize it.  */
-  op = (struct function_unit_op *) xmalloc (sizeof (struct function_unit_op));
-  op->condexp = XEXP (def, 3);
+  op = (struct function_unit_op *) oballoc (sizeof (struct function_unit_op));
+  op->condexp = condexp;
   op->num = unit->num_opclasses++;
-  op->ready = XINT (def, 4);
+  op->ready = ready_cost;
+  op->issue_delay = issue_delay;
   op->next = unit->ops;
   unit->ops = op;
 
-  /* Set our busy expression based on whether or not an optional conflict
+  /* Set our issue expression based on whether or not an optional conflict
      vector was specified.  */
   if (XVEC (def, 6))
     {
@@ -3981,24 +4264,20 @@ gen_unit (def)
       int i;
 
       for (i = 0; i < XVECLEN (def, 6); i++)
-       orexp = insert_right_side (IOR, orexp, XVECEXP (def, 6, i), -2);
+       orexp = insert_right_side (IOR, orexp, XVECEXP (def, 6, i), -2, -2);
 
-      op->busyexp = attr_rtx (IF_THEN_ELSE, orexp,
-                             make_numeric_value (XINT (def, 5)),
-                             make_numeric_value (0));
-      unit->min_busy_delay = MIN (unit->min_busy_delay, 0);
-      unit->max_busy_delay = MAX (unit->max_busy_delay, XINT (def, 5));
+      op->conflict_exp = orexp;
+      extend_range (&unit->issue_delay, 1, issue_delay);
     }
   else
     {
-      op->busyexp = make_numeric_value (XINT (def, 5));
-      unit->min_busy_delay = MIN (unit->min_busy_delay, XINT (def, 5));
-      unit->max_busy_delay = MAX (unit->max_busy_delay, XINT (def, 5));
+      op->conflict_exp = true_rtx;
+      extend_range (&unit->issue_delay, issue_delay, issue_delay);
     }
 
   /* Merge our conditional into that of the function unit so we can determine
      which insns are used by the function unit.  */
-  unit->condexp = insert_right_side (IOR, unit->condexp, op->condexp, -2);
+  unit->condexp = insert_right_side (IOR, unit->condexp, op->condexp, -2, -2);
 }
 \f
 /* Given a piece of RTX, print a C expression to test it's truth value.
@@ -4030,7 +4309,7 @@ write_test_expr (exp, in_comparison)
 
     case PLUS:   case MINUS:  case MULT:     case DIV:      case MOD:
     case AND:    case IOR:    case XOR:
-    case LSHIFT: case ASHIFT: case LSHIFTRT: case ASHIFTRT:
+    case ASHIFT: case LSHIFTRT: case ASHIFTRT:
       write_test_expr (XEXP (exp, 0), in_comparison || comparison_operator);
       switch (code)
         {
@@ -4094,7 +4373,6 @@ write_test_expr (exp, in_comparison)
        case XOR:
          printf (" ^ ");
          break;
-       case LSHIFT:
        case ASHIFT:
          printf (" << ");
          break;
@@ -4159,7 +4437,7 @@ write_test_expr (exp, in_comparison)
       if (attr->is_const)
        {
          write_test_expr (evaluate_eq_attr (exp, attr->default_val->value,
-                                            0, 0),
+                                            -2, -2),
                           in_comparison);
        }
       else
@@ -4169,6 +4447,13 @@ write_test_expr (exp, in_comparison)
        }
       break;
 
+    /* Comparison test of flags for define_delays.  */
+    case ATTR_FLAG:
+      if (in_comparison)
+       fatal ("ATTR_FLAG not valid inside comparison");
+      printf ("(flags & ATTR_FLAG_%s) != 0", XSTR (exp, 0));
+      break;
+
     /* See if an operand matches a predicate.  */
     case MATCH_OPERAND:
       /* If only a mode is given, just ensure the mode matches the operand.
@@ -4186,7 +4471,7 @@ write_test_expr (exp, in_comparison)
                XSTR (exp, 1), XINT (exp, 0), GET_MODE_NAME (GET_MODE (exp)));
       break;
 
-    /* Constant integer. */
+    /* Constant integer.  */
     case CONST_INT:
 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
       printf ("%d", XWINT (exp, 0));
@@ -4195,14 +4480,15 @@ write_test_expr (exp, in_comparison)
 #endif
       break;
 
-    /* A random C expression. */
+    /* A random C expression.  */
     case SYMBOL_REF:
       printf ("%s", XSTR (exp, 0));
       break;
 
     /* The address of the branch target.  */
     case MATCH_DUP:
-      printf ("insn_addresses[INSN_UID (JUMP_LABEL (insn))]");
+      printf ("insn_addresses[INSN_UID (GET_CODE (operands[%d]) == LABEL_REF ? XEXP (operands[%d], 0) : operands[%d])]",
+             XINT (exp, 0), XINT (exp, 0), XINT (exp, 0));
       break;
 
     /* The address of the current insn.  It would be more consistent with
@@ -4249,6 +4535,14 @@ max_attr_value (exp)
        current_max = n;
     }
 
+  else if (GET_CODE (exp) == IF_THEN_ELSE)
+    {
+      current_max = max_attr_value (XEXP (exp, 1));
+      n = max_attr_value (XEXP (exp, 2));
+      if (n > current_max)
+       current_max = n;
+    }
+
   else
     abort ();
 
@@ -4262,6 +4556,7 @@ max_attr_value (exp)
        `must_extract'    if we need to extract the insn operands
        `must_constrain'  if we must compute `which_alternative'
        `address_used'    if an address expression was used
+       `length_used'     if an (eq_attr "length" ...) was used
  */
 
 static void
@@ -4293,12 +4588,21 @@ walk_attr_value (exp)
     case EQ_ATTR:
       if (XSTR (exp, 0) == alternative_name)
        must_extract = must_constrain = 1;
+      else if (strcmp (XSTR (exp, 0), "length") == 0)
+       length_used = 1;
       return;
 
     case MATCH_DUP:
+      must_extract = 1;
+      address_used = 1;
+      return;
+
     case PC:
       address_used = 1;
       return;
+
+    case ATTR_FLAG:
+      return;
     }
 
   for (i = 0, fmt = GET_RTX_FORMAT (code); i < GET_RTX_LENGTH (code); i++)
@@ -4326,15 +4630,17 @@ write_attr_get (attr)
   struct attr_value *av, *common_av;
 
   /* Find the most used attribute value.  Handle that as the `default' of the
-     switch we will generate. */
+     switch we will generate.  */
   common_av = find_most_used (attr);
 
   /* Write out start of function, then all values with explicit `case' lines,
      then a `default', then the value with the most uses.  */
-  if (attr->is_numeric)
-    printf ("int\n");
-  else
+  if (!attr->is_numeric)
     printf ("enum attr_%s\n", attr->name);
+  else if (attr->unsigned_p)
+    printf ("unsigned int\n");
+  else
+    printf ("int\n");
 
   /* If the attribute name starts with a star, the remainder is the name of
      the subroutine to use, instead of `get_attr_...'.  */
@@ -4503,7 +4809,8 @@ write_attr_set (attr, indent, value, prefix, suffix, known_true,
 /* Write out the computation for one attribute value.  */
 
 static void
-write_attr_case (attr, av, write_case_lines, prefix, suffix, indent, known_true)
+write_attr_case (attr, av, write_case_lines, prefix, suffix, indent,
+                known_true)
      struct attr_desc *attr;
      struct attr_value *av;
      int write_case_lines;
@@ -4543,7 +4850,7 @@ write_attr_case (attr, av, write_case_lines, prefix, suffix, indent, known_true)
       printf ("default:\n");
     }
 
-  /* See what we have to do to handle output this value.  */
+  /* See what we have to do to output this value.  */
   must_extract = must_constrain = address_used = 0;
   walk_attr_value (av->value);
 
@@ -4583,7 +4890,12 @@ write_attr_valueq (attr, s)
      char *s;
 {
   if (attr->is_numeric)
-    printf ("%s", s);
+    {
+      printf ("%s", s);
+      /* Make the blockage range values easier to read.  */
+      if (strlen (s) > 1)
+       printf (" /* 0x%x */", atoi (s));
+    }
   else
     {
       write_upcase (attr->name);
@@ -4659,10 +4971,12 @@ write_eligible_delay (kind)
   /* Write function prelude.  */
 
   printf ("int\n");
-  printf ("eligible_for_%s (delay_insn, slot, candidate_insn)\n", kind);
+  printf ("eligible_for_%s (delay_insn, slot, candidate_insn, flags)\n", 
+          kind);
   printf ("     rtx delay_insn;\n");
   printf ("     int slot;\n");
   printf ("     rtx candidate_insn;\n");
+  printf ("     int flags;\n");
   printf ("{\n");
   printf ("  rtx insn;\n");
   printf ("\n");
@@ -4758,107 +5072,27 @@ static void
 write_function_unit_info ()
 {
   struct function_unit *unit;
-  struct attr_desc *case_attr, *attr;
-  struct attr_value *av, *common_av;
-  rtx value;
-  char *str;
-  int using_case;
   int i;
 
   /* Write out conflict routines for function units.  Don't bother writing
-     one if there is only one busy value.  */
+     one if there is only one issue delay value.  */
 
   for (unit = units; unit; unit = unit->next)
     {
-      /* Record the maximum busy cost.  */
-      unit->max_busy_cost = make_numeric_value (unit->max_busy_delay);
+      if (unit->needs_blockage_function)
+       write_complex_function (unit, "blockage", "block");
 
       /* If the minimum and maximum conflict costs are the same, there
         is only one value, so we don't need a function.  */
-      if (unit->min_busy_delay == unit->max_busy_delay)
+      if (! unit->needs_conflict_function)
        {
-         unit->needs_conflict_function = 0;
-         unit->default_cost = unit->max_busy_cost;
+         unit->default_cost = make_numeric_value (unit->issue_delay.max);
          continue;
        }
 
       /* The function first computes the case from the candidate insn.  */
-      unit->needs_conflict_function = 1;
       unit->default_cost = make_numeric_value (0);
-
-      printf ("static int\n");
-      printf ("%s_unit_conflict_cost (executing_insn, candidate_insn)\n",
-             unit->name);
-      printf ("     rtx executing_insn;\n");
-      printf ("     rtx candidate_insn;\n");
-      printf ("{\n");
-      printf ("  rtx insn;\n");
-      printf ("  int casenum;\n\n");
-      printf ("  insn = candidate_insn;\n");
-      printf ("  switch (recog_memoized (insn))\n");
-      printf ("    {\n");
-
-      /* Write the `switch' statement to get the case value.  */
-      str = (char *) alloca (strlen (unit->name) + 10);
-      sprintf (str, "*%s_cases", unit->name);
-      case_attr = find_attr (str, 0);
-      if (! case_attr) abort ();
-      common_av = find_most_used (case_attr);
-
-      for (av = case_attr->first_value; av; av = av->next)
-       if (av != common_av)
-         write_attr_case (case_attr, av, 1,
-                          "casenum =", ";", 4, unit->condexp);
-
-      write_attr_case (case_attr, common_av, 0,
-                      "casenum =", ";", 4, unit->condexp);
-      printf ("    }\n\n");
-
-      /* Now write an outer switch statement on each case.  Then write
-        the tests on the executing function within each.  */
-      printf ("  insn = executing_insn;\n");
-      printf ("  switch (casenum)\n");
-      printf ("    {\n");
-
-      for (i = 0; i < unit->num_opclasses; i++)
-       {
-         /* Ensure using this case.  */
-         using_case = 0;
-         for (av = case_attr->first_value; av; av = av->next)
-           if (av->num_insns
-               && contained_in_p (make_numeric_value (i), av->value))
-             using_case = 1;
-
-         if (! using_case)
-           continue;
-
-         printf ("    case %d:\n", i);
-         sprintf (str, "*%s_case_%d", unit->name, i);
-         attr = find_attr (str, 0);
-         if (! attr) abort ();
-
-         /* If single value, just write it.  */
-         value = find_single_value (attr);
-         if (value)
-           write_attr_set (attr, 6, value, "return", ";\n", true_rtx, -2);
-         else
-           {
-             common_av = find_most_used (attr);
-             printf ("      switch (recog_memoized (insn))\n");
-             printf ("\t{\n");
-
-             for (av = attr->first_value; av; av = av->next)
-               if (av != common_av)
-                 write_attr_case (attr, av, 1,
-                                  "return", ";", 8, unit->condexp);
-
-             write_attr_case (attr, common_av, 0,
-                              "return", ";", 8, unit->condexp);
-             printf ("      }\n\n");
-           }
-       }
-
-      printf ("    }\n}\n\n");
+      write_complex_function (unit, "conflict_cost", "cost");
     }
 
   /* Now that all functions have been written, write the table describing
@@ -4875,13 +5109,25 @@ write_function_unit_info ()
        if (unit->num == i)
          break;
 
-      printf ("  {\"%s\", %d, %d, %d, %s, %s, %s_unit_ready_cost, ",
+      printf ("  {\"%s\", %d, %d, %d, %s, %d, %s_unit_ready_cost, ",
              unit->name, 1 << unit->num, unit->multiplicity,
              unit->simultaneity, XSTR (unit->default_cost, 0),
-             XSTR (unit->max_busy_cost, 0), unit->name);
+             unit->issue_delay.max, unit->name);
 
       if (unit->needs_conflict_function)
-       printf ("%s_unit_conflict_cost", unit->name);
+       printf ("%s_unit_conflict_cost, ", unit->name);
+      else
+       printf ("0, ");
+
+      printf ("%d, ", unit->max_blockage);
+
+      if (unit->needs_range_function)
+       printf ("%s_unit_blockage_range, ", unit->name);
+      else
+       printf ("0, ");
+
+      if (unit->needs_blockage_function)
+       printf ("%s_unit_blockage", unit->name);
       else
        printf ("0");
 
@@ -4890,6 +5136,93 @@ write_function_unit_info ()
 
   printf ("};\n\n");
 }
+
+static void
+write_complex_function (unit, name, connection)
+     struct function_unit *unit;
+     char *name, *connection;
+{
+  struct attr_desc *case_attr, *attr;
+  struct attr_value *av, *common_av;
+  rtx value;
+  char *str;
+  int using_case;
+  int i;
+
+  printf ("static int\n");
+  printf ("%s_unit_%s (executing_insn, candidate_insn)\n",
+         unit->name, name);
+  printf ("     rtx executing_insn;\n");
+  printf ("     rtx candidate_insn;\n");
+  printf ("{\n");
+  printf ("  rtx insn;\n");
+  printf ("  int casenum;\n\n");
+  printf ("  insn = executing_insn;\n");
+  printf ("  switch (recog_memoized (insn))\n");
+  printf ("    {\n");
+
+  /* Write the `switch' statement to get the case value.  */
+  str = (char *) alloca (strlen (unit->name) + strlen (name) + strlen (connection) + 10);
+  sprintf (str, "*%s_cases", unit->name);
+  case_attr = find_attr (str, 0);
+  if (! case_attr) abort ();
+  common_av = find_most_used (case_attr);
+
+  for (av = case_attr->first_value; av; av = av->next)
+    if (av != common_av)
+      write_attr_case (case_attr, av, 1,
+                      "casenum =", ";", 4, unit->condexp);
+
+  write_attr_case (case_attr, common_av, 0,
+                  "casenum =", ";", 4, unit->condexp);
+  printf ("    }\n\n");
+
+  /* Now write an outer switch statement on each case.  Then write
+     the tests on the executing function within each.  */
+  printf ("  insn = candidate_insn;\n");
+  printf ("  switch (casenum)\n");
+  printf ("    {\n");
+
+  for (i = 0; i < unit->num_opclasses; i++)
+    {
+      /* Ensure using this case.  */
+      using_case = 0;
+      for (av = case_attr->first_value; av; av = av->next)
+       if (av->num_insns
+           && contained_in_p (make_numeric_value (i), av->value))
+         using_case = 1;
+
+      if (! using_case)
+       continue;
+
+      printf ("    case %d:\n", i);
+      sprintf (str, "*%s_%s_%d", unit->name, connection, i);
+      attr = find_attr (str, 0);
+      if (! attr) abort ();
+
+      /* If single value, just write it.  */
+      value = find_single_value (attr);
+      if (value)
+       write_attr_set (attr, 6, value, "return", ";\n", true_rtx, -2, -2);
+      else
+       {
+         common_av = find_most_used (attr);
+         printf ("      switch (recog_memoized (insn))\n");
+         printf ("\t{\n");
+
+         for (av = attr->first_value; av; av = av->next)
+           if (av != common_av)
+             write_attr_case (attr, av, 1,
+                              "return", ";", 8, unit->condexp);
+
+         write_attr_case (attr, common_av, 0,
+                          "return", ";", 8, unit->condexp);
+         printf ("      }\n\n");
+       }
+    }
+
+  printf ("    }\n}\n\n");
+}
 \f
 /* This page contains miscellaneous utility routines.  */
 
@@ -4968,7 +5301,7 @@ find_attr (name, create)
   if (! create)
     return NULL;
 
-  attr = (struct attr_desc *) xmalloc (sizeof (struct attr_desc));
+  attr = (struct attr_desc *) oballoc (sizeof (struct attr_desc));
   attr->name = attr_string (name, strlen (name));
   attr->first_value = attr->default_val = NULL;
   attr->is_numeric = attr->negative_ok = attr->is_const = attr->is_special = 0;
@@ -4996,6 +5329,7 @@ make_internal_attr (name, value, special)
   attr->is_const = 0;
   attr->is_special = (special & 1) != 0;
   attr->negative_ok = (special & 2) != 0;
+  attr->unsigned_p = (special & 4) != 0;
   attr->default_val = get_attr_value (value, attr, -2);
 }
 
@@ -5058,7 +5392,7 @@ make_numeric_value (n)
   if (n < 20 && int_values[n])
     return int_values[n];
 
-  p = attr_printf ((n < 1000 ? 4 : HOST_BITS_PER_INT * 3 / 10 + 3), "%d", n);
+  p = attr_printf (MAX_DIGITS, "%d", n);
   exp = attr_rtx (CONST_STRING, p);
 
   if (n < 20)
@@ -5067,6 +5401,16 @@ make_numeric_value (n)
   return exp;
 }
 \f
+static void
+extend_range (range, min, max)
+     struct range *range;
+     int min;
+     int max;
+{
+  if (range->min > min) range->min = min;
+  if (range->max < max) range->max = max;
+}
+
 char *
 xrealloc (ptr, size)
      char *ptr;
@@ -5119,7 +5463,7 @@ copy_rtx_unchanging (orig)
   PUT_MODE (copy, GET_MODE (orig));
   RTX_UNCHANGING_P (copy) = 1;
   
-  bcopy (&XEXP (orig, 0), &XEXP (copy, 0),
+  bcopy ((char *) &XEXP (orig, 0), (char *) &XEXP (copy, 0),
         GET_RTX_LENGTH (GET_CODE (copy)) * sizeof (rtx));
   return copy;
 #endif
@@ -5128,6 +5472,7 @@ copy_rtx_unchanging (orig)
 static void
 fatal (s, a1, a2)
      char *s;
+     char *a1, *a2;
 {
   fprintf (stderr, "genattrtab: ");
   fprintf (stderr, s, a1, a2);
@@ -5143,6 +5488,45 @@ fancy_abort ()
 {
   fatal ("Internal gcc abort.");
 }
+
+/* Determine if an insn has a constant number of delay slots, i.e., the
+   number of delay slots is not a function of the length of the insn.  */
+
+void
+write_const_num_delay_slots ()
+{
+  struct attr_desc *attr = find_attr ("*num_delay_slots", 0);
+  struct attr_value *av;
+  struct insn_ent *ie;
+  int i;
+
+  if (attr)
+    {
+      printf ("int\nconst_num_delay_slots (insn)\n");
+      printf ("     rtx insn;\n");
+      printf ("{\n");
+      printf ("  switch (recog_memoized (insn))\n");
+      printf ("    {\n");
+
+      for (av = attr->first_value; av; av = av->next)
+       {
+         length_used = 0;
+         walk_attr_value (av->value);
+         if (length_used)
+           {
+             for (ie = av->first_insn; ie; ie = ie->next)
+             if (ie->insn_code != -1)
+               printf ("    case %d:\n", ie->insn_code);
+             printf ("      return 0;\n");
+           }
+       }
+
+      printf ("    default:\n");
+      printf ("      return 1;\n");
+      printf ("    }\n}\n");
+    }
+}
+
 \f
 int
 main (argc, argv)
@@ -5157,6 +5541,18 @@ main (argc, argv)
   rtx tem;
   int i;
 
+#ifdef RLIMIT_STACK
+  /* Get rid of any avoidable limit on stack size.  */
+  {
+    struct rlimit rlim;
+
+    /* Set the stack limit huge so that alloca does not fail.  */
+    getrlimit (RLIMIT_STACK, &rlim);
+    rlim.rlim_cur = rlim.rlim_max;
+    setrlimit (RLIMIT_STACK, &rlim);
+  }
+#endif /* RLIMIT_STACK defined */
+
   obstack_init (rtl_obstack);
   obstack_init (hash_obstack);
   obstack_init (temp_obstack);
@@ -5254,13 +5650,13 @@ from the machine description file `md'.  */\n\n");
   printf ("#define operands recog_operand\n\n");
 
   /* Make `insn_alternatives'.  */
-  insn_alternatives = (int *) xmalloc (insn_code_number * sizeof (int));
+  insn_alternatives = (int *) oballoc (insn_code_number * sizeof (int));
   for (id = defs; id; id = id->next)
     if (id->insn_code >= 0)
       insn_alternatives[id->insn_code] = (1 << id->num_alternatives) - 1;
 
   /* Make `insn_n_alternatives'.  */
-  insn_n_alternatives = (int *) xmalloc (insn_code_number * sizeof (int));
+  insn_n_alternatives = (int *) oballoc (insn_code_number * sizeof (int));
   for (id = defs; id; id = id->next)
     if (id->insn_code >= 0)
       insn_n_alternatives[id->insn_code] = id->num_alternatives;
@@ -5280,7 +5676,7 @@ from the machine description file `md'.  */\n\n");
   /* Construct extra attributes for `length'.  */
   make_length_attrs ();
 
-  /* Perform any possible optimizations to speed up compilation. */
+  /* Perform any possible optimizations to speed up compilation.  */
   optimize_attrs ();
 
   /* Now write out all the `gen_attr_...' routines.  Do these before the
@@ -5310,6 +5706,9 @@ from the machine description file `md'.  */\n\n");
   if (num_units)
     write_function_unit_info ();
 
+  /* Write out constant delay slot info */
+  write_const_num_delay_slots ();
+
   fflush (stdout);
   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
   /* NOTREACHED */