cp-tree.h (lang_identifier): Remove class_value.
[gcc.git] / gcc / tree-gimple.c
index 18bc2f8afa36aa57eb3a8be8688df9d8e3343554..97a34a1182ae59a0d05f8eccb2cb8a7ab38f1d07 100644 (file)
@@ -1,5 +1,5 @@
 /* Functions to analyze and validate GIMPLE trees.
-   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
    Contributed by Diego Novillo <dnovillo@redhat.com>
    Rewritten by Jason Merrill <jason@redhat.com>
 
@@ -38,155 +38,141 @@ Boston, MA 02111-1307, USA.  */
 
        http://www-acaps.cs.mcgill.ca/info/McCAT/McCAT.html
 
-   function:
-     FUNCTION_DECL
-       DECL_SAVED_TREE -> block
-   block:
-     BIND_EXPR
-       BIND_EXPR_VARS -> DECL chain
-       BIND_EXPR_BLOCK -> BLOCK
-       BIND_EXPR_BODY -> compound-stmt
-   compound-stmt:
-     COMPOUND_EXPR
-       op0 -> non-compound-stmt
-       op1 -> stmt
-     | EXPR_VEC
-       (or other alternate solution)
-   stmt: compound-stmt | non-compound-stmt
-   non-compound-stmt:
-     block
-     | if-stmt
-     | switch-stmt
-     | jump-stmt
-     | label-stmt
-     | try-stmt
-     | modify-stmt
-     | call-stmt
-   if-stmt:
-     COND_EXPR
-       op0 -> condition
-       op1 -> stmt
-       op2 -> stmt
-   switch-stmt:
-     SWITCH_EXPR
-       op0 -> val
-       op1 -> stmt
-       op2 -> array of case labels (as LABEL_DECLs?)
-         FIXME: add case value info
-   jump-stmt:
-       GOTO_EXPR
-         op0 -> LABEL_DECL | '*' ID
-     | RETURN_EXPR
-         op0 -> modify-stmt | NULL_TREE
-        (maybe -> RESULT_DECL | NULL_TREE? seems like some of expand_return
-         depends on getting a MODIFY_EXPR.)
-     | THROW_EXPR?  do we need/want such a thing for opts, perhaps
-         to generate an ERT_THROW region?  I think so.
-        Hmm...this would only work at the GIMPLE level, where we know that
-          the call args don't have any EH impact.  Perhaps
-          annotation of the CALL_EXPR would work better.
-     | RESX_EXPR
-   label-stmt:
-     LABEL_EXPR
-         op0 -> LABEL_DECL
-     | CASE_LABEL_EXPR
-         CASE_LOW -> val | NULL_TREE
-         CASE_HIGH -> val | NULL_TREE
-        CASE_LABEL -> LABEL_DECL  FIXME
-   try-stmt:
-     TRY_CATCH_EXPR
-       op0 -> stmt
-       op1 -> handler
-     | TRY_FINALLY_EXPR
-       op0 -> stmt
-       op1 -> stmt
-   handler:
-     catch-seq
-     | EH_FILTER_EXPR
-     | stmt
-   modify-stmt:
-     MODIFY_EXPR
-       op0 -> lhs
-       op1 -> rhs
-   call-stmt: CALL_EXPR
-     op0 -> ID | '&' ID
-     op1 -> arglist
-
-   addr-expr-arg : compref | ID
-   lhs: addr-expr-arg | '*' ID | bitfieldref
-   min-lval: ID | '*' ID
-   bitfieldref :
-     BIT_FIELD_REF
-       op0 -> compref | min-lval
-       op1 -> CONST
-       op2 -> CONST
-   compref :
-     COMPONENT_REF
-       op0 -> compref | min-lval
-     | ARRAY_REF
-       op0 -> compref | min-lval
-       op1 -> val
-     | REALPART_EXPR
-     | IMAGPART_EXPR
-
-   condition : val | val relop val
-   val : ID | CONST
-
-   rhs        : varname | CONST
-             | '*' ID
-             | '&' addr-expr-arg
-             | call_expr
-             | unop val
-             | val binop val
-             | '(' cast ')' val
-
-             (cast here stands for all valid C typecasts)
-
-      unop
-             : '+'
-             | '-'
-             | '!'
-             | '~'
-
-      binop
-             : relop | '-'
-             | '+'
-             | '/'
-             | '*'
-             | '%'
-             | '&'
-             | '|'
-             | '<<'
-             | '>>'
-             | '^'
-
-      relop
-             : '<'
-             | '<='
-             | '>'
-             | '>='
-             | '=='
-             | '!='
-
+   function    : FUNCTION_DECL
+                       DECL_SAVED_TREE -> compound-stmt
+
+   compound-stmt: STATEMENT_LIST
+                       members -> stmt
+
+   stmt                : block
+               | if-stmt
+               | switch-stmt
+               | goto-stmt
+               | return-stmt
+               | resx-stmt
+               | label-stmt
+               | try-stmt
+               | modify-stmt
+               | call-stmt
+
+   block       : BIND_EXPR
+                       BIND_EXPR_VARS -> chain of DECLs
+                       BIND_EXPR_BLOCK -> BLOCK
+                       BIND_EXPR_BODY -> compound-stmt
+
+   if-stmt     : COND_EXPR
+                       op0 -> condition
+                       op1 -> compound-stmt
+                       op2 -> compound-stmt
+
+   switch-stmt : SWITCH_EXPR
+                       op0 -> val
+                       op1 -> NULL
+                       op2 -> TREE_VEC of CASE_LABEL_EXPRs
+                           The CASE_LABEL_EXPRs are sorted by CASE_LOW,
+                           and default is last.
+
+   goto-stmt   : GOTO_EXPR
+                       op0 -> LABEL_DECL | val
+
+   return-stmt : RETURN_EXPR
+                       op0 -> return-value
+
+   return-value        : NULL
+               | RESULT_DECL
+               | MODIFY_EXPR
+                       op0 -> RESULT_DECL
+                       op1 -> lhs
+
+   resx-stmt   : RESX_EXPR
+
+   label-stmt  : LABEL_EXPR
+                       op0 -> LABEL_DECL
+
+   try-stmt    : TRY_CATCH_EXPR
+                       op0 -> compound-stmt
+                       op1 -> handler
+               | TRY_FINALLY_EXPR
+                       op0 -> compound-stmt
+                       op1 -> compound-stmt
+
+   handler     : catch-seq
+               | EH_FILTER_EXPR
+               | compound-stmt
+
+   catch-seq   : STATEMENT_LIST
+                       members -> CATCH_EXPR
+
+   modify-stmt : MODIFY_EXPR
+                       op0 -> lhs
+                       op1 -> rhs
+
+   call-stmt   : CALL_EXPR
+                       op0 -> val | OBJ_TYPE_REF
+                       op1 -> call-arg-list
+
+   call-arg-list: TREE_LIST
+                       members -> lhs
+
+   addr-expr-arg: ID
+               | compref
+
+   lhs         : addr-expr-arg
+               | '*' val
+               | bitfieldref
+
+   min-lval    : ID
+               | '*' val
+
+   bitfieldref : BIT_FIELD_REF
+                       op0 -> inner-compref
+                       op1 -> CONST
+                       op2 -> var
+
+   compref     : inner-compref
+               | REALPART_EXPR
+                       op0 -> inner-compref
+               | IMAGPART_EXPR
+                       op0 -> inner-compref
+
+   inner-compref: min-lval
+               | COMPONENT_REF
+                       op0 -> inner-compref
+                       op1 -> FIELD_DECL
+                       op2 -> val
+               | ARRAY_REF
+                       op0 -> inner-compref
+                       op1 -> val
+                       op2 -> val
+                       op3 -> val
+               | ARRAY_RANGE_REF
+                       op0 -> inner-compref
+                       op1 -> val
+                       op2 -> val
+                       op3 -> val
+               | VIEW_CONVERT_EXPR
+                       op0 -> inner-compref
+
+   condition   : val
+               | val RELOP val
+
+   val         : ID
+               | CONST
+
+   rhs         : lhs
+               | CONST
+               | '&' addr-expr-arg
+               | call_expr
+               | UNOP val
+               | val BINOP val
+               | val RELOP val
 */
 
 static inline bool is_gimple_id (tree);
 
 /* Validation of GIMPLE expressions.  */
 
