OSDN Git Service

2008-12-12 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / c-omp.c
index ac107e6..3be3729 100644 (file)
@@ -1,7 +1,7 @@
 /* This file contains routines to construct GNU OpenMP constructs, 
    called from parsing in the C and C++ front ends.
 
-   Copyright (C) 2005 Free Software Foundation, Inc.
+   Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc.
    Contributed by Richard Henderson <rth@redhat.com>,
                  Diego Novillo <dnovillo@redhat.com>.
 
@@ -9,7 +9,7 @@ This file is part of GCC.
 
 GCC is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
-Software Foundation; either version 2, or (at your option) any later
+Software Foundation; either version 3, or (at your option) any later
 version.
 
 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
@@ -18,9 +18,8 @@ FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
 
 You should have received a copy of the GNU General Public License
-along with GCC; see the file COPYING.  If not, write to the Free
-Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-02110-1301, USA.  */
+along with GCC; see the file COPYING3.  If not see
+<http://www.gnu.org/licenses/>.  */
 
 #include "config.h"
 #include "system.h"
@@ -30,7 +29,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
 #include "function.h"
 #include "c-common.h"
 #include "toplev.h"
-#include "tree-gimple.h"
+#include "gimple.h"
 #include "bitmap.h"
 #include "langhooks.h"
 
@@ -76,21 +75,37 @@ c_finish_omp_barrier (void)
   tree x;
 
   x = built_in_decls[BUILT_IN_GOMP_BARRIER];
-  x = build_function_call_expr (x, NULL);
+  x = build_call_expr (x, 0);
   add_stmt (x);
 }
 
 
-/* Complete a #pragma omp atomic construct.  The expression to be 
-   implemented atomically is LHS code= RHS.  */
+/* Complete a #pragma omp taskwait construct.  */
 
 void
+c_finish_omp_taskwait (void)
+{
+  tree x;
+
+  x = built_in_decls[BUILT_IN_GOMP_TASKWAIT];
+  x = build_call_expr (x, 0);
+  add_stmt (x);
+}
+
+
+/* Complete a #pragma omp atomic construct.  The expression to be 
+   implemented atomically is LHS code= RHS.  The value returned is
+   either error_mark_node (if the construct was erroneous) or an
+   OMP_ATOMIC node which should be added to the current statement tree
+   with add_stmt.  */
+
+tree
 c_finish_omp_atomic (enum tree_code code, tree lhs, tree rhs)
 {
   tree x, type, addr;
 
   if (lhs == error_mark_node || rhs == error_mark_node)
-    return;
+    return error_mark_node;
 
   /* ??? According to one reading of the OpenMP spec, complex type are
      supported, but there are no atomic stores for any architecture.
@@ -102,30 +117,39 @@ c_finish_omp_atomic (enum tree_code code, tree lhs, tree rhs)
       && !SCALAR_FLOAT_TYPE_P (type))
     {
       error ("invalid expression type for %<#pragma omp atomic%>");
-      return;
+      return error_mark_node;
     }
 
   /* ??? Validate that rhs does not overlap lhs.  */
 
   /* Take and save the address of the lhs.  From then on we'll reference it
      via indirection.  */
-  addr = build_unary_op (ADDR_EXPR, lhs, 0);
+  addr = build_unary_op (input_location, ADDR_EXPR, lhs, 0);
   if (addr == error_mark_node)
-    return;
+    return error_mark_node;
   addr = save_expr (addr);
-  lhs = build_indirect_ref (addr, NULL);
+  if (TREE_CODE (addr) != SAVE_EXPR
+      && (TREE_CODE (addr) != ADDR_EXPR
+         || TREE_CODE (TREE_OPERAND (addr, 0)) != VAR_DECL))
+    {
+      /* Make sure LHS is simple enough so that goa_lhs_expr_p can recognize
+        it even after unsharing function body.  */
+      tree var = create_tmp_var_raw (TREE_TYPE (addr), NULL);
+      addr = build4 (TARGET_EXPR, TREE_TYPE (addr), var, addr, NULL, NULL);
+    }
+  lhs = build_indirect_ref (input_location, addr, NULL);
 
   /* There are lots of warnings, errors, and conversions that need to happen
      in the course of interpreting a statement.  Use the normal mechanisms
      to do this, and then take it apart again.  */
-  x = build_modify_expr (lhs, code, rhs);
+  x = build_modify_expr (input_location, lhs, code, rhs);
   if (x == error_mark_node)
-    return;
+    return error_mark_node;
   gcc_assert (TREE_CODE (x) == MODIFY_EXPR);  
   rhs = TREE_OPERAND (x, 1);
 
   /* Punt the actual generation of atomic operations to common code.  */
-  add_stmt (build2 (OMP_ATOMIC, void_type_node, addr, rhs));
+  return build2 (OMP_ATOMIC, void_type_node, addr, rhs);
 }
 
 
