OSDN Git Service

* except.c (expand_start_all_catch): If the machine needs a
[pf3gnuchains/gcc-fork.git] / gcc / genattrtab.c
index b7e1be9..14ecac1 100644 (file)
@@ -1,6 +1,6 @@
 /* Generate code from machine description to compute values of attributes.
 /* 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.
 
 
 This file is part of GNU CC.
 
@@ -16,9 +16,10 @@ 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
 
 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 attribues and the DEFINE_DELAY and
+/* This program handles insn attributes and the DEFINE_DELAY and
    DEFINE_FUNCTION_UNIT definitions.
 
    It produces a series of functions named `get_attr_...', one for each insn
    DEFINE_FUNCTION_UNIT definitions.
 
    It produces a series of functions named `get_attr_...', one for each insn
@@ -89,15 +90,32 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
    `in_struct' (MEM_IN_STRUCT_P): This rtx is fully simplified
       for the insn code currently being processed (see optimize_attrs).
    `integrated' (RTX_INTEGRATED_P): This rtx is permanent and unique
    `in_struct' (MEM_IN_STRUCT_P): This rtx is fully simplified
       for the insn code currently being processed (see optimize_attrs).
    `integrated' (RTX_INTEGRATED_P): This rtx is permanent and unique
-      (see attr_rtx).  */
+      (see attr_rtx).
+   `volatil' (MEM_VOLATILE_P): During simplify_by_exploding the value of an
+      EQ_ATTR rtx is true if !volatil and false if volatil.  */
 
 
 
 
-#include <stdio.h>
-#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 "rtl.h"
-#include "obstack.h"
 #include "insn-config.h"       /* For REGISTER_CONSTRAINTS */
 #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;
 
 static struct obstack obstack, obstack1, obstack2;
 struct obstack *rtl_obstack = &obstack;
@@ -116,6 +134,9 @@ extern rtx read_rtx ();
 static void fatal ();
 void fancy_abort ();
 
 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
 /* Define structures used to record attributes and values.  */
 
 /* As each DEFINE_INSN, DEFINE_PEEPHOLE, or DEFINE_ASM_ATTRIBUTES is
@@ -125,12 +146,12 @@ void fancy_abort ();
 
 struct insn_def
 {
 
 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 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
 };
 
 /* Once everything has been read in, we store in each attribute value a list
@@ -161,13 +182,25 @@ struct attr_value
 
 struct attr_desc
 {
 
 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_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.  */
 };
 
 /* Structure for each DEFINE_DELAY.  */
@@ -175,7 +208,7 @@ struct attr_desc
 struct delay_desc
 {
   rtx def;                     /* DEFINE_DELAY expression.  */
 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.  */
 };
 
   int num;                     /* Number of DEFINE_DELAY, starting at 1.  */
 };
 
@@ -187,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.  */
   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
 };
 
 /* Record information about each function unit mentioned in a
@@ -201,12 +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.  */
   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 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 default_cost;            /* Conflict cost, if constant.  */
+  struct range issue_delay;    /* Range of issue delay values.  */
+  int max_blockage;            /* Maximum time an insn blocks the unit.  */
 };
 
 /* Listheads of above structures.  */
 };
 
 /* Listheads of above structures.  */
@@ -218,7 +256,50 @@ static struct insn_def *defs;
 static struct delay_desc *delays;
 static struct function_unit *units;
 
 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;
 
 static int insn_code_number;
 static int insn_index_number;
@@ -226,13 +307,15 @@ static int got_define_asm_attributes;
 static int must_extract;
 static int must_constrain;
 static int address_used;
 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_delays;
 static int have_annul_true, have_annul_false;
 static int num_units;
+static int num_insn_ents;
 
 /* Used as operand to `operate_exp':  */
 
 
 /* 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.  */
 
 
 /* Stores, for each insn code, the number of constraint alternatives.  */
 
@@ -275,73 +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.  */
 
 /* 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_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 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 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.  */
 
 \f
 /* Hash table for sharing RTL and strings.  */
 
@@ -372,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.  */
 
 /* 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.  */
 
 
 /* Add an entry to the hash table for RTL with hash code HASHCODE.  */
 
@@ -420,11 +529,12 @@ attr_hash_add_string (hashcode, str)
 
 /*VARARGS1*/
 static rtx
 
 /*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;
   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...           */
   register int i;              /* Array indices...                     */
   register char *fmt;          /* Current rtx's format...              */
   register rtx rt_val;         /* RTX to return to caller...           */
@@ -432,8 +542,11 @@ attr_rtx (va_alist)
   register struct attr_hash *h;
   struct obstack *old_obstack = rtl_obstack;
 
   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);
   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
 
   /* 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
@@ -452,7 +565,7 @@ attr_rtx (va_alist)
          return rt_val;
        }
 
          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
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -483,7 +596,7 @@ attr_rtx (va_alist)
          return rt_val;
        }
 
          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
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -507,7 +620,7 @@ attr_rtx (va_alist)
       if (code == SYMBOL_REF)
        arg0 = attr_string (arg0, strlen (arg0));
 
       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
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -528,7 +641,7 @@ attr_rtx (va_alist)
       char *arg0 = va_arg (p, char *);
       char *arg1 = va_arg (p, char *);
 
       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
       for (h = attr_hash_table[hashcode % RTL_HASH_SIZE]; h; h = h->next)
        if (h->hashcode == hashcode
            && GET_CODE (h->u.rtl) == code
@@ -546,7 +659,7 @@ attr_rtx (va_alist)
     }
   else if (code == CONST_INT)
     {
     }
   else if (code == CONST_INT)
     {
-      int arg0 = va_arg (p, int);
+      HOST_WIDE_INT arg0 = va_arg (p, HOST_WIDE_INT);
       if (arg0 == 0)
        return false_rtx;
       if (arg0 == 1)
       if (arg0 == 0)
        return false_rtx;
       if (arg0 == 1)
@@ -570,6 +683,10 @@ attr_rtx (va_alist)
              XINT (rt_val, i) = va_arg (p, int);
              break;
 
              XINT (rt_val, i) = va_arg (p, int);
              break;
 
+           case 'w':           /* A wide integer? */
+             XWINT (rt_val, i) = va_arg (p, HOST_WIDE_INT);
+             break;
+
            case 's':           /* A string?  */
              XSTR (rt_val, i) = va_arg (p, char *);
              break;
            case 's':           /* A string?  */
              XSTR (rt_val, i) = va_arg (p, char *);
              break;
@@ -611,19 +728,24 @@ attr_rtx (va_alist)
 
 /*VARARGS2*/
 static char *
 
 /*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 int len;
-  register char *fmt;
+  char *fmt;
+#endif
+  va_list p;
   register char *str;
 
   register char *str;
 
-  /* Print the string into a temporary location.  */
-  va_start (p);
+  VA_START (p, fmt);
+
+#ifndef __STDC__
   len = va_arg (p, int);
   len = va_arg (p, int);
-  str = (char *) alloca (len);
   fmt = va_arg (p, char *);
   fmt = va_arg (p, char *);
+#endif
+
+  /* Print the string into a temporary location.  */
+  str = (char *) alloca (len);
   vsprintf (str, fmt, p);
   va_end (p);
 
   vsprintf (str, fmt, p);
   va_end (p);
 
@@ -690,7 +812,7 @@ attr_string (str, len)
       return h->u.str;                 /* <-- return if found.  */
 
   /* Not found; create a permanent copy and add it to the hash table.  */
       return h->u.str;                 /* <-- return if found.  */
 
   /* Not found; create a permanent copy and add it to the hash table.  */
-  new_str = (char *) xmalloc (len + 1);
+  new_str = (char *) obstack_alloc (hash_obstack, len + 1);
   bcopy (str, new_str, len);
   new_str[len] = '\0';
   attr_hash_add_string (hashcode, new_str);
   bcopy (str, new_str, len);
   new_str[len] = '\0';
   attr_hash_add_string (hashcode, new_str);
@@ -772,9 +894,22 @@ attr_copy_rtx (orig)
            }
          break;
 
            }
          break;
 
-       default:
+       case 'n':
+       case 'i':
          XINT (copy, i) = XINT (orig, i);
          break;
          XINT (copy, i) = XINT (orig, i);
          break;
+
+       case 'w':
+         XWINT (copy, i) = XWINT (orig, i);
+         break;
+
+       case 's':
+       case 'S':
+         XSTR (copy, i) = XSTR (orig, i);
+         break;
+
+       default:
+         abort ();
        }
     }
   return copy;
        }
     }
   return copy;
@@ -838,6 +973,12 @@ check_attr_test (exp, is_const)
             so expressions using it can be permanent too.  */
          exp = attr_eq (XSTR (exp, 0), XSTR (exp, 1));
 
             so expressions using it can be permanent too.  */
          exp = attr_eq (XSTR (exp, 0), XSTR (exp, 1));
 