-/* Return nonzero if T is a GIMPLE RHS:
-
-      rhs     : varname | CONST
-             | '*' ID
-             | '&' varname_or_temp
-             | call_expr
-             | unop val
-             | val binop val
-             | '(' cast ')' val
-             | <CONSTRUCTOR <gimple_val ...>>
-
-   The last option is only valid GIMPLE for vector and complex types;
-   aggregate types should have their constructors decomposed.  */
+/* Return true if T is a GIMPLE RHS.  */
 
 bool
 is_gimple_rhs (tree t)
@@ -198,7 +184,7 @@ is_gimple_rhs (tree t)
     case '1':
     case '2':
     case '<':
-      return 1;
+      return true;
 
     default:
       break;
@@ -221,19 +207,17 @@ is_gimple_rhs (tree t)
     case STRING_CST:
     case COMPLEX_CST:
     case VECTOR_CST:
-      return 1;
+    case OBJ_TYPE_REF:
+      return true;
 
     default:
       break;
     }
 
-  if (is_gimple_lvalue (t) || is_gimple_val (t))
-    return 1;
-
-  return 0;
+  return is_gimple_lvalue (t) || is_gimple_val (t);
 }
 
-/* Returns nonzero if T is a valid CONSTRUCTOR component in GIMPLE, either
+/* Returns true if T is a valid CONSTRUCTOR component in GIMPLE, either
    a val or another CONSTRUCTOR.  */
 
 bool
