OSDN Git Service

* config/alpha/vms.h (INCLUDE_DEFAULTS): Add /gnu/lib/gcc-lib/include.
[pf3gnuchains/gcc-fork.git] / gcc / ch / actions.c
index de6087c..b8b06eb 100644 (file)
@@ -1,5 +1,6 @@
 /* Implement actions for CHILL.
-   Copyright (C) 1992, 93, 1994, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1992, 1993, 1994, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Authors: Per Bothner, Bill Cox, Michael Tiemann, Michael North
 
 This file is part of GNU CC.
@@ -31,22 +32,23 @@ Boston, MA 02111-1307, USA.  */
 #include "obstack.h"
 #include "assert.h"
 #include "toplev.h"
-
-static int id_cmp PROTO ((tree *, tree *));
-static void warn_unhandled PROTO ((const char *));
-static tree adjust_return_value PROTO ((tree, const char *));
-static tree update_else_range_for_int_const PROTO ((tree, tree));
-static tree update_else_range_for_range PROTO ((tree, tree, tree));
-static tree update_else_range_for_range_expr PROTO ((tree, tree));
-static tree update_else_range_for_type PROTO ((tree, tree));
-static tree compute_else_range PROTO ((tree, tree, int));
-static tree check_case_value PROTO ((tree, tree));
-static void chill_handle_case_label_range PROTO ((tree, tree, tree));
-static tree chill_handle_multi_case_label_range PROTO ((tree, tree, tree));
-static tree chill_handle_multi_case_else_label PROTO ((tree));
-static tree chill_handle_multi_case_label PROTO ((tree, tree));
-static tree chill_handle_multi_case_label_list PROTO ((tree, tree));
-static void print_missing_cases PROTO ((tree, const unsigned char *, long));
+#include "diagnostic.h"
+
+static int id_cmp PARAMS ((tree *, tree *));
+static void warn_unhandled PARAMS ((const char *));
+static tree adjust_return_value PARAMS ((tree, const char *));
+static tree update_else_range_for_int_const PARAMS ((tree, tree));
+static tree update_else_range_for_range PARAMS ((tree, tree, tree));
+static tree update_else_range_for_range_expr PARAMS ((tree, tree));
+static tree update_else_range_for_type PARAMS ((tree, tree));
+static tree compute_else_range PARAMS ((tree, tree, int));
+static tree check_case_value PARAMS ((tree, tree));
+static void chill_handle_case_label_range PARAMS ((tree, tree, tree));
+static tree chill_handle_multi_case_label_range PARAMS ((tree, tree, tree));
+static tree chill_handle_multi_case_else_label PARAMS ((tree));
+static tree chill_handle_multi_case_label PARAMS ((tree, tree));
+static tree chill_handle_multi_case_label_list PARAMS ((tree, tree));
+static void print_missing_cases PARAMS ((tree, const unsigned char *, long));
 
 #define obstack_chunk_alloc xmalloc
 #define obstack_chunk_free free
@@ -172,7 +174,7 @@ build_exception_variant (type, raises)
       /* NULL terminator for list.  */
       a[i] = NULL_TREE;
       qsort (a, i, sizeof (tree),
-            (int (*) PROTO((const void*, const void*))) id_cmp);
+            (int (*) PARAMS ((const void*, const void*))) id_cmp);
       while (i--)
        TREE_CHAIN (a[i]) = a[i+1];
       raises = a[0];
@@ -466,13 +468,12 @@ check_non_null (expr)
   return expr;
 }
 \f
-/*
- * There are four conditions to generate a runtime check:
- *    1) assigning a longer INT to a shorter (signs irrelevant)
- *    2) assigning a signed to an unsigned
- *    3) assigning an unsigned to a signed of the same size.
- *    4) TYPE is a discrete subrange
- */
+/*  There are four conditions to generate a runtime check:
+    1) assigning a longer INT to a shorter (signs irrelevant)
+    2) assigning a signed to an unsigned
+    3) assigning an unsigned to a signed of the same size.
+    4) TYPE is a discrete subrange  */
+
 tree
 chill_convert_for_assignment (type, expr, place)
      tree type, expr;
@@ -558,17 +559,18 @@ chill_convert_for_assignment (type, expr, place)
     }
   result = convert (type, expr);
 