+         /* It shouldn't be possible to simplify the value given to a
+            constant attribute, so don't expand this until it's time to
+            write the test expression.  */            
+         if (attr->is_const)
+           RTX_UNCHANGING_P (exp) = 1;
+
          if (attr->is_numeric)
            {
              for (p = XSTR (exp, 1); *p; p++)
          if (attr->is_numeric)
            {
              for (p = XSTR (exp, 1); *p; p++)
@@ -865,16 +1006,19 @@ check_attr_test (exp, is_const)
          while ((p = next_comma_elt (&name_ptr)) != NULL)
            {
              newexp = attr_eq (XSTR (exp, 0), p);
          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;
 
            }
 
          return check_attr_test (orexp, is_const);
        }
       break;
 
+    case ATTR_FLAG:
+      break;
+
     case CONST_INT:
       /* Either TRUE or FALSE.  */
     case CONST_INT:
       /* Either TRUE or FALSE.  */
-      if (XINT (exp, 0))
+      if (XWINT (exp, 0))
        return true_rtx;
       else
        return false_rtx;
        return true_rtx;
       else
        return false_rtx;
@@ -960,7 +1104,10 @@ check_attr_value (exp, attr)
 
       if (attr == 0 || attr->is_numeric)
        {
 
       if (attr == 0 || attr->is_numeric)
        {
-         for (p = XSTR (exp, 0); *p; p++)
+         p = XSTR (exp, 0);
+         if (attr && attr->negative_ok && *p == '-')
+           p++;
+         for (; *p; p++)
            if (*p > '9' || *p < '0')
              fatal ("Non-numeric value for numeric `%s' attribute",
                     attr ? attr->name : "internal");
            if (*p > '9' || *p < '0')
              fatal ("Non-numeric value for numeric `%s' attribute",
                     attr ? attr->name : "internal");
@@ -1005,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));
        /* 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:
 
     default:
-      fatal ("Illegal operation `%s' for attribute value",
+      fatal ("Invalid operation `%s' for attribute value",
             GET_RTX_NAME (GET_CODE (exp)));
     }
 
             GET_RTX_NAME (GET_CODE (exp)));
     }
 
@@ -1024,7 +1171,6 @@ convert_set_attr_alternative (exp, num_alt, insn_code, insn_index)
      int num_alt;
      int insn_code, insn_index;
 {
      int num_alt;
      int insn_code, insn_index;
 {
-  rtx newexp;
   rtx condexp;
   int i;
 
   rtx condexp;
   int i;
 
@@ -1093,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
 \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 ()
 
 static void
 check_defs ()
@@ -1175,7 +1321,7 @@ convert_const_symbol_ref (exp, attr)
       char *p, *string;
       rtx value;
 
       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);
                                     + strlen (attr->name)
                                     + strlen (XSTR (av->value, 0)));
       strcpy (p, attr->name);
@@ -1257,7 +1403,7 @@ make_canonical (attr, exp)
        int allsame = 1;
        rtx defval;
 
        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));
        if (XVECLEN (exp, 0) == 0)
          return make_canonical (attr, XEXP (exp, 1));
        defval = XEXP (exp, 1) = make_canonical (attr, XEXP (exp, 1));
@@ -1322,7 +1468,7 @@ get_attr_value (value, attr, insn_code)
            || insn_alternatives[av->first_insn->insn_code]))
       return av;
 
            || 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;
   av->value = value;
   av->next = attr->first_value;
   attr->first_value = av;
@@ -1344,7 +1490,7 @@ get_attr_value (value, attr, insn_code)
    Finally, for each [DEFINE_DELAY, slot #] pair, we compute an attribute that
    tells whether a given insn can be in that delay slot.
 
    Finally, for each [DEFINE_DELAY, slot #] pair, we compute an attribute that
    tells whether a given insn can be in that delay slot.
 
-   Normal attrbute filling and optimization expands these to contain the
+   Normal attribute filling and optimization expands these to contain the
    information needed to handle delay slots.  */
 
 static void
    information needed to handle delay slots.  */
 
 static void
@@ -1387,8 +1533,8 @@ expand_delays ()
       make_internal_attr ("*delay_type", condexp, 1);
     }
 
       make_internal_attr ("*delay_type", condexp, 1);
     }
 
-  /* For each delay possibility and delay slot, compute an eligability
-     attribute for non-anulled insns and for each type of annulled (annul
+  /* For each delay possibility and delay slot, compute an eligibility
+     attribute for non-annulled insns and for each type of annulled (annul
      if true and annul if false).  */
  for (delay = delays; delay; delay = delay->next)
    {
      if true and annul if false).  */
  for (delay = delays; delay; delay = delay->next)
    {
@@ -1399,7 +1545,8 @@ expand_delays ()
         newexp = attr_rtx (IF_THEN_ELSE, condexp,
                            make_numeric_value (1), make_numeric_value (0));
 
         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)
         make_internal_attr (p, newexp, 1);
 
         if (have_annul_true)
@@ -1409,7 +1556,8 @@ expand_delays ()
             newexp = attr_rtx (IF_THEN_ELSE, condexp,
                                make_numeric_value (1),
                                make_numeric_value (0));
             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);
           }
 
             make_internal_attr (p, newexp, 1);
           }
 
@@ -1420,7 +1568,8 @@ expand_delays ()
             newexp = attr_rtx (IF_THEN_ELSE, condexp,
                                make_numeric_value (1),
                                make_numeric_value (0));
             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);
           }
        }
             make_internal_attr (p, newexp, 1);
           }
        }
@@ -1462,10 +1611,25 @@ operate_exp (op, left, right)
              i = left_value - right_value;
              break;
 
              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 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;
            case MAX_OP:
              if (left_value > right_value)
                i = left_value;
@@ -1473,6 +1637,13 @@ operate_exp (op, left, right)
                i = right_value;
              break;
 
                i = right_value;
              break;
 
+           case MIN_OP:
+             if (left_value < right_value)
+               i = left_value;
+             else
+               i = right_value;
+             break;
+
            default:
              abort ();
            }
            default:
              abort ();
            }
@@ -1586,8 +1757,10 @@ operate_exp (op, left, right)
    construct a number of attributes.
 
    The first produces a function `function_units_used' which is given an
    construct a number of attributes.
 
    The first produces a function `function_units_used' which is given an
-   insn and produces a mask showing which function units are required for
-   the execution of that insn.
+   insn and produces an encoding showing which function units are required
+   for the execution of that insn.  If the value is non-negative, the insn
+   uses that unit; otherwise, the value is a one's compliment mask of units
+   used.
 
    The second produces a function `result_ready_cost' which is used to
    determine the time that the result of an insn will be ready and hence
 
    The second produces a function `result_ready_cost' which is used to
    determine the time that the result of an insn will be ready and hence
@@ -1599,89 +1772,431 @@ operate_exp (op, left, right)
 
    For each unit, a `<name>_unit_ready_cost' function will take an
    insn and give the delay until that unit will be ready with the result
 
    For each unit, a `<name>_unit_ready_cost' function will take an
    insn and give the delay until that unit will be ready with the result