@@ -138,7 +162,7 @@ c_finish_omp_flush (void)
   tree x;
 
   x = built_in_decls[BUILT_IN_SYNCHRONIZE];
-  x = build_function_call_expr (x, NULL);
+  x = build_call_expr (x, 0);
   add_stmt (x);
 }
 
@@ -160,7 +184,7 @@ check_omp_for_incr_expr (tree exp, tree decl)
 
   switch (TREE_CODE (exp))
     {
-    case NOP_EXPR:
+    CASE_CONVERT:
       t = check_omp_for_incr_expr (TREE_OPERAND (exp, 0), decl);
       if (t != error_mark_node)
         return fold_convert (TREE_TYPE (exp), t);
@@ -186,170 +210,205 @@ check_omp_for_incr_expr (tree exp, tree decl)
 }
 
 /* Validate and emit code for the OpenMP directive #pragma omp for.
-   INIT, COND, INCR, BODY and PRE_BODY are the five basic elements
-   of the loop (initialization expression, controlling predicate, increment
-   expression, body of the loop and statements to go before the loop).
-   DECL is the iteration variable.  */
+   DECLV is a vector of iteration variables, for each collapsed loop.
+   INITV, CONDV and INCRV are vectors containing initialization
+   expressions, controlling predicates and increment expressions.
+   BODY is the body of the loop and PRE_BODY statements that go before
+   the loop.  */
 
 tree
-c_finish_omp_for (location_t locus, tree decl, tree init, tree cond,
-                 tree incr, tree body, tree pre_body)
+c_finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
+                 tree incrv, tree body, tree pre_body)
 {
-  location_t elocus = locus;
+  location_t elocus;
   bool fail = false;
+  int i;
 
-  if (EXPR_HAS_LOCATION (init))
-    elocus = EXPR_LOCATION (init);
-
-  /* Validate the iteration variable.  */
-  if (!INTEGRAL_TYPE_P (TREE_TYPE (decl)))
+  gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
+  gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
+  gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
+  for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
     {
-      error ("%Hinvalid type for iteration variable %qE", &elocus, decl);
-      fail = true;
-    }
-  if (TYPE_UNSIGNED (TREE_TYPE (decl)))
-    warning (0, "%Hiteration variable %qE is unsigned", &elocus, decl);
+      tree decl = TREE_VEC_ELT (declv, i);
+      tree init = TREE_VEC_ELT (initv, i);
+      tree cond = TREE_VEC_ELT (condv, i);
+      tree incr = TREE_VEC_ELT (incrv, i);
+
+      elocus = locus;
+      if (EXPR_HAS_LOCATION (init))
+       elocus = EXPR_LOCATION (init);
+
+      /* Validate the iteration variable.  */
+      if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
+         && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
+       {
+         error_at (elocus, "invalid type for iteration variable %qE", decl);
+         fail = true;
+       }
 
-  /* In the case of "for (int i = 0...)", init will be a decl.  It should
-     have a DECL_INITIAL that we can turn into an assignment.  */
-  if (init == decl)
-    {
-      elocus = DECL_SOURCE_LOCATION (decl);
+      /* In the case of "for (int i = 0...)", init will be a decl.  It should
+        have a DECL_INITIAL that we can turn into an assignment.  */
+      if (init == decl)
+       {
+         elocus = DECL_SOURCE_LOCATION (decl);
 
-      init = DECL_INITIAL (decl);
-      if (init == NULL)
+         init = DECL_INITIAL (decl);
+         if (init == NULL)
+           {
+             error_at (elocus, "%qE is not initialized", decl);
+             init = integer_zero_node;
+             fail = true;
+           }
+
+         init = build_modify_expr (elocus, decl, NOP_EXPR, init);
+       }
+      gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
+      gcc_assert (TREE_OPERAND (init, 0) == decl);
+
+      if (cond == NULL_TREE)
        {
-         error ("%H%qE is not initialized", &elocus, decl);
-         init = integer_zero_node;
+         error_at (elocus, "missing controlling predicate");
          fail = true;
        }
+      else
+       {
+         bool cond_ok = false;
 
-      init = build_modify_expr (decl, NOP_EXPR, init);
-      SET_EXPR_LOCATION (init, elocus);
-    }
-  gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
-  gcc_assert (TREE_OPERAND (init, 0) == decl);
-  
-  if (cond == NULL_TREE)
-    {
-      error ("%Hmissing controlling predicate", &elocus);
-      fail = true;
-    }
-  else
-    {
-      bool cond_ok = false;
+         if (EXPR_HAS_LOCATION (cond))
+           elocus = EXPR_LOCATION (cond);
 
-      if (EXPR_HAS_LOCATION (cond))
-       elocus = EXPR_LOCATION (cond);
+         if (TREE_CODE (cond) == LT_EXPR
+             || TREE_CODE (cond) == LE_EXPR
+             || TREE_CODE (cond) == GT_EXPR
+             || TREE_CODE (cond) == GE_EXPR)
+           {
+             tree op0 = TREE_OPERAND (cond, 0);
+             tree op1 = TREE_OPERAND (cond, 1);
 
-      if (TREE_CODE (cond) == LT_EXPR
-         || TREE_CODE (cond) == LE_EXPR
-         || TREE_CODE (cond) == GT_EXPR
-         || TREE_CODE (cond) == GE_EXPR)
-       {
-         tree op0 = TREE_OPERAND (cond, 0);
-         tree op1 = TREE_OPERAND (cond, 1);
+             /* 2.5.1.  The comparison in the condition is computed in
+                the type of DECL, otherwise the behavior is undefined.
 
-         /* 2.5.1.  The comparison in the condition is computed in the type
-            of DECL, otherwise the behavior is undefined.
+                For example:
+                long n; int i;
+                i < n;
 
-            For example:
-            long n; int i;
-            i < n;
+                according to ISO will be evaluated as:
+                (long)i < n;
 
-            according to ISO will be evaluated as:
-            (long)i < n;
+                We want to force:
+                i < (int)n;  */
+             if (TREE_CODE (op0) == NOP_EXPR
+                 && decl == TREE_OPERAND (op0, 0))
+               {
+                 TREE_OPERAND (cond, 0) = TREE_OPERAND (op0, 0);
+                 TREE_OPERAND (cond, 1)
+                   = fold_build1 (NOP_EXPR, TREE_TYPE (decl),
+                                  TREE_OPERAND (cond, 1));
+               }
+             else if (TREE_CODE (op1) == NOP_EXPR
+                      && decl == TREE_OPERAND (op1, 0))
+               {
+                 TREE_OPERAND (cond, 1) = TREE_OPERAND (op1, 0);
+                 TREE_OPERAND (cond, 0)
+                   = fold_build1 (NOP_EXPR, TREE_TYPE (decl),
+                                  TREE_OPERAND (cond, 0));
+               }
 
-            We want to force:
-            i < (int)n;  */
-         if (TREE_CODE (op0) == NOP_EXPR
-             && decl == TREE_OPERAND (op0, 0))
-           {
-             TREE_OPERAND (cond, 0) = TREE_OPERAND (op0, 0);
-             TREE_OPERAND (cond, 1) = fold_build1 (NOP_EXPR, TREE_TYPE (decl),
-                                                   TREE_OPERAND (cond, 1));
-           }
-         else if (TREE_CODE (op1) == NOP_EXPR
-                  && decl == TREE_OPERAND (op1, 0))
-           {
-             TREE_OPERAND (cond, 1) = TREE_OPERAND (op1, 0);
-             TREE_OPERAND (cond, 0) = fold_build1 (NOP_EXPR, TREE_TYPE (decl),
-                                                   TREE_OPERAND (cond, 0));
+             if (decl == TREE_OPERAND (cond, 0))
+               cond_ok = true;
+             else if (decl == TREE_OPERAND (cond, 1))
+               {
+                 TREE_SET_CODE (cond,
+                                swap_tree_comparison (TREE_CODE (cond)));
+                 TREE_OPERAND (cond, 1) = TREE_OPERAND (cond, 0);
+                 TREE_OPERAND (cond, 0) = decl;
+                 cond_ok = true;
+               }
            }
 
-         if (decl == TREE_OPERAND (cond, 0))
-           cond_ok = true;
-         else if (decl == TREE_OPERAND (cond, 1))
+         if (!cond_ok)
            {
-             TREE_SET_CODE (cond, swap_tree_comparison (TREE_CODE (cond)));
-             TREE_OPERAND (cond, 1) = TREE_OPERAND (cond, 0);
-             TREE_OPERAND (cond, 0) = decl;
-             cond_ok = true;
+             error_at (elocus, "invalid controlling predicate");
+             fail = true;
            }
        }
 
-      if (!cond_ok)
+      if (incr == NULL_TREE)
        {
-         error ("%Hinvalid controlling predicate", &elocus);
+         error_at (elocus, "missing increment expression");
          fail = true;
        }
-    }
-
-  if (incr == NULL_TREE)
-    {
-      error ("%Hmissing increment expression", &elocus);
-      fail = true;
-    }
-  else
-    {
-      bool incr_ok = false;
-
-      if (EXPR_HAS_LOCATION (incr))
-       elocus = EXPR_LOCATION (incr);
-
-      /* Check all the valid increment expressions: v++, v--, ++v, --v,
-        v = v + incr, v = incr + v and v = v - incr.  */
-      switch (TREE_CODE (incr))
+      else
        {
-       case POSTINCREMENT_EXPR:
-       case PREINCREMENT_EXPR:
-       case POSTDECREMENT_EXPR:
-       case PREDECREMENT_EXPR:
-         incr_ok = (TREE_OPERAND (incr, 0) == decl);
-         break;
+         bool incr_ok = false;
+
+         if (EXPR_HAS_LOCATION (incr))
+           elocus = EXPR_LOCATION (incr);
 
-       case MODIFY_EXPR:
-         if (TREE_OPERAND (incr, 0) != decl)
-           break;
-         if (TREE_OPERAND (incr, 1) == decl)
-           break;
-         if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
-             && (TREE_OPERAND (TREE_OPERAND (incr, 1), 0) == decl
-                 || TREE_OPERAND (TREE_OPERAND (incr, 1), 1) == decl))
-           incr_ok = true;
-         else if (TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR
-                  && TREE_OPERAND (TREE_OPERAND (incr, 1), 0) == decl)
-           incr_ok = true;
-         else
+         /* Check all the valid increment expressions: v++, v--, ++v, --v,
+            v = v + incr, v = incr + v and v = v - incr.  */
+         switch (TREE_CODE (incr))
            {
-             tree t = check_omp_for_incr_expr (TREE_OPERAND (incr, 1), decl);
-             if (t != error_mark_node)
+           case POSTINCREMENT_EXPR:
+           case PREINCREMENT_EXPR:
+           case POSTDECREMENT_EXPR:
+           case PREDECREMENT_EXPR:
+             if (TREE_OPERAND (incr, 0) != decl)
+               break;
+
+             incr_ok = true;
+             if (POINTER_TYPE_P (TREE_TYPE (decl))
+                 && TREE_OPERAND (incr, 1))
                {
-                 incr_ok = true;
-                 t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
+                 tree t = fold_convert (sizetype, TREE_OPERAND (incr, 1));
+
+                 if (TREE_CODE (incr) == POSTDECREMENT_EXPR
+                     || TREE_CODE (incr) == PREDECREMENT_EXPR)
+                   t = fold_build1 (NEGATE_EXPR, sizetype, t);
+                 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (decl), decl, t);
                  incr = build2 (MODIFY_EXPR, void_type_node, decl, t);
                }
-           }
-         break;
+             break;
+
+           case MODIFY_EXPR:
+             if (TREE_OPERAND (incr, 0) != decl)
+               break;
+             if (TREE_OPERAND (incr, 1) == decl)
+               break;
+             if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
+                 && (TREE_OPERAND (TREE_OPERAND (incr, 1), 0) == decl
+                     || TREE_OPERAND (TREE_OPERAND (incr, 1), 1) == decl))
+               incr_ok = true;
+             else if ((TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR
+                       || (TREE_CODE (TREE_OPERAND (incr, 1))
+                           == POINTER_PLUS_EXPR))
+                      && TREE_OPERAND (TREE_OPERAND (incr, 1), 0) == decl)
+               incr_ok = true;
+             else
+               {
+                 tree t = check_omp_for_incr_expr (TREE_OPERAND (incr, 1),
+                                                   decl);
+                 if (t != error_mark_node)
+                   {
+                     incr_ok = true;
+                     t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
+                     incr = build2 (MODIFY_EXPR, void_type_node, decl, t);
+                   }
+               }
+             break;
 
-       default:
-         break;
-       }
-      if (!incr_ok)
-       {
-         error ("%Hinvalid increment expression", &elocus);
-         fail = true;
+           default:
+             break;
+           }
+         if (!incr_ok)
+           {
+             error_at (elocus, "invalid increment expression");
+             fail = true;
+           }
        }
+
+      TREE_VEC_ELT (initv, i) = init;
+      TREE_VEC_ELT (incrv, i) = incr;
     }
 
   if (fail)
@@ -359,9 +418,9 @@ c_finish_omp_for (location_t locus, tree decl, tree init, tree cond,
       tree t = make_node (OMP_FOR);
 
       TREE_TYPE (t) = void_type_node;
-      OMP_FOR_INIT (t) = init;
-      OMP_FOR_COND (t) = cond;
-      OMP_FOR_INCR (t) = incr;
+      OMP_FOR_INIT (t) = initv;
+      OMP_FOR_COND (t) = condv;
+      OMP_FOR_INCR (t) = incrv;
       OMP_FOR_BODY (t) = body;
       OMP_FOR_PRE_BODY (t) = pre_body;
 
@@ -405,6 +464,7 @@ c_split_parallel_clauses (tree clauses, tree *par_clauses, tree *ws_clauses)
 
        case OMP_CLAUSE_SCHEDULE:
        case OMP_CLAUSE_ORDERED:
+       case OMP_CLAUSE_COLLAPSE:
          OMP_CLAUSE_CHAIN (clauses) = *ws_clauses;
          *ws_clauses = clauses;
          break;