-  /* If the type is a array of PACK bits and the expression is an array constructor,
-     then build a CONSTRUCTOR for a bitstring.  Bitstrings are zero based, so
-     decrement the value of each CONSTRUCTOR element by the amount of the lower
-     bound of the array.  */
+  /* If the type is a array of PACK bits and the expression is an array
+     constructor, then build a CONSTRUCTOR for a bitstring.  Bitstrings are
+     zero based, so decrement the value of each CONSTRUCTOR element by the
+     amount of the lower bound of the array.  */
   if (TREE_CODE (type) == ARRAY_TYPE && TYPE_PACKED (type)
       && TREE_CODE (result) == CONSTRUCTOR)
     {
       tree domain_min = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
       tree new_list = NULL_TREE;
-      long index;
+      unsigned HOST_WIDE_INT index;
       tree element;
+
       for (element = TREE_OPERAND (result, 1);
           element != NULL_TREE;
           element = TREE_CHAIN (element))
@@ -579,18 +581,21 @@ chill_convert_for_assignment (type, expr, place)
              switch (TREE_CODE (purpose))
                {
                case INTEGER_CST:
-                 new_list = tree_cons (NULL_TREE,
-                                       size_binop (MINUS_EXPR, purpose, domain_min),
-                                       new_list);
+                 new_list
+                   = tree_cons (NULL_TREE,
+                                fold (build (MINUS_EXPR, TREE_TYPE (purpose),
+                                             purpose, domain_min)),
+                                new_list);
                  break;
                case RANGE_EXPR:
-                 for (index  = TREE_INT_CST_LOW (TREE_OPERAND (purpose, 0));
+                 for (index = TREE_INT_CST_LOW (TREE_OPERAND (purpose, 0));
                       index <= TREE_INT_CST_LOW (TREE_OPERAND (purpose, 1));
                       index++)
                    new_list = tree_cons (NULL_TREE,
-                                         size_binop (MINUS_EXPR,
-                                                     build_int_2 (index, 0),
-                                                     domain_min),
+                                         fold (build (MINUS_EXPR,
+                                                      integer_type_node,
+                                                      build_int_2 (index, 0),
+                                                      domain_min)),
                                          new_list);
                  break;
                default:
@@ -788,7 +793,7 @@ static tree
 update_else_range_for_int_const (else_range, label)
      tree else_range, label;
 {
-  int  lowval, highval;
+  int  lowval = 0, highval = 0;
   int  label_value = TREE_INT_CST_LOW (label);
   tree this_range, prev_range, new_range;
 
@@ -846,7 +851,7 @@ update_else_range_for_range (else_range, low_target, high_target)
      tree else_range, low_target, high_target;
 {
   tree this_range, prev_range, new_range, next_range;
-  int  low_range_val, high_range_val;
+  int  low_range_val = 0, high_range_val = 0;
   int  low_target_val  = TREE_INT_CST_LOW (low_target);
   int  high_target_val = TREE_INT_CST_LOW (high_target);
 
@@ -1274,12 +1279,12 @@ chill_handle_multi_case_label (selector, label)
          tree high = TREE_OPERAND (label, 1);
          if (TREE_CODE (low) != INTEGER_CST)
            {
-             error ("Lower bound of range must be a discrete literal expression");
+             error ("lower bound of range must be a discrete literal expression");
              expr = error_mark_node;
            }
          if (TREE_CODE (high) != INTEGER_CST)
            {
-             error ("Upper bound of range must be a discrete literal expression");
+             error ("upper bound of range must be a discrete literal expression");
              expr = error_mark_node;
            }
          if (expr != error_mark_node)
@@ -1303,7 +1308,7 @@ chill_handle_multi_case_label (selector, label)
     }
   else
     {
-      error ("The CASE label is not valid");
+      error ("CASE label is not valid");
       expr = error_mark_node;
     }
 
@@ -1349,7 +1354,7 @@ build_multi_case_selector_expression (selector_list, label_spec)
     }
 
   if (labels != NULL_TREE || selector != NULL_TREE)
-    error ("The number of CASE selectors does not match the number of CASE label lists");
+    error ("number of CASE selectors does not match the number of CASE label lists");
 
   return larg;
 }
@@ -1449,7 +1454,8 @@ check_missing_cases (type)
   unsigned char *cases_seen;
   /* The number of possible selector values. */
   HOST_WIDE_INT size = all_cases_count (type, &is_sparse);
-  long bytes_needed = (size+HOST_BITS_PER_CHAR)/HOST_BITS_PER_CHAR;
+  HOST_WIDE_INT bytes_needed
+    = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
 
   if (size == -1)
     warning ("CASE selector with variable range");
@@ -1459,7 +1465,7 @@ check_missing_cases (type)
     warning ("too many cases to do CASE completeness testing");
   else
     {
-      bzero (cases_seen, bytes_needed);
+      memset (cases_seen, 0, bytes_needed);
       mark_seen_cases (type, cases_seen, size, is_sparse);
       print_missing_cases (type, cases_seen, size);
       free (cases_seen);
@@ -1597,7 +1603,7 @@ chill_expand_assignment (lhs, modifycode, rhs)
          tree type = TREE_TYPE (decl);
          if (CH_IS_BUFFER_MODE (type) || CH_IS_EVENT_MODE (type))
            {
-             error ("You may not assign a value to a BUFFER or EVENT location");
+             error ("you may not assign a value to a BUFFER or EVENT location");
              return;
            }
        }
@@ -1697,11 +1703,12 @@ chill_expand_assignment (lhs, modifycode, rhs)
       tree from_pos = save_expr (TREE_OPERAND (lhs, 0));
       tree set = TREE_OPERAND (lhs, 1);
       tree domain = TYPE_DOMAIN (TREE_TYPE (set));
-      tree set_length = size_binop (PLUS_EXPR,
-                                   size_binop (MINUS_EXPR,
-                                               TYPE_MAX_VALUE (domain),
-                                               TYPE_MIN_VALUE (domain)),
-                                   integer_one_node);
+      tree set_length
+       = fold (build (PLUS_EXPR, integer_type_node,
+                      fold (build (MINUS_EXPR, integer_type_node,
+                                   TYPE_MAX_VALUE (domain),
+                                   TYPE_MIN_VALUE (domain))),
+                      integer_one_node));
       tree filename = force_addr_of (get_chill_filename());
       
       if (TREE_CODE (TREE_TYPE (lhs)) != BOOLEAN_TYPE)
@@ -1742,7 +1749,7 @@ chill_expand_assignment (lhs, modifycode, rhs)
                            NULL_TREE)))))))));
     }
 