-   and a `<name>_unit_busy_delay' function is given an insn already
+   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
    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 ()
 {
 
 static void
 expand_units ()
 {
-  struct function_unit *unit;
-  struct function_unit_op *op;
+  struct function_unit *unit, **unit_num;
+  struct function_unit_op *op, **op_array, ***unit_ops;
   rtx unitsmask;
   rtx readycost;
   rtx newexp;
   char *str;
   rtx unitsmask;
   rtx readycost;
   rtx newexp;
   char *str;
+  int i, j, u, num, nvalues;
+
+  /* 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)
+    {
+      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);
+         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);
+           }
 
 
-  /* Initially, cost and masks are zero.  */
-  unitsmask = readycost = make_numeric_value (0);
+         /* Validate the condition.  */
+         op->condexp = check_attr_test (op->condexp, 0);
+       }
+    }
 
 
-  /* Set up a conditional for costs and unit mask.  */
+  /* Compute the mask of function units used.  Initially, the unitsmask is
+     zero.   Set up a conditional to compute each unit's contribution.  */
+  unitsmask = make_numeric_value (0);
   newexp = rtx_alloc (IF_THEN_ELSE);
   XEXP (newexp, 2) = make_numeric_value (0);
 
   newexp = rtx_alloc (IF_THEN_ELSE);
   XEXP (newexp, 2) = make_numeric_value (0);
 
-  /* For each unit, insert its contribution to the above three values.  */
+  /* Merge each function unit into the unit mask attributes.  */
+  for (unit = units; unit; unit = unit->next)
+    {
+      XEXP (newexp, 0) = unit->condexp;
+      XEXP (newexp, 1) = make_numeric_value (1 << unit->num);
+      unitsmask = operate_exp (OR_OP, unitsmask, newexp);
+    }
+
+  /* Simplify the unit mask expression, encode it, and make an attribute
+     for the function_units_used function.  */
+  unitsmask = simplify_by_exploding (unitsmask);
+  unitsmask = encode_units_mask (unitsmask);
+  make_internal_attr ("*function_units_used", unitsmask, 2);
+
+  /* Create an array of ops for each unit.  Add an extra unit for the
+     result_ready_cost function that has the ops of all other units.  */
+  unit_ops = (struct function_unit_op ***)
+    alloca ((num_units + 1) * sizeof (struct function_unit_op **));
+  unit_num = (struct function_unit **)
+    alloca ((num_units + 1) * sizeof (struct function_unit *));
+
+  unit_num[num_units] = unit = (struct function_unit *)
+    alloca (sizeof (struct function_unit));
+  unit->num = num_units;
+  unit->num_opclasses = 0;
+
+  for (unit = units; unit; unit = unit->next)
+    {
+      unit_num[num_units]->num_opclasses += unit->num_opclasses;
+      unit_num[unit->num] = unit;
+      unit_ops[unit->num] = op_array = (struct function_unit_op **)
+       alloca (unit->num_opclasses * sizeof (struct function_unit_op *));
+
+      for (op = unit->ops; op; op = op->next)
+       op_array[op->num] = op;
+    }
+
+  /* Compose the array of ops for the extra unit.  */
+  unit_ops[num_units] = op_array = (struct function_unit_op **)
+    alloca (unit_num[num_units]->num_opclasses
+           * sizeof (struct function_unit_op *));
+
+  for (unit = units, i = 0; unit; i += unit->num_opclasses, unit = unit->next)
+    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
+     condition for each non-default value.  */
+  for (u = 0; u <= num_units; u++)
+    {
+      rtx orexp;
+      int value;
+
+      unit = unit_num[u];
+      op_array = unit_ops[unit->num];
+      num = unit->num_opclasses;
+
+      /* Sort the array of ops into increasing ready cost order.  */
+      for (i = 0; i < num; i++)
+       for (j = num - 1; j > i; j--)
+         if (op_array[j-1]->ready < op_array[j]->ready)
+           {
+             op = op_array[j];
+             op_array[j] = op_array[j-1];
+             op_array[j-1] = op;
+           }
+
+      /* Determine how many distinct non-default ready cost values there
+        are.  We use a default ready cost value of 1.  */
+      nvalues = 0; value = 1;
+      for (i = num - 1; i >= 0; i--)
+       if (op_array[i]->ready > value)
+         {
+           value = op_array[i]->ready;
+           nvalues++;
+         }
+
+      if (nvalues == 0)
+       readycost = make_numeric_value (1);
+      else
+       {
+         /* Construct the ready cost expression as a COND of each value from
+            the largest to the smallest.  */
+         readycost = rtx_alloc (COND);
+         XVEC (readycost, 0) = rtvec_alloc (nvalues * 2);
+         XEXP (readycost, 1) = make_numeric_value (1);
+
+         nvalues = 0; orexp = false_rtx; value = op_array[0]->ready;
+         for (i = 0; i < num; i++)
+           {
+             op = op_array[i];
+             if (op->ready <= 1)
+               break;
+             else if (op->ready == value)
+               orexp = insert_right_side (IOR, orexp, op->condexp, -2, -2);
+             else
+               {
+                 XVECEXP (readycost, 0, nvalues * 2) = orexp;
+                 XVECEXP (readycost, 0, nvalues * 2 + 1)
+                   = make_numeric_value (value);
+                 nvalues++;
+                 value = op->ready;
+                 orexp = op->condexp;
+               }
+           }
+         XVECEXP (readycost, 0, nvalues * 2) = orexp;
+         XVECEXP (readycost, 0, nvalues * 2 + 1) = make_numeric_value (value);
+       }
+
+      if (u < num_units)
+       {
+         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);
+    }
+
+  /* For each unit that requires a conflict cost function, make an attribute
+     that maps insns to the operation number.  */
   for (unit = units; unit; unit = unit->next)
     {
   for (unit = units; unit; unit = unit->next)
     {
-      /* An expression that computes the ready cost for this unit.  */
-      rtx readyexp = rtx_alloc (COND);
-      /* An expression that maps insns to operation number for conflicts.  */
-      rtx caseexp = rtx_alloc (COND);
+      rtx caseexp;
+
+      if (! unit->needs_conflict_function
+         && ! unit->needs_blockage_function)
+       continue;
 
 
-      XVEC (readyexp, 0) = rtvec_alloc ((unit->num_opclasses - 1) * 2);
+      caseexp = rtx_alloc (COND);
       XVEC (caseexp, 0) = rtvec_alloc ((unit->num_opclasses - 1) * 2);
 
       for (op = unit->ops; op; op = op->next)
        {
       XVEC (caseexp, 0) = rtvec_alloc ((unit->num_opclasses - 1) * 2);
 
       for (op = unit->ops; op; op = op->next)
        {
-         /* Validate the expressions we were given for the conditions
-            and busy cost.  Then make an attribute for use in the conflict
-            function.  */
-         op->condexp = check_attr_test (op->condexp, 0);
-         op->busyexp = check_attr_value (op->busyexp, 0);
-         str = attr_printf (strlen (unit->name) + 11, "*%s_case_%d",
-                            unit->name, op->num);
-         make_internal_attr (str, make_canonical (0, op->busyexp));
-
-         /* Make our adjustment to the two COND's being computed.  If we are
-            the last operation class, place our values into the default of
-            the COND.  */
+         /* Make our adjustment to the COND being computed.  If we are the
+            last operation class, place our values into the default of the
+            COND.  */
          if (op->num == unit->num_opclasses - 1)
            {
          if (op->num == unit->num_opclasses - 1)
            {
-             XEXP (readyexp, 1) = make_numeric_value (op->ready);
              XEXP (caseexp, 1) = make_numeric_value (op->num);
            }
          else
            {
              XEXP (caseexp, 1) = make_numeric_value (op->num);
            }
          else
            {
-             XVECEXP (readyexp, 0, op->num * 2) = op->condexp;
-             XVECEXP (readyexp, 0, op->num * 2 + 1)
-               = make_numeric_value (op->ready);
              XVECEXP (caseexp, 0, op->num * 2) = op->condexp;
              XVECEXP (caseexp, 0, op->num * 2 + 1)
                = make_numeric_value (op->num);
            }
        }
 
              XVECEXP (caseexp, 0, op->num * 2) = op->condexp;
              XVECEXP (caseexp, 0, op->num * 2 + 1)
                = make_numeric_value (op->num);
            }
        }
 
-      /* Make an attribute for the case number and ready delay.  */
-      str = attr_printf (strlen (unit->name) + 8, "*%s_cases", unit->name);
+      /* Simplifying caseexp with simplify_by_exploding doesn't win.  */
+      str = attr_printf (strlen (unit->name) + sizeof ("*_cases"),
+                        "*%s_cases", unit->name);
       make_internal_attr (str, caseexp, 1);
       make_internal_attr (str, caseexp, 1);
+    }
+}
 
 
-      str = attr_printf (strlen (unit->name) + 20, "*%s_unit_ready_cost",
-                        unit->name);
-      make_internal_attr (str, readyexp, 0);
+/* Simplify EXP given KNOWN_TRUE.  */
 
 
-      /* Merge this function unit into the ready cost and unit mask
-        attributes.  */
-      XEXP (newexp, 0) = check_attr_test (unit->condexp, 0);
-      XEXP (newexp, 1) = make_numeric_value (1 << unit->num);
-      unitsmask = operate_exp (OR_OP, unitsmask, newexp);
+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
+   and only one unit is used or the one's compliment of the bitmask.  */
+
+static rtx
+encode_units_mask (x)
+     rtx x;
+{
+  register int i;
+  register int j;
+  register enum rtx_code code;
+  register char *fmt;
+
+  code = GET_CODE (x);
+
+  switch (code)
+    {
+    case CONST_STRING:
+      i = atoi (XSTR (x, 0));
+      if (i < 0)
+       abort (); /* The sign bit encodes a one's compliment mask.  */
+      else if (i != 0 && i == (i & -i))
+       /* Only one bit is set, so yield that unit number.  */
+       for (j = 0; (i >>= 1) != 0; j++)
+         ;
+      else
+       j = ~i;
+      return attr_rtx (CONST_STRING, attr_printf (MAX_DIGITS, "%d", j));
 
 
-      XEXP (newexp, 1) = readyexp;
-      readycost = operate_exp (MAX_OP, readycost, newexp);
+    case REG:
+    case QUEUED:
+    case CONST_INT:
+    case CONST_DOUBLE:
+    case SYMBOL_REF:
+    case CODE_LABEL:
+    case PC:
+    case CC0:
+    case EQ_ATTR:
+      return x;
     }
 
     }
 
-  make_internal_attr ("*function_units_used", unitsmask, 0);
-  make_internal_attr ("*result_ready_cost", readycost, 0);
+  /* Compare the elements.  If any pair of corresponding elements
+     fail to match, return 0 for the whole things.  */
+
+  fmt = GET_RTX_FORMAT (code);
+  for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
+    {
+      switch (fmt[i])
+       {
+       case 'V':
+       case 'E':
+         for (j = 0; j < XVECLEN (x, i); j++)
+           XVECEXP (x, i, j) = encode_units_mask (XVECEXP (x, i, j));
+         break;
+
+       case 'e':
+         XEXP (x, i) = encode_units_mask (XEXP (x, i));
+         break;
+       }
+    }
+  return x;
 }
 \f
 /* Once all attributes and insns have been read and checked, we construct for
 }
 \f
 /* Once all attributes and insns have been read and checked, we construct for
@@ -1698,6 +2213,11 @@ fill_attr (attr)
   int i;
   rtx value;
 
   int i;
   rtx value;
 
+  /* Don't fill constant attributes.  The value is independent of
+     any particular insn.  */
+  if (attr->is_const)
+    return;
+
   for (id = defs; id; id = id->next)
     {
       /* If no value is specified for this insn for this attribute, use the
   for (id = defs; id; id = id->next)
     {
       /* If no value is specified for this insn for this attribute, use the
@@ -1714,7 +2234,7 @@ fill_attr (attr)
       else
        av = get_attr_value (value, attr, id->insn_code);
 
       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);
       ie->insn_code = id->insn_code;
       ie->insn_index = id->insn_code;
       insert_insn_ent (av, ie);
@@ -1808,8 +2328,8 @@ make_length_attrs ()
   static char *new_names[] = {"*insn_default_length",
                              "*insn_variable_length_p",
                              "*insn_current_length"};
   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;
   int i;
   struct attr_desc *length_attr, *new_attr;
   struct attr_value *av, *new_av;
@@ -1842,7 +2362,7 @@ make_length_attrs ()
                                                         no_address_fn[i],
                                                         address_fn[i]),
                                     new_attr, ie->insn_code);
                                                         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);
            new_ie->insn_code = ie->insn_code;
            new_ie->insn_index = ie->insn_index;
            insert_insn_ent (new_av, new_ie);
@@ -1898,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);
      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);
   int len = XVECLEN (exp, 0);
-  rtx *tests = (rtx *) alloca (len * sizeof (rtx));
+  rtunion *tests = (rtunion *) alloca (len * sizeof (rtunion));
   int allsame = 1;
   int allsame = 1;
-  char *spacer, *first_spacer;
+  char *first_spacer;
 
   /* This lets us free all storage allocated below, if appropriate.  */
   first_spacer = (char *) obstack_finish (rtl_obstack);
 
 
   /* 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)
 
   /* See if default value needs simplification.  */
   if (GET_CODE (defval) == COND)
@@ -1920,10 +2439,10 @@ simplify_cond (exp, insn_code, insn_index)
       rtx newtest, newval;
 
       /* Simplify this test.  */
       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);
       /* See if this value may need simplification.  */
       if (GET_CODE (newval) == COND)
        newval = simplify_cond (newval, insn_code, insn_index);
@@ -1934,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;
          /* 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;
        }
 
          new_defval = newval;
        }
 
@@ -1942,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++)
        {
          /* 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;
        }
 
          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.  */
 
        {
          /* 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++)
                                 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
          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.  */
 
     }
 
   /* 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.  */
     len -= 2;
 
   /* See if we changed anything.  */
@@ -1976,7 +2495,7 @@ simplify_cond (exp, insn_code, insn_index)
     allsame = 0;
   else
     for (i = 0; i < len; i++)
     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;
        {
          allsame = 0;
          break;
@@ -1999,7 +2518,8 @@ simplify_cond (exp, insn_code, insn_index)
       rtx newexp = rtx_alloc (COND);
 
       XVEC (newexp, 0) = rtvec_alloc (len);
       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;
     }
       XEXP (newexp, 1) = new_defval;
       return newexp;
     }
@@ -2026,6 +2546,8 @@ remove_insn_ent (av, ie)
   av->num_insns--;
   if (ie->insn_code == -1)
     av->has_asm_insn = 0;
   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.  */
 }
 
 /* Insert an insn entry in an attribute value list.  */
@@ -2040,6 +2562,8 @@ insert_insn_ent (av, ie)
   av->num_insns++;
   if (ie->insn_code == -1)
     av->has_asm_insn = 1;
   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
 }
 \f
 /* This is a utility routine to take an expression that is a tree of either
@@ -2053,7 +2577,7 @@ insert_insn_ent (av, ie)
 
 static rtx
 insert_right_side (code, exp, term, insn_code, insn_index)
 
 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;
      rtx exp;
      rtx term;
      int insn_code, insn_index;
@@ -2115,14 +2639,14 @@ 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
    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;
 
 static int
 compute_alternative_mask (exp, code)
      rtx exp;
-     RTX_CODE code;
+     enum rtx_code code;
 {
 {
+  char *string;
   if (GET_CODE (exp) == code)
     return compute_alternative_mask (XEXP (exp, 0), code)
           | compute_alternative_mask (XEXP (exp, 1), code);
   if (GET_CODE (exp) == code)
     return compute_alternative_mask (XEXP (exp, 0), code)
           | compute_alternative_mask (XEXP (exp, 1), code);
@@ -2130,14 +2654,18 @@ compute_alternative_mask (exp, code)
   else if (code == AND && GET_CODE (exp) == NOT
           && GET_CODE (XEXP (exp, 0)) == EQ_ATTR
           && XSTR (XEXP (exp, 0), 0) == alternative_name)
   else if (code == AND && GET_CODE (exp) == NOT
           && GET_CODE (XEXP (exp, 0)) == EQ_ATTR
           && XSTR (XEXP (exp, 0), 0) == alternative_name)
-    return 1 << atoi (XSTR (XEXP (exp, 0), 1));
+    string = XSTR (XEXP (exp, 0), 1);
 
   else if (code == IOR && GET_CODE (exp) == EQ_ATTR
           && XSTR (exp, 0) == alternative_name)
 
   else if (code == IOR && GET_CODE (exp) == EQ_ATTR
           && XSTR (exp, 0) == alternative_name)
-    return 1 << atoi (XSTR (exp, 1));
+    string = XSTR (exp, 1);
 
   else
     return 0;
 
   else
     return 0;
+
+  if (string[1] == 0)
+    return 1 << (string[0] - '0');
+  return 1 << atoi (string);
 }
 
 /* Given I, a single-bit mask, return RTX to compare the `alternative'
 }
 
 /* Given I, a single-bit mask, return RTX to compare the `alternative'
@@ -2149,7 +2677,6 @@ make_alternative_compare (mask)
 {
   rtx newexp;
   int i;
 {
   rtx newexp;
   int i;
-  char *alternative;
 
   /* Find the bit.  */
   for (i = 0; (mask & (1 << i)) == 0; i++)
 
   /* Find the bit.  */
   for (i = 0; (mask & (1 << i)) == 0; i++)
@@ -2165,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
    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)
 
 static rtx
 evaluate_eq_attr (exp, value, insn_code, insn_index)
@@ -2199,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
         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;
 
       orexp = false_rtx;
       andexp = true_rtx;
@@ -2217,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,
          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);
                                     insn_code, insn_index);
          orexp = insert_right_side (IOR, orexp, right,
                                     insn_code, insn_index);
@@ -2232,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),
       /* 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);
     }
                                 insn_code, insn_index);
       newexp = insert_right_side (IOR, orexp, right, insn_code, insn_index);
     }
@@ -2247,7 +2777,8 @@ evaluate_eq_attr (exp, value, insn_code, insn_index)
 
   if (address_used)
     {
 
   if (address_used)
     {
-      if (! RTX_UNCHANGING_P (exp) && current_alternative_string)
+      /* This had `&& current_alternative_string', which seems to be wrong.  */
+      if (! RTX_UNCHANGING_P (exp))
        return copy_rtx_unchanging (exp);
       return exp;
     }
        return copy_rtx_unchanging (exp);
       return exp;
     }
@@ -2386,7 +2917,7 @@ simplify_and_tree (exp, pterm, insn_code, insn_index)
   return exp;
 }
 \f
   return exp;
 }
 \f
-/* Similiar to `simplify_and_tree', but for IOR trees.  */
+/* Similar to `simplify_and_tree', but for IOR trees.  */
 
 static rtx
 simplify_or_tree (exp, pterm, insn_code, insn_index)
 
 static rtx
 simplify_or_tree (exp, pterm, insn_code, insn_index)
@@ -2478,16 +3009,6 @@ simplify_test_exp (exp, insn_code, insn_index)
   rtx newexp = exp;
   char *spacer = (char *) obstack_finish (rtl_obstack);
 
   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;
   /* Don't re-simplify something we already simplified.  */
   if (RTX_UNCHANGING_P (exp) || MEM_IN_STRUCT_P (exp))
     return exp;
@@ -2564,10 +3085,10 @@ simplify_test_exp (exp, insn_code, insn_index)
        {
          i = compute_alternative_mask (exp, AND);
          if (i & ~insn_alternatives[insn_code])
        {
          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);
 
                   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;
          i ^= insn_alternatives[insn_code];
          if (i == 0)
            return false_rtx;
@@ -2657,10 +3178,10 @@ simplify_test_exp (exp, insn_code, insn_index)
        {
          i = compute_alternative_mask (exp, IOR);
          if (i & ~insn_alternatives[insn_code])
        {
          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);
 
                   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;
          i ^= insn_alternatives[insn_code];
          if (i == 0)
            return true_rtx;
@@ -2752,15 +3273,12 @@ simplify_test_exp (exp, insn_code, insn_index)
   /* We have already simplified this expression.  Simplifying it again
      won't buy anything unless we weren't given a valid insn code
      to process (i.e., we are canonicalizing something.).  */
   /* We have already simplified this expression.  Simplifying it again
      won't buy anything unless we weren't given a valid insn code
      to process (i.e., we are canonicalizing something.).  */
-  if (insn_code != -2 && current_alternative_string
+  if (insn_code != -2 /* Seems wrong: && current_alternative_string.  */
       && ! RTX_UNCHANGING_P (newexp))
     return copy_rtx_unchanging (newexp);
 
   return newexp;
 }
       && ! RTX_UNCHANGING_P (newexp))
     return copy_rtx_unchanging (newexp);
 
   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
 \f
 /* Optimize the attribute lists by seeing if we can determine conditional
    values from the known values of other attributes.  This will save subroutine
@@ -2771,7 +3289,7 @@ optimize_attrs ()
 {
   struct attr_desc *attr;
   struct attr_value *av;
 {
   struct attr_desc *attr;
   struct attr_value *av;
-  struct insn_ent *ie, *nextie;
+  struct insn_ent *ie;
   rtx newexp;
   int something_changed = 1;
   int i;
   rtx newexp;
   int something_changed = 1;
   int i;
@@ -2780,34 +3298,48 @@ optimize_attrs ()
                           struct attr_desc * attr;
                           struct attr_value_list *next; };
   struct attr_value_list **insn_code_values;
                           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.  */
 
   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 *));
   /* 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 *));
         (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;
 
   /* 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)
          {
   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->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++)
     {
   /* Process one insn code at a time.  */
   for (i = -2; i < insn_code_number; i++)
     {
@@ -2857,8 +3389,11 @@ optimize_attrs ()
            }
        }
     }
            }
        }
     }
+
+  free (ivbuf);
 }
 
 }
 
+#if 0
 static rtx
 simplify_by_alternatives (exp, insn_code, insn_index)
      rtx exp;
 static rtx
 simplify_by_alternatives (exp, insn_code, insn_index)
      rtx exp;
@@ -2890,36 +3425,474 @@ simplify_by_alternatives (exp, insn_code, insn_index)
   current_alternative_string = 0;
   return simplify_cond (newexp, insn_code, insn_index);
 }
   current_alternative_string = 0;
   return simplify_cond (newexp, insn_code, insn_index);
 }
+#endif
 \f
 \f
-/* Clear the MEM_IN_STRUCT_P flag in EXP and its subexpressions.  */
+/* 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.  */
 
 
-clear_struct_flag (x)
-     rtx x;
+static rtx
+simplify_by_exploding (exp)
+     rtx exp;
 {
 {
-  register int i;
-  register int j;
-  register enum rtx_code code;
-  register char *fmt;
+  rtx list = 0, link, condexp, defval;
+  struct dimension *space;
+  rtx *condtest, *condval;
+  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, &ndim) || ndim == 0)
+    {
+      unmark_used_attributes (list, 0, 0);
+      return exp;
+    }
 
 
-  MEM_IN_STRUCT_P (x) = 0;
-  if (RTX_UNCHANGING_P (x))
-    return;
+  /* Create an attribute space from the list of used attributes.  For each
+     dimension in the attribute space, record the attribute, list of values
+     used, and number of values used.  Add members to the list of values to
+     cover the domain of the attribute.  This makes the expanded COND form
+     order independent.  */
 
 
-  code = GET_CODE (x);
+  space = (struct dimension *) alloca (ndim * sizeof (struct dimension));
 
 
-  switch (code)
+  total = 1;
+  for (ndim = 0; list; ndim++)
     {
     {
-    case REG:
-    case QUEUED:
-    case CONST_INT:
-    case CONST_DOUBLE:
-    case SYMBOL_REF:
-    case CODE_LABEL:
-    case PC:
-    case CC0:
-    case EQ_ATTR:
-      return;
-    }
+      /* Pull the first attribute value from the list and record that
+        attribute as another dimension in the attribute space.  */
+      char *name = XSTR (XEXP (list, 0), 0);
+      rtx *prev;
+
+      if ((space[ndim].attr = find_attr (name, 0)) == 0
+         || space[ndim].attr->is_numeric)
+       {
+         unmark_used_attributes (list, space, ndim);
+         return exp;
+       }
+
+      /* Add all remaining attribute values that refer to this attribute.  */
+      space[ndim].num_values = 0;
+      space[ndim].values = 0;
+      prev = &list;
+      for (link = list; link; link = *prev)
+       if (! strcmp (XSTR (XEXP (link, 0), 0), name))
+         {
+           space[ndim].num_values++;
+           *prev = XEXP (link, 1);
+           XEXP (link, 1) = space[ndim].values;
+           space[ndim].values = link;
+         }
+       else
+         prev = &XEXP (link, 1);
+
+      /* Add sufficient members to the list of values to make the list
+        mutually exclusive and record the total size of the attribute
+        space.  */
+      total *= add_values_to_cover (&space[ndim]);
+    }
+
+  /* Sort the attribute space so that the attributes go from non-constant
+     to constant and from most values to least values.  */
+  for (i = 0; i < ndim; i++)
+    for (j = ndim - 1; j > i; j--)
+      if ((space[j-1].attr->is_const && !space[j].attr->is_const)
+         || space[j-1].num_values < space[j].num_values)
+       {
+         struct dimension tmp;
+         tmp = space[j];
+         space[j] = space[j-1];
+         space[j-1] = tmp;
+       }
+
+  /* Establish the initial current value.  */
+  for (i = 0; i < ndim; i++)
+    space[i].current_value = space[i].values;
+
+  condtest = (rtx *) alloca (total * sizeof (rtx));
+  condval = (rtx *) alloca (total * sizeof (rtx));
+
+  /* Expand the tests and values by iterating over all values in the
+     attribute space.  */
+  for (i = 0;; i++)
+    {
+      condtest[i] = test_for_current_value (space, ndim);
+      condval[i] = simplify_with_current_value (exp, space, ndim);
+      if (! increment_current_value (space, ndim))
+       break;
+    }
+  if (i != total - 1)
+    abort ();
+
+  /* We are now finished with the original expression.  */
+  unmark_used_attributes (0, space, ndim);
+
+  /* Find the most used constant value and make that the default.  */
+  most_tests = -1;
+  for (i = num_marks = 0; i < total; i++)
+    if (GET_CODE (condval[i]) == CONST_STRING
+       && ! MEM_VOLATILE_P (condval[i]))
+      {
+       /* Mark the unmarked constant value and count how many are marked.  */
+       MEM_VOLATILE_P (condval[i]) = 1;
+       for (j = new_marks = 0; j < total; j++)
+         if (GET_CODE (condval[j]) == CONST_STRING
+             && MEM_VOLATILE_P (condval[j]))
+           new_marks++;
+       if (new_marks - num_marks > most_tests)
+         {
+           most_tests = new_marks - num_marks;
+           defval = condval[i];
+         }
+       num_marks = new_marks;
+      }
+  /* Clear all the marks.  */
+  for (i = 0; i < total; i++)
+    MEM_VOLATILE_P (condval[i]) = 0;
+
+  /* Give up if nothing is constant.  */
+  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.)  */
+  condexp = rtx_alloc (COND);
+  XVEC (condexp, 0) = rtvec_alloc ((total - most_tests) * 2);
+  XEXP (condexp, 1) = defval;
+  for (i = j = 0; i < total; i++)
+    if (condval[i] != defval)
+      {
+       XVECEXP (condexp, 0, 2 * j) = condtest[i];
+       XVECEXP (condexp, 0, 2 * j + 1) = condval[i];
+       j++;
+      }
+
+  return condexp;
+}
+
+/* Set the MEM_VOLATILE_P flag for all EQ_ATTR expressions in EXP and
+   verify that EXP can be simplified to a constant term if all the EQ_ATTR
+   tests have known value.  */
+
+static int
+find_and_mark_used_attributes (exp, terms, nterms)
+     rtx exp, *terms;
+     int *nterms;
+{
+  int i;
+
+  switch (GET_CODE (exp))
+    {
+    case EQ_ATTR:
+      if (! MEM_VOLATILE_P (exp))
+       {
+         rtx link = rtx_alloc (EXPR_LIST);
+         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, nterms))
+       return 0;
+    case IOR:
+    case AND:
+      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, 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, nterms))
+         return 0;
+      if (! find_and_mark_used_attributes (XEXP (exp, 1), terms, nterms))
+       return 0;
+      return 1;
+    }
+
+  return 0;
+}
+
+/* Clear the MEM_VOLATILE_P flag in all EQ_ATTR expressions on LIST and
+   in the values of the NDIM-dimensional attribute space SPACE.  */
+
+static void
+unmark_used_attributes (list, space, ndim)
+     rtx list;
+     struct dimension *space;
+     int ndim;
+{
+  rtx link, exp;
+  int i;
+
+  for (i = 0; i < ndim; i++)
+    unmark_used_attributes (space[i].values, 0, 0);
+
+  for (link = list; link; link = XEXP (link, 1))
+    {
+      exp = XEXP (link, 0);
+      if (GET_CODE (exp) == EQ_ATTR)
+       MEM_VOLATILE_P (exp) = 0;
+    }
+}
+
+/* Update the attribute dimension DIM so that all values of the attribute
+   are tested.  Return the updated number of values.  */
+
+static int
+add_values_to_cover (dim)
+     struct dimension *dim;
+{
+  struct attr_value *av;
+  rtx exp, link, *prev;
+  int nalt = 0;
+
+  for (av = dim->attr->first_value; av; av = av->next)
+    if (GET_CODE (av->value) == CONST_STRING)
+      nalt++;
+
+  if (nalt < dim->num_values)
+    abort ();
+  else if (nalt == dim->num_values)
+    ; /* Ok.  */
+  else if (nalt * 2 < dim->num_values * 3)
+    {
+      /* Most all the values of the attribute are used, so add all the unused
+        values.  */
+      prev = &dim->values;
+      for (link = dim->values; link; link = *prev)
+       prev = &XEXP (link, 1);
+
+      for (av = dim->attr->first_value; av; av = av->next)
+       if (GET_CODE (av->value) == CONST_STRING)
+         {
+           exp = attr_eq (dim->attr->name, XSTR (av->value, 0));
+           if (MEM_VOLATILE_P (exp))
+             continue;
+
+           link = rtx_alloc (EXPR_LIST);
+           XEXP (link, 0) = exp;
+           XEXP (link, 1) = 0;
+           *prev = link;
+           prev = &XEXP (link, 1);
+         }
+      dim->num_values = nalt;
+    }
+  else
+    {
+      rtx orexp = false_rtx;
+
+      /* Very few values are used, so compute a mutually exclusive
+        expression.  (We could do this for numeric values if that becomes
+        important.)  */
+      prev = &dim->values;
+      for (link = dim->values; link; link = *prev)
+       {
+         orexp = insert_right_side (IOR, orexp, XEXP (link, 0), -2, -2);
+         prev = &XEXP (link, 1);
+       }
+      link = rtx_alloc (EXPR_LIST);
+      XEXP (link, 0) = attr_rtx (NOT, orexp);
+      XEXP (link, 1) = 0;
+      *prev = link;
+      dim->num_values++;
+    }
+  return dim->num_values;
+}
+
+/* Increment the current value for the NDIM-dimensional attribute space SPACE
+   and return FALSE if the increment overflowed.  */
+
+static int
+increment_current_value (space, ndim)
+     struct dimension *space;
+     int ndim;
+{
+  int i;
+
+  for (i = ndim - 1; i >= 0; i--)
+    {
+      if ((space[i].current_value = XEXP (space[i].current_value, 1)) == 0)
+       space[i].current_value = space[i].values;
+      else
+       return 1;
+    }
+  return 0;
+}
+
+/* Construct an expression corresponding to the current value for the
+   NDIM-dimensional attribute space SPACE.  */
+
+static rtx
+test_for_current_value (space, ndim)
+     struct dimension *space;
+     int ndim;
+{
+  int i;
+  rtx exp = true_rtx;
+
+  for (i = 0; i < ndim; i++)
+    exp = insert_right_side (AND, exp, XEXP (space[i].current_value, 0),
+                            -2, -2);
+
+  return exp;
+}
+
+/* Given the current value of the NDIM-dimensional attribute space SPACE,
+   set the corresponding EQ_ATTR expressions to that value and reduce
+   the expression EXP as much as possible.  On input [and output], all
+   known EQ_ATTR expressions are set to FALSE.  */
+
+static rtx
+simplify_with_current_value (exp, space, ndim)
+     rtx exp;
+     struct dimension *space;
+     int ndim;
+{
+  int i;
+  rtx x;
+
+  /* Mark each current value as TRUE.  */
+  for (i = 0; i < ndim; i++)
+    {
+      x = XEXP (space[i].current_value, 0);
+      if (GET_CODE (x) == EQ_ATTR)
+       MEM_VOLATILE_P (x) = 0;
+    }
+
+  exp = simplify_with_current_value_aux (exp);
+
+  /* Change each current value back to FALSE.  */
+  for (i = 0; i < ndim; i++)
+    {
+      x = XEXP (space[i].current_value, 0);
+      if (GET_CODE (x) == EQ_ATTR)
+       MEM_VOLATILE_P (x) = 1;
+    }
+
+  return exp;
+}
+
+/* Reduce the expression EXP based on the MEM_VOLATILE_P settings of
+   all EQ_ATTR expressions.  */
+
+static rtx
+simplify_with_current_value_aux (exp)
+     rtx exp;
+{
+  register int i;
+  rtx cond;
+
+  switch (GET_CODE (exp))
+    {
+    case EQ_ATTR:
+      if (MEM_VOLATILE_P (exp))
+       return false_rtx;
+      else
+       return true_rtx;
+    case CONST_STRING:
+      return exp;
+
+    case IF_THEN_ELSE:
+      cond = simplify_with_current_value_aux (XEXP (exp, 0));
+      if (cond == true_rtx)
+       return simplify_with_current_value_aux (XEXP (exp, 1));
+      else if (cond == false_rtx)
+       return simplify_with_current_value_aux (XEXP (exp, 2));
+      else
+       return attr_rtx (IF_THEN_ELSE, cond,
+                        simplify_with_current_value_aux (XEXP (exp, 1)),
+                        simplify_with_current_value_aux (XEXP (exp, 2)));
+
+    case IOR:
+      cond = simplify_with_current_value_aux (XEXP (exp, 1));
+      if (cond == true_rtx)
+       return cond;
+      else if (cond == false_rtx)
+       return simplify_with_current_value_aux (XEXP (exp, 0));
+      else
+       return attr_rtx (IOR, cond,
+                        simplify_with_current_value_aux (XEXP (exp, 0)));
+
+    case AND:
+      cond = simplify_with_current_value_aux (XEXP (exp, 1));
+      if (cond == true_rtx)
+       return simplify_with_current_value_aux (XEXP (exp, 0));
+      else if (cond == false_rtx)
+       return cond;
+      else
+       return attr_rtx (AND, cond,
+                        simplify_with_current_value_aux (XEXP (exp, 0)));
+
+    case NOT:
+      cond = simplify_with_current_value_aux (XEXP (exp, 0));
+      if (cond == true_rtx)
+       return false_rtx;
+      else if (cond == false_rtx)
+       return true_rtx;
+      else
+       return attr_rtx (NOT, cond);
+
+    case COND:
+      for (i = 0; i < XVECLEN (exp, 0); i += 2)
+       {
+         cond = simplify_with_current_value_aux (XVECEXP (exp, 0, i));
+         if (cond == true_rtx)
+           return simplify_with_current_value_aux (XVECEXP (exp, 0, i + 1));
+         else if (cond == false_rtx)
+           continue;
+         else
+           abort (); /* With all EQ_ATTR's of known value, a case should
+                        have been selected.  */
+       }
+      return simplify_with_current_value_aux (XEXP (exp, 1));
+    }
+  abort ();
+}
+\f
+/* Clear the MEM_IN_STRUCT_P flag in EXP and its subexpressions.  */
+
+static void
+clear_struct_flag (x)
+     rtx x;
+{
+  register int i;
+  register int j;
+  register enum rtx_code code;
+  register char *fmt;
+
+  MEM_IN_STRUCT_P (x) = 0;
+  if (RTX_UNCHANGING_P (x))
+    return;
+
+  code = GET_CODE (x);
+
+  switch (code)
+    {
+    case REG:
+    case QUEUED:
+    case CONST_INT:
+    case CONST_DOUBLE:
+    case SYMBOL_REF:
+    case CODE_LABEL:
+    case PC:
+    case CC0:
+    case EQ_ATTR:
+    case ATTR_FLAG:
+      return;
+    }
 
   /* Compare the elements.  If any pair of corresponding elements
      fail to match, return 0 for the whole things.  */
 
   /* Compare the elements.  If any pair of corresponding elements
      fail to match, return 0 for the whole things.  */
@@ -2945,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.  */
 
 /* 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;
 count_sub_rtxs (x, max)
      rtx x;
      int max;
@@ -2968,6 +3942,7 @@ count_sub_rtxs (x, max)
     case PC:
     case CC0:
     case EQ_ATTR:
     case PC:
     case CC0:
     case EQ_ATTR:
+    case ATTR_FLAG:
       return 1;
     }
 
       return 1;
     }
 
@@ -3021,7 +3996,7 @@ gen_attr (exp)
       name_ptr = XSTR (exp, 1);
       while ((p = next_comma_elt (&name_ptr)) != NULL)
        {
       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;
          av->value = attr_rtx (CONST_STRING, p);
          av->next = attr->first_value;
          attr->first_value = av;
@@ -3043,7 +4018,7 @@ gen_attr (exp)
   if (! strcmp (attr->name, "length") && ! attr->is_numeric)
     fatal ("`length' attribute must take numeric values");
 
   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);
 }
   XEXP (exp, 2) = check_attr_value (XEXP (exp, 2), attr);
   attr->default_val = get_attr_value (XEXP (exp, 2), attr, -2);
 }
@@ -3161,7 +4136,7 @@ gen_insn (exp)
 {
   struct insn_def *id;
 
 {
   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;
   id->next = defs;
   defs = id;
   id->def = exp;
@@ -3217,7 +4192,7 @@ gen_delay (def)
        have_annul_false = 1;
     }
   
        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;
   delay->def = def;
   delay->num = ++num_delays;
   delay->next = delays;
@@ -3236,15 +4211,21 @@ gen_unit (def)
 {
   struct function_unit *unit;
   struct function_unit_op *op;
 {
   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
 
   /* See if we have already seen this function unit.  If so, check that
-     the multipicity and simultaneity values are the same.  If not, make
+     the multiplicity and simultaneity values are the same.  If not, make
      a structure for this function unit.  */
   for (unit = units; unit; unit = unit->next)
      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;
          fatal ("Differing specifications given for `%s' function unit.",
                 unit->name);
        break;
@@ -3252,10 +4233,11 @@ gen_unit (def)
 
   if (unit == 0)
     {
 
   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->num = num_units++;
       unit->num_opclasses = 0;
       unit->condexp = false_rtx;
@@ -3265,14 +4247,15 @@ gen_unit (def)
     }
 
   /* Make a new operation class structure entry and initialize it.  */
     }
 
   /* 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->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;
 
   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))
     {
      vector was specified.  */
   if (XVEC (def, 6))
     {
@@ -3281,18 +4264,20 @@ gen_unit (def)
       int i;
 
       for (i = 0; i < XVECLEN (def, 6); i++)
       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));
+      op->conflict_exp = orexp;
+      extend_range (&unit->issue_delay, 1, issue_delay);
     }
   else
     }
   else
-    op->busyexp = make_numeric_value (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.  */
 
   /* 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.
 }
 \f
 /* Given a piece of RTX, print a C expression to test it's truth value.
@@ -3324,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 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)
         {
       write_test_expr (XEXP (exp, 0), in_comparison || comparison_operator);
       switch (code)
         {
@@ -3388,7 +4373,6 @@ write_test_expr (exp, in_comparison)
        case XOR:
          printf (" ^ ");
          break;
        case XOR:
          printf (" ^ ");
          break;
-       case LSHIFT:
        case ASHIFT:
          printf (" << ");
          break;
        case ASHIFT:
          printf (" << ");
          break;
@@ -3448,8 +4432,26 @@ write_test_expr (exp, in_comparison)
 
       attr = find_attr (XSTR (exp, 0), 0);
       if (! attr) abort ();
 
       attr = find_attr (XSTR (exp, 0), 0);
       if (! attr) abort ();
-      printf ("get_attr_%s (insn) == ", attr->name);
-      write_attr_valueq (attr, XSTR (exp, 1)); 
+
+      /* Now is the time to expand the value of a constant attribute.  */
+      if (attr->is_const)
+       {
+         write_test_expr (evaluate_eq_attr (exp, attr->default_val->value,
+                                            -2, -2),
+                          in_comparison);
+       }
+      else
+       {
+         printf ("get_attr_%s (insn) == ", attr->name);
+         write_attr_valueq (attr, XSTR (exp, 1)); 
+       }
+      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.  */
       break;
 
     /* See if an operand matches a predicate.  */
@@ -3469,19 +4471,24 @@ write_test_expr (exp, in_comparison)
                XSTR (exp, 1), XINT (exp, 0), GET_MODE_NAME (GET_MODE (exp)));
       break;
 
                XSTR (exp, 1), XINT (exp, 0), GET_MODE_NAME (GET_MODE (exp)));
       break;
 
-    /* Constant integer. */
+    /* Constant integer.  */
     case CONST_INT:
     case CONST_INT:
-      printf ("%d", XINT (exp, 0));
+#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
+      printf ("%d", XWINT (exp, 0));
+#else
+      printf ("%ld", XWINT (exp, 0));
+#endif
       break;
 
       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:
     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
       break;
 
     /* The address of the current insn.  It would be more consistent with
@@ -3528,6 +4535,14 @@ max_attr_value (exp)
        current_max = n;
     }
 
        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 ();
 
   else
     abort ();
 
@@ -3541,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
        `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
  */
 
 static void
@@ -3572,12 +4588,21 @@ walk_attr_value (exp)
     case EQ_ATTR:
       if (XSTR (exp, 0) == alternative_name)
        must_extract = must_constrain = 1;
     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:
       return;
 
     case MATCH_DUP:
+      must_extract = 1;
+      address_used = 1;
+      return;
+
     case PC:
       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++)
     }
 
   for (i = 0, fmt = GET_RTX_FORMAT (code); i < GET_RTX_LENGTH (code); i++)
@@ -3605,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
   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.  */
   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);
     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_...'.  */
 
   /* If the attribute name starts with a star, the remainder is the name of
      the subroutine to use, instead of `get_attr_...'.  */
@@ -3782,7 +4809,8 @@ write_attr_set (attr, indent, value, prefix, suffix, known_true,
 /* Write out the computation for one attribute value.  */
 
 static void
 /* 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;
      struct attr_desc *attr;
      struct attr_value *av;
      int write_case_lines;
@@ -3822,7 +4850,7 @@ write_attr_case (attr, av, write_case_lines, prefix, suffix, indent, known_true)
       printf ("default:\n");
     }
 
       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);
 
   must_extract = must_constrain = address_used = 0;
   walk_attr_value (av->value);
 
@@ -3862,7 +4890,12 @@ write_attr_valueq (attr, s)
      char *s;
 {
   if (attr->is_numeric)
      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);
   else
     {
       write_upcase (attr->name);
@@ -3913,7 +4946,7 @@ write_indent (indent)
    the specified insn can be annulled if the branch is true, and likewise
    for `eligible_for_annul_false'.
 
    the specified insn can be annulled if the branch is true, and likewise
    for `eligible_for_annul_false'.
 
-   KIND is a string distingushing these three cases ("delay", "annul_true",
+   KIND is a string distinguishing these three cases ("delay", "annul_true",
    or "annul_false").  */
 
 static void
    or "annul_false").  */
 
 static void
@@ -3938,10 +4971,12 @@ write_eligible_delay (kind)
   /* Write function prelude.  */
 
   printf ("int\n");
   /* 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 ("     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");
   printf ("{\n");
   printf ("  rtx insn;\n");
   printf ("\n");
@@ -4037,138 +5072,156 @@ static void
 write_function_unit_info ()
 {
   struct function_unit *unit;
 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
   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)
     {
 
   for (unit = units; unit; unit = unit->next)
     {
-      /* See if only one case exists and if there is a constant value for
-        that case.  If so, we don't need a function.  */
-      str = (char *) alloca (strlen (unit->name) + 10);
-      sprintf (str, "*%s_cases", unit->name);
-      attr = find_attr (str, 0);
-      if (! attr) abort ();
-      value = find_single_value (attr);
-      if (value && GET_CODE (value) == CONST_STRING)
+      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->needs_conflict_function)
        {
        {
-         sprintf (str, "*%s_case_%s", unit->name, XSTR (value, 0));
-         attr = find_attr (str, 0);
-         if (! attr) abort ();
-         value = find_single_value (attr);
-         if (value && GET_CODE (value) == CONST_STRING)
-           {
-             unit->needs_conflict_function = 0;
-             unit->default_cost = value;
-             continue;
-           }
+         unit->default_cost = make_numeric_value (unit->issue_delay.max);
+         continue;
        }
 
       /* The function first computes the case from the candidate insn.  */
        }
 
       /* The function first computes the case from the candidate insn.  */
-      unit->needs_conflict_function = 1;
       unit->default_cost = make_numeric_value (0);
       unit->default_cost = make_numeric_value (0);
+      write_complex_function (unit, "conflict_cost", "cost");
+    }
 
 
-      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");
+  /* Now that all functions have been written, write the table describing
+     the function units.   The name is included for documentation purposes
+     only.  */
 
 
-      /* Write the `switch' statement to get the case value.  */
-      sprintf (str, "*%s_cases", unit->name);
-      case_attr = find_attr (str, 0);
-      if (! case_attr) abort ();
-      common_av = find_most_used (case_attr);
+  printf ("struct function_unit_desc function_units[] = {\n");
 
 
-      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 out the descriptions in numeric order, but don't force that order
+     on the list.  Doing so increases the runtime of genattrtab.c.  */
+  for (i = 0; i < num_units; i++)
+    {
+      for (unit = units; unit; unit = unit->next)
+       if (unit->num == i)
+         break;
 
 
-      write_attr_case (case_attr, common_av, 0,
-                      "casenum =", ";", 4, unit->condexp);
-      printf ("    }\n\n");
+      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),
+             unit->issue_delay.max, unit->name);
 
 
-      /* 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");
+      if (unit->needs_conflict_function)
+       printf ("%s_unit_conflict_cost, ", unit->name);
+      else
+       printf ("0, ");
 
 
-      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 ("%d, ", unit->max_blockage);
 
 
-         printf ("    case %d:\n", i);
-         sprintf (str, "*%s_case_%d", unit->name, i);
-         attr = find_attr (str, 0);
-         if (! attr) abort ();
+      if (unit->needs_range_function)
+       printf ("%s_unit_blockage_range, ", unit->name);
+      else
+       printf ("0, ");
 
 
-         /* 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");
+      if (unit->needs_blockage_function)
+       printf ("%s_unit_blockage", unit->name);
+      else
+       printf ("0");
 
 
-             for (av = attr->first_value; av; av = av->next)
-               if (av != common_av)
-                 write_attr_case (attr, av, 1,
-                                  "return", ";", 8, unit->condexp);
+      printf ("}, \n");
+    }
 
 
-             write_attr_case (attr, common_av, 0,
-                              "return", ";", 8, unit->condexp);
-             printf ("      }\n\n");
-           }
-       }
+  printf ("};\n\n");
+}
 
 
-      printf ("    }\n}\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;
 
 
-  /* Now that all functions have been written, write the table describing
-     the function units.   The name is included for documenation purposes
-     only.  */
+  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");
 
 
-  printf ("struct function_unit_desc function_units[] = {\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 (unit = units; unit; unit = unit->next)
+  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++)
     {
     {
-      printf ("  {\"%s\", %d, %d, %d, %s, %s_unit_ready_cost, ",
-             unit->name, 1 << unit->num, unit->multiplicity,
-             unit->simultaneity, XSTR (unit->default_cost, 0), unit->name);
+      /* 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 (unit->needs_conflict_function)
-       printf ("%s_unit_conflict_cost", unit->name);
+      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
       else
-       printf ("0");
+       {
+         common_av = find_most_used (attr);
+         printf ("      switch (recog_memoized (insn))\n");
+         printf ("\t{\n");
 
 
-      printf ("}, \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");
+  printf ("    }\n}\n\n");
 }
 \f
 /* This page contains miscellaneous utility routines.  */
 }
 \f
 /* This page contains miscellaneous utility routines.  */
@@ -4248,10 +5301,10 @@ find_attr (name, create)
   if (! create)
     return NULL;
 
   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->name = attr_string (name, strlen (name));
   attr->first_value = attr->default_val = NULL;
-  attr->is_numeric = attr->is_const = attr->is_special = 0;
+  attr->is_numeric = attr->negative_ok = attr->is_const = attr->is_special = 0;
   attr->next = attrs[index];
   attrs[index] = attr;
 
   attr->next = attrs[index];
   attrs[index] = attr;
 
@@ -4274,7 +5327,9 @@ make_internal_attr (name, value, special)
 
   attr->is_numeric = 1;
   attr->is_const = 0;
 
   attr->is_numeric = 1;
   attr->is_const = 0;
-  attr->is_special = special;
+  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);
 }
 
   attr->default_val = get_attr_value (value, attr, -2);
 }
 
@@ -4337,7 +5392,7 @@ make_numeric_value (n)
   if (n < 20 && int_values[n])
     return int_values[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)
   exp = attr_rtx (CONST_STRING, p);
 
   if (n < 20)
@@ -4346,6 +5401,16 @@ make_numeric_value (n)
   return exp;
 }
 \f
   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;
 char *
 xrealloc (ptr, size)
      char *ptr;
@@ -4372,8 +5437,10 @@ static rtx
 copy_rtx_unchanging (orig)
      register rtx orig;
 {
 copy_rtx_unchanging (orig)
      register rtx orig;
 {
+#if 0
   register rtx copy;
   register RTX_CODE code;
   register rtx copy;
   register RTX_CODE code;
+#endif
 
   if (RTX_UNCHANGING_P (orig) || MEM_IN_STRUCT_P (orig))
     return orig;
 
   if (RTX_UNCHANGING_P (orig) || MEM_IN_STRUCT_P (orig))
     return orig;
@@ -4396,7 +5463,7 @@ copy_rtx_unchanging (orig)
   PUT_MODE (copy, GET_MODE (orig));
   RTX_UNCHANGING_P (copy) = 1;
   
   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
         GET_RTX_LENGTH (GET_CODE (copy)) * sizeof (rtx));
   return copy;
 #endif
@@ -4405,6 +5472,7 @@ copy_rtx_unchanging (orig)
 static void
 fatal (s, a1, a2)
      char *s;
 static void
 fatal (s, a1, a2)
      char *s;
+     char *a1, *a2;
 {
   fprintf (stderr, "genattrtab: ");
   fprintf (stderr, s, a1, a2);
 {
   fprintf (stderr, "genattrtab: ");
   fprintf (stderr, s, a1, a2);
@@ -4420,6 +5488,45 @@ fancy_abort ()
 {
   fatal ("Internal gcc 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)
 \f
 int
 main (argc, argv)
@@ -4430,11 +5537,22 @@ main (argc, argv)
   FILE *infile;
   register int c;
   struct attr_desc *attr;
   FILE *infile;
   register int c;
   struct attr_desc *attr;
-  struct attr_value *av;
   struct insn_def *id;
   rtx tem;
   int i;
 
   struct insn_def *id;
   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);
   obstack_init (rtl_obstack);
   obstack_init (hash_obstack);
   obstack_init (temp_obstack);
@@ -4453,9 +5571,9 @@ main (argc, argv)
 
   /* Set up true and false rtx's */
   true_rtx = rtx_alloc (CONST_INT);
 
   /* Set up true and false rtx's */
   true_rtx = rtx_alloc (CONST_INT);
-  XINT (true_rtx, 0) = 1;
+  XWINT (true_rtx, 0) = 1;
   false_rtx = rtx_alloc (CONST_INT);
   false_rtx = rtx_alloc (CONST_INT);
-  XINT (false_rtx, 0) = 0;
+  XWINT (false_rtx, 0) = 0;
   RTX_UNCHANGING_P (true_rtx) = RTX_UNCHANGING_P (false_rtx) = 1;
   RTX_INTEGRATED_P (true_rtx) = RTX_INTEGRATED_P (false_rtx) = 1;
 
   RTX_UNCHANGING_P (true_rtx) = RTX_UNCHANGING_P (false_rtx) = 1;
   RTX_INTEGRATED_P (true_rtx) = RTX_INTEGRATED_P (false_rtx) = 1;
 
@@ -4532,13 +5650,13 @@ from the machine description file `md'.  */\n\n");
   printf ("#define operands recog_operand\n\n");
 
   /* Make `insn_alternatives'.  */
   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'.  */
   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;
   for (id = defs; id; id = id->next)
     if (id->insn_code >= 0)
       insn_n_alternatives[id->insn_code] = id->num_alternatives;
@@ -4558,7 +5676,7 @@ from the machine description file `md'.  */\n\n");
   /* Construct extra attributes for `length'.  */
   make_length_attrs ();
 
   /* 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
   optimize_attrs ();
 
   /* Now write out all the `gen_attr_...' routines.  Do these before the
@@ -4588,6 +5706,9 @@ from the machine description file `md'.  */\n\n");
   if (num_units)
     write_function_unit_info ();
 
   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 */
   fflush (stdout);
   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
   /* NOTREACHED */