@@ -243,7 +227,7 @@ is_gimple_constructor_elt (tree t)
          || TREE_CODE (t) == CONSTRUCTOR);
 }
 
-/*  Return nonzero if T is a valid LHS for a GIMPLE assignment expression.  */
+/*  Return true if T is a valid LHS for a GIMPLE assignment expression.  */
 
 bool
 is_gimple_lvalue (tree t)
@@ -255,12 +239,7 @@ is_gimple_lvalue (tree t)
          || TREE_CODE (t) == BIT_FIELD_REF);
 }
 
-
-/*  Return nonzero if T is a GIMPLE condition:
-
-      condexpr
-             : val
-             | val relop val  */
+/*  Return true if T is a GIMPLE condition.  */
 
 bool
 is_gimple_condexpr (tree t)
@@ -269,25 +248,21 @@ is_gimple_condexpr (tree t)
          || TREE_CODE_CLASS (TREE_CODE (t)) == '<');
 }
 
-
-/*  Return nonzero if T is a valid operand for '&':
-
-      varname
-             : arrayref
-             | compref
-             | ID     */
+/*  Return true if T is a valid operand for ADDR_EXPR.  */
 
 bool
 is_gimple_addr_expr_arg (tree t)
 {
   return (is_gimple_id (t)
          || TREE_CODE (t) == ARRAY_REF
+         || TREE_CODE (t) == ARRAY_RANGE_REF
          || TREE_CODE (t) == COMPONENT_REF
          || TREE_CODE (t) == REALPART_EXPR
-         || TREE_CODE (t) == IMAGPART_EXPR);
+         || TREE_CODE (t) == IMAGPART_EXPR
+         || TREE_CODE (t) == INDIRECT_REF);
 }
 
-/* Return nonzero if T is function invariant.  Or rather a restricted
+/* Return true if T is function invariant.  Or rather a restricted
    form of function invariant.  */
 
 bool
@@ -310,7 +285,7 @@ is_gimple_min_invariant (tree t)
     }
 }
 
-/* Return nonzero if T looks like a valid GIMPLE statement.  */
+/* Return true if T looks like a valid GIMPLE statement.  */
 
 bool
 is_gimple_stmt (tree t)
@@ -325,7 +300,7 @@ is_gimple_stmt (tree t)
     case BIND_EXPR:
     case COND_EXPR:
       /* These are only valid if they're void.  */
-      return VOID_TYPE_P (TREE_TYPE (t));
+      return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
 
     case SWITCH_EXPR:
     case GOTO_EXPR:
@@ -341,25 +316,23 @@ is_gimple_stmt (tree t)
     case PHI_NODE:
     case STATEMENT_LIST:
       /* These are always void.  */
-      return 1;
+      return true;
 
     case VA_ARG_EXPR:
       /* FIXME this should be lowered.  */
-      return 1;
+      return true;
 
-    case COMPOUND_EXPR:
-      /* FIXME should we work harder to make COMPOUND_EXPRs void?  */
     case CALL_EXPR:
     case MODIFY_EXPR:
       /* These are valid regardless of their type.  */
-      return 1;
+      return true;
 
     default:
-      return 0;
+      return false;
     }
 }
 
-/* Return nonzero if T is a variable.  */
+/* Return true if T is a variable.  */
 
 bool
 is_gimple_variable (tree t)
@@ -370,7 +343,7 @@ is_gimple_variable (tree t)
          || TREE_CODE (t) == SSA_NAME);
 }
 
-/*  Return nonzero if T is a GIMPLE identifier (something with an address).  */
+/*  Return true if T is a GIMPLE identifier (something with an address).  */
 
 static inline bool
 is_gimple_id (tree t)
@@ -382,8 +355,7 @@ is_gimple_id (tree t)
          || TREE_CODE (t) == STRING_CST);
 }
 
-/* Return nonzero if TYPE is a suitable type for a scalar register
-   variable.  */
+/* Return true if TYPE is a suitable type for a scalar register variable.  */
 
 bool
 is_gimple_reg_type (tree type)
@@ -393,7 +365,7 @@ is_gimple_reg_type (tree type)
 }
 
 
-/* Return nonzero if T is a scalar register variable.  */
+/* Return true if T is a scalar register variable.  */
 
 bool
 is_gimple_reg (tree t)
@@ -410,7 +382,7 @@ is_gimple_reg (tree t)
          && ! needs_to_live_in_memory (t));
 }
 
-/* Return nonzero if T is a GIMPLE variable whose address is not needed.  */
+/* Return true if T is a GIMPLE variable whose address is not needed.  */
 
 bool
 is_gimple_non_addressable (tree t)
@@ -423,8 +395,7 @@ is_gimple_non_addressable (tree t)
          && ! needs_to_live_in_memory (t));
 }
 
-/*  Return nonzero if T is a GIMPLE rvalue, i.e. an identifier or a
-    constant.  */
+/* Return true if T is a GIMPLE rvalue, i.e. an identifier or a constant.  */
 
 bool
 is_gimple_val (tree t)
@@ -433,7 +404,7 @@ is_gimple_val (tree t)
   if (is_gimple_variable (t)
       && is_gimple_reg_type (TREE_TYPE (t))
       && !is_gimple_reg (t))
-    return 0;
+    return false;
 
   /* FIXME make these decls.  That can happen only when we expose the
      entire landing-pad construct at the tree level.  */
@@ -444,12 +415,7 @@ is_gimple_val (tree t)
 }
 
 
-/*  Return true if T is a GIMPLE minimal lvalue, of the form
-
-    min_lval: ID | '(' '*' ID ')'
-
-    This never actually appears in the original SIMPLE grammar, but is
-    repeated in several places.  */
+/* Return true if T is a GIMPLE minimal lvalue.  */
 
 bool
 is_gimple_min_lval (tree t)
@@ -458,8 +424,7 @@ is_gimple_min_lval (tree t)
          || TREE_CODE (t) == INDIRECT_REF);
 }
 
-/*  Return nonzero if T is a typecast operation of the form
-    '(' cast ')' val.  */
+/* Return true if T is a typecast operation.  */
 
 bool
 is_gimple_cast (tree t)
@@ -472,6 +437,14 @@ is_gimple_cast (tree t)
           || TREE_CODE (t) == FIX_ROUND_EXPR);
 }
 
+/* Return true if T is a valid op0 of a CALL_EXPR.  */
+
+bool
+is_gimple_call_addr (tree t)
+{
+  return (TREE_CODE (t) == OBJ_TYPE_REF
+         || is_gimple_val (t));
+}
 
 /* If T makes a function call, return the corresponding CALL_EXPR operand.
    Otherwise, return NULL_TREE.  */
@@ -479,90 +452,13 @@ is_gimple_cast (tree t)
 tree
 get_call_expr_in (tree t)
 {
+  if (TREE_CODE (t) == MODIFY_EXPR)
+    t = TREE_OPERAND (t, 1);
   if (TREE_CODE (t) == CALL_EXPR)
     return t;
-  else if (TREE_CODE (t) == MODIFY_EXPR
-          && TREE_CODE (TREE_OPERAND (t, 1)) == CALL_EXPR)
-    return TREE_OPERAND (t, 1);
-  else if (TREE_CODE (t) == RETURN_EXPR
-           && TREE_OPERAND (t, 0)
-          && TREE_CODE (TREE_OPERAND (t, 0)) == MODIFY_EXPR
-          && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 1)) == CALL_EXPR)
-    return TREE_OPERAND (TREE_OPERAND (t, 0), 1);
-
   return NULL_TREE;
 }
 
-
-/* Given an _EXPR TOP, reorganize all of the nested _EXPRs with the same
-   code so that they only appear as the second operand.  This should only
-   be used for tree codes which are truly associative, such as
-   COMPOUND_EXPR and TRUTH_ANDIF_EXPR.  Arithmetic is not associative
-   enough, due to the limited precision of arithmetic data types.
-
-   This transformation is conservative; the operand 0 of a matching tree
-   node will only change if it is also a matching node.  */
-
-tree
-right_assocify_expr (tree top)
-{
-  tree *p = &top;
-  enum tree_code code = TREE_CODE (*p);
-  while (TREE_CODE (*p) == code)
-    {
-      tree cur = *p;
-      tree lhs = TREE_OPERAND (cur, 0);
-      if (TREE_CODE (lhs) == code)
-       {
-         /* There's a left-recursion.  If we have ((a, (b, c)), d), we
-            want to rearrange to (a, (b, (c, d))).  */
-         tree *q;
-
-         /* Replace cur with the lhs; move (a, *) up.  */
-         *p = lhs;
-
-         if (code == COMPOUND_EXPR)
-           {
-             /* We need to give (b, c) the type of c; previously lhs had
-                the type of b.  */
-             TREE_TYPE (lhs) = TREE_TYPE (cur);
-             if (TREE_SIDE_EFFECTS (cur))
-               TREE_SIDE_EFFECTS (lhs) = 1;
-           }
-
-         /* Walk through the op1 chain from there until we find something
-            with a different code.  In this case, c.  */
-         for (q = &TREE_OPERAND (lhs, 1); TREE_CODE (*q) == code;
-              q = &TREE_OPERAND (*q, 1))
-           TREE_TYPE (*q) = TREE_TYPE (cur);
-
-         /* Change (*, d) into (c, d).  */
-         TREE_OPERAND (cur, 0) = *q;
-
-         /* And plug it in where c used to be.  */
-         *q = cur;
-       }
-      else
-       p = &TREE_OPERAND (cur, 1);
-    }
-  return top;
-}
-
-/* Normalize the statement TOP.  If it is a COMPOUND_EXPR, reorganize it so
-   that we can traverse it without recursion.  If it is null, replace it
-   with a nop.  */
-
-tree
-rationalize_compound_expr (tree top)
-{
-  if (top == NULL_TREE)
-    top = build_empty_stmt ();
-  else if (TREE_CODE (top) == COMPOUND_EXPR)
-    top = right_assocify_expr (top);
-
-  return top;
-}
-
 /* Given a memory reference expression, return the base address.  Note that,
    in contrast with get_base_var, this will not recurse inside INDIRECT_REF
    expressions.  Therefore, given the reference PTR->FIELD, this function
@@ -571,34 +467,19 @@ rationalize_compound_expr (tree top)
 tree
 get_base_address (tree t)
 {
-  do
-    {
-      if (SSA_VAR_P (t)
-         || TREE_CODE (t) == STRING_CST
-         || TREE_CODE (t) == CONSTRUCTOR
-         || TREE_CODE (t) == INDIRECT_REF)
-       return t;
-
-      switch (TREE_CODE (t))
-       {
-       case ARRAY_REF:
-       case COMPONENT_REF:
-       case REALPART_EXPR:
-       case IMAGPART_EXPR:
-       case BIT_FIELD_REF:
-         t = TREE_OPERAND (t, 0);
-         break;
-
-       default:
-         return NULL_TREE;
-       }
-    }
-  while (t);
-
-  return t;
+  while (TREE_CODE (t) == REALPART_EXPR || TREE_CODE (t) == IMAGPART_EXPR
+        || handled_component_p (t))
+    t = TREE_OPERAND (t, 0);
+  
+  if (SSA_VAR_P (t)
+      || TREE_CODE (t) == STRING_CST
+      || TREE_CODE (t) == CONSTRUCTOR
+      || TREE_CODE (t) == INDIRECT_REF)
+    return t;
+  else
+    return NULL_TREE;
 }
 
-
 void
 recalculate_side_effects (tree t)
 {
@@ -614,7 +495,6 @@ recalculate_side_effects (tree t)
        case INIT_EXPR:
        case MODIFY_EXPR:
        case VA_ARG_EXPR:
-       case RTL_EXPR:
        case PREDECREMENT_EXPR:
        case PREINCREMENT_EXPR:
        case POSTDECREMENT_EXPR: