OSDN Git Service

(notice_cc_update): Set CC_FCOMI is this is a float compare.
[pf3gnuchains/gcc-fork.git] / gcc / genrecog.c
index d8b64a3..b07c70f 100644 (file)
@@ -1,5 +1,5 @@
 /* Generate code from machine description to recognize rtl as insns.
-   Copyright (C) 1987, 1988, 1992 Free Software Foundation, Inc.
+   Copyright (C) 1987, 88, 92, 93, 94, 1995 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -15,7 +15,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU CC; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 
 /* This program is used to produce insn-recog.c, which contains
@@ -119,7 +120,7 @@ static int next_number;
 static int next_insn_code;
 
 /* Similar, but counts all expressions in the MD file; used for
-   error messages. */
+   error messages.  */
 
 static int next_index;
 
@@ -158,32 +159,43 @@ static struct pred_table
      {"push_operand", {MEM}},
      {"memory_operand", {SUBREG, MEM}},
      {"indirect_operand", {SUBREG, MEM}},
-     {"comparison_operation", {EQ, NE, LE, LT, GE, LT, LEU, LTU, GEU, GTU}},
+     {"comparison_operator", {EQ, NE, LE, LT, GE, GT, LEU, LTU, GEU, GTU}},
      {"mode_independent_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,
                                   LABEL_REF, SUBREG, REG, MEM}}};
 
 #define NUM_KNOWN_PREDS (sizeof preds / sizeof preds[0])
 
-static int try_merge_1 ();
-static int no_same_mode ();
-static int same_codes ();
-static int same_modes ();
-char *xmalloc ();
-static struct decision *add_to_sequence ();
-static struct decision_head merge_trees ();
-static struct decision *try_merge_2 ();
-static void write_subroutine ();
-static void print_code ();
-static void clear_codes ();
-static void clear_modes ();
-static void change_state ();
-static void write_tree ();
-static char *copystr ();
-static char *concat ();
-static void fatal ();
-void fancy_abort ();
-static void mybzero ();
-static void mybcopy ();
+static struct decision_head make_insn_sequence PROTO((rtx, enum routine_type));
+static struct decision *add_to_sequence PROTO((rtx, struct decision_head *,
+                                              char *));
+static int not_both_true       PROTO((struct decision *, struct decision *,
+                                      int));
+static int position_merit      PROTO((struct decision *, enum machine_mode,
+                                      enum rtx_code));
+static struct decision_head merge_trees PROTO((struct decision_head,
+                                              struct decision_head));
+static int break_out_subroutines PROTO((struct decision_head,
+                                       enum routine_type, int));
+static void write_subroutine   PROTO((struct decision *, enum routine_type));
+static void write_tree_1       PROTO((struct decision *, char *,
+                                      struct decision *, enum routine_type));
+static void print_code         PROTO((enum rtx_code));
+static int same_codes          PROTO((struct decision *, enum rtx_code));
+static void clear_codes                PROTO((struct decision *));
+static int same_modes          PROTO((struct decision *, enum machine_mode));
+static void clear_modes                PROTO((struct decision *));
+static void write_tree         PROTO((struct decision *, char *,
+                                      struct decision *, int,
+                                      enum routine_type));
+static void change_state       PROTO((char *, char *, int));
+static char *copystr           PROTO((char *));
+static void mybzero            PROTO((char *, unsigned));
+static void mybcopy            PROTO((char *, char *, unsigned));
+static char *concat            PROTO((char *, char *));
+static void fatal              PROTO((char *));
+char *xrealloc                 PROTO((char *, unsigned));
+char *xmalloc                  PROTO((unsigned));
+void fancy_abort               PROTO((void));
 \f
 /* Construct and return a sequence of decisions
    that will recognize INSN.
@@ -361,36 +373,46 @@ add_to_sequence (pattern, last, position)
 
         Finally, if we know that the predicate does not allow CONST_INT, we
         know that the only way the predicate can match is if the modes match
-        (here we use the kluge of relying on the fact that "address_operand"
+        (here we use the kludge of relying on the fact that "address_operand"
         accepts CONST_INT; otherwise, it would have to be a special case),
         so we can test the mode (but we need not).  This fact should
         considerably simplify the generated code.  */
 
       if (new->tests)