-  /* The following is probably superceded by the
+  /* The following is probably superseded by the
      above code for SET_IN_EXPR. FIXME! */
   else if (TREE_CODE (lhs) == BIT_FIELD_REF)
     {
@@ -1750,19 +1757,22 @@ chill_expand_assignment (lhs, modifycode, rhs)
       tree numbits = TREE_OPERAND (lhs, 1);
       tree from_pos = save_expr (TREE_OPERAND (lhs, 2));
       tree domain = TYPE_DOMAIN (TREE_TYPE (set));
-      tree set_length = size_binop (PLUS_EXPR,
-                                   size_binop (MINUS_EXPR,
-                                               TYPE_MAX_VALUE (domain),
-                                               TYPE_MIN_VALUE (domain)),
-                                   integer_one_node);
+      tree set_length
+       = fold (build (PLUS_EXPR, integer_type_node,
+                      fold (build (MINUS_EXPR, integer_type_node,
+                                   TYPE_MAX_VALUE (domain),
+                                   TYPE_MIN_VALUE (domain))),
+                      integer_one_node));
       tree filename = force_addr_of (get_chill_filename());
       tree to_pos;
+
       switch (TREE_CODE (TREE_TYPE (rhs)))
        {
        case SET_TYPE:
-         to_pos = size_binop (MINUS_EXPR,
-                              size_binop (PLUS_EXPR, from_pos, numbits),
-                              integer_one_node);
+         to_pos = fold (build (MINUS_EXPR, integer_type_node,
+                               fold (build (PLUS_EXPR, integer_type_node,
+                                            from_pos, numbits)),
+                               integer_one_node));
          break;
        case BOOLEAN_TYPE:
          to_pos = from_pos;
@@ -1801,7 +1811,7 @@ expand_varying_length_assignment (lhs, rhs)
       
   if (! CH_LOCATION_P (lhs))
     {
-      error ("Can only set LENGTH of array location");
+      error ("can only set LENGTH of array location");
       return;
     }
 
@@ -1812,7 +1822,7 @@ expand_varying_length_assignment (lhs, rhs)
   min_domain_val = TYPE_MIN_VALUE (TYPE_DOMAIN (base_array));
 
   lhs = build_component_ref (lhs, var_length_id);
-  rhs = size_binop (MINUS_EXPR, rhs, min_domain_val);
+  rhs = fold (build (MINUS_EXPR, TREE_TYPE (rhs), rhs, min_domain_val));
 
   expand_expr_stmt (build_chill_modify_expr (lhs, rhs));
 }