-       for (i = 0; i < NUM_KNOWN_PREDS; i++)
-         if (! strcmp (preds[i].name, new->tests))
-           {
-             int j;
-             int allows_const_int = 0;
+       {
+         for (i = 0; i < NUM_KNOWN_PREDS; i++)
+           if (! strcmp (preds[i].name, new->tests))
+             {
+               int j;
+               int allows_const_int = 0;
 
-             new->pred = i;
+               new->pred = i;
 
-             if (preds[i].codes[1] == 0 && new->code == UNKNOWN)
-               {
-                 new->code = preds[i].codes[0];
-                 if (! strcmp ("const_int_operand", new->tests))
-                   new->tests = 0, new->pred = -1;
-               }
+               if (preds[i].codes[1] == 0 && new->code == UNKNOWN)
+                 {
+                   new->code = preds[i].codes[0];
+                   if (! strcmp ("const_int_operand", new->tests))
+                     new->tests = 0, new->pred = -1;
+                 }
 
-             for (j = 0; j < NUM_RTX_CODE && preds[i].codes[j] != 0; j++)
-               if (preds[i].codes[j] == CONST_INT)
-                 allows_const_int = 1;
+               for (j = 0; j < NUM_RTX_CODE && preds[i].codes[j] != 0; j++)
+                 if (preds[i].codes[j] == CONST_INT)
+                   allows_const_int = 1;
 
-             if (! allows_const_int)
-               new->enforce_mode = new->ignore_mode= 1;
+               if (! allows_const_int)
+                 new->enforce_mode = new->ignore_mode= 1;
 
-             break;
-           }
+               break;
+             }
+
+#ifdef PREDICATE_CODES
+         /* If the port has a list of the predicates it uses but omits
+            one, warn.  */
+         if (i == NUM_KNOWN_PREDS)
+           fprintf (stderr, "Warning: `%s' not in PREDICATE_CODES\n",
+                    new->tests);
+#endif
+       }
 
       if (code == MATCH_OPERATOR || code == MATCH_PARALLEL)
        {
@@ -476,7 +498,7 @@ add_to_sequence (pattern, last, position)
       if (GET_CODE (XEXP (pattern, 0)) == CC0)
        break;
 
-      /* ... fall through ... */
+      /* ... fall through ...  */
       
     case COMPARE:
       /* Enforce the mode on the first operand to avoid ambiguous insns.  */
@@ -550,7 +572,7 @@ not_both_true (d1, d2, toplevel)
   struct decision *p1, *p2;
 
   /* If they are both to test modes and the modes are different, they aren't
-     both true.  Similarly for codes, integer elements, and vector lengths. */
+     both true.  Similarly for codes, integer elements, and vector lengths.  */
 
   if ((d1->enforce_mode && d2->enforce_mode
        && d1->mode != VOIDmode && d2->mode != VOIDmode && d1->mode != d2->mode)
@@ -653,7 +675,7 @@ static int
 position_merit (p, mode, code)
      struct decision *p;
      enum machine_mode mode;
-     RTX_CODE code;
+     enum rtx_code code;
 {
   enum machine_mode p_mode;
 
@@ -793,7 +815,8 @@ merge_trees (oldh, addh)
                      struct decision *split
                        = (struct decision *) xmalloc (sizeof (struct decision));
 
-                     mybcopy (old, split, sizeof (struct decision));
+                     mybcopy ((char *) old, (char *) split,
+                              sizeof (struct decision));
 
                      old->success.first = old->success.last = split;
                      old->c_test = 0;
@@ -819,7 +842,8 @@ merge_trees (oldh, addh)
                      struct decision *split
                        = (struct decision *) xmalloc (sizeof (struct decision));
 
-                     mybcopy (add, split, sizeof (struct decision));
+                     mybcopy ((char *) add, (char *) split,
+                              sizeof (struct decision));
 
                      add->success.first = add->success.last = split;
                      add->c_test = 0;
@@ -932,7 +956,7 @@ break_out_subroutines (head, type, initial)
      int initial;
 {
   int size = 0;
-  struct decision *node, *sub;
+  struct decision *sub;
 
   for (sub = head.first; sub; sub = sub->next)
     size += 1 + break_out_subroutines (sub->success, type, 0);
@@ -1018,7 +1042,7 @@ static char *indents[]
    resulting function.   We do check for when every test is the same mode
    or code.  */
 
-void
+static void
 write_tree_1 (tree, prevpos, afterward, type)
      struct decision *tree;
      char *prevpos;
@@ -1115,7 +1139,7 @@ write_tree_1 (tree, prevpos, afterward, type)
             seen any of the codes that are valid for the predicate, we
             can write a series of "case" statement, one for each possible
             code.  Since we are already in a switch, these redundant tests
-            are very cheap and will reduce the number of predicate called. */
+            are very cheap and will reduce the number of predicate called.  */
 
          if (p->pred >= 0)
            {
@@ -1285,7 +1309,7 @@ write_tree_1 (tree, prevpos, afterward, type)
        }
 
       /* Now that most mode and code tests have been done, we can write out
-        a label for an inner node, if we haven't already. */
+        a label for an inner node, if we haven't already.  */
       if (p->label_needed)
        printf ("%sL%d:\n", indents[indent - 2], p->number);
 
@@ -1319,13 +1343,22 @@ write_tree_1 (tree, prevpos, afterward, type)
          if (p->test_elt_one_int)
            printf ("XINT (x%d, 1) == %d && ", depth, p->elt_one_int);
          if (p->test_elt_zero_wide)
-           printf (
+           {
+             /* Set offset to 1 iff the number might get propagated to
+                unsigned long by ANSI C rules, else 0.
+                Prospective hosts are required to have at least 32 bit
+                ints, and integer constants in machine descriptions
+                must fit in 32 bit, thus it suffices to check only
+                for 1 << 31 .  */
+             HOST_WIDE_INT offset = p->elt_zero_wide == -2147483647 - 1;
+             printf (
 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-                   "XWINT (x%d, 0) == %d && ",
+                      "XWINT (x%d, 0) == %d%s && ",
 #else
-                   "XWINT (x%d, 0) == %ld && ",
+                      "XWINT (x%d, 0) == %ld%s && ",
 #endif
-                   depth, p->elt_zero_wide);
+                      depth, p->elt_zero_wide + offset, offset ? "-1" : "");
+           }
          if (p->veclen)
            printf ("XVECLEN (x%d, 0) == %d && ", depth, p->veclen);
          if (p->dupno >= 0)
@@ -1441,7 +1474,7 @@ write_tree_1 (tree, prevpos, afterward, type)
 
 static void
 print_code (code)
-     RTX_CODE code;
+     enum rtx_code code;
 {
   register char *p1;
   for (p1 = GET_RTX_NAME (code); *p1; p1++)
@@ -1456,7 +1489,7 @@ print_code (code)
 static int
 same_codes (p, code)
      register struct decision *p;
-     register RTX_CODE code;
+     register enum rtx_code code;
 {
   for (; p; p = p->next)
     if (p->code != code)
@@ -1521,7 +1554,10 @@ write_tree (tree, prevpos, afterward, initial, type)
        {
          printf ("  tem = %s_%d (x0, insn%s);\n",
                  name_prefix, tree->subroutine_number, call_suffix);
-         printf ("  if (tem >= 0) return tem;\n");
+         if (type == SPLIT)
+           printf ("  if (tem != 0) return tem;\n");
+         else
+           printf ("  if (tem >= 0) return tem;\n");
          change_state (tree->position, afterward->position, 2);
          printf ("  goto L%d;\n", afterward->number);
        }
@@ -1649,11 +1685,11 @@ xmalloc (size)
 }
 
 static void
-fatal (s, a1, a2)
+fatal (s)
      char *s;
 {
   fprintf (stderr, "genrecog: ");
-  fprintf (stderr, s, a1, a2);
+  fprintf (stderr, s);
   fprintf (stderr, "\n");
   fprintf (stderr, "after %d definitions\n", next_index);
   exit (FATAL_EXIT_CODE);