re PR tree-optimization/68639 (ICE: Floating point exception)
authorRichard Biener <rguenther@suse.de>
Thu, 3 Dec 2015 08:38:10 +0000 (08:38 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 3 Dec 2015 08:38:10 +0000 (08:38 +0000)
2015-12-03  Richard Biener  <rguenther@suse.de>

PR tree-optimization/68639
* tree-vect-data-refs.c (dr_group_sort_cmp): Split groups
belonging to different loops.
(vect_analyze_data_ref_accesses): Likewise.

* gfortran.fortran-torture/compile/pr68639.f90: New testcase.

From-SVN: r231220

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.fortran-torture/compile/pr68639.f90 [new file with mode: 0644]
gcc/tree-vect-data-refs.c

index ae92402d7e2a16145a9faae1efaaa3dcdfa2b1dc..519242133135bfa2c0a91f4bd50514ca9c7fbe31 100644 (file)
@@ -1,3 +1,10 @@
+2015-12-03  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/68639
+       * tree-vect-data-refs.c (dr_group_sort_cmp): Split groups
+       belonging to different loops.
+       (vect_analyze_data_ref_accesses): Likewise.
+
 2015-12-02  Jan Hubicka  <hubicka@ucw.cz>
 
        * ipa-pure-const.c (ignore_edge_for_pure_const): New function.
index 2e9f6b817c6cd5ac4dddae34a97387fc2ed0fc97..738d5617ff5b7165813b3d8f71dc654d1e74fdcb 100644 (file)
@@ -1,3 +1,8 @@
+2015-12-03  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/68639
+       * gfortran.fortran-torture/compile/pr68639.f90: New testcase.
+
 2015-12-02  Jan Hubicka  <hubicka@ucw.cz>
 
        PR ipa/68184
diff --git a/gcc/testsuite/gfortran.fortran-torture/compile/pr68639.f90 b/gcc/testsuite/gfortran.fortran-torture/compile/pr68639.f90
new file mode 100644 (file)
index 0000000..bd1c3a3
--- /dev/null
@@ -0,0 +1,22 @@
+  SUBROUTINE makeCoulE0(natorb,Coul)
+    INTEGER, PARAMETER :: dp=8
+    REAL(KIND=dp), PARAMETER :: fourpi=432.42, oorootpi=13413.3142
+    INTEGER :: natorb
+    REAL(KIND=dp), DIMENSION(45, 45), &
+      INTENT(OUT)                            :: Coul
+    INTEGER                                  :: gpt, imA, imB, k1, k2, k3, &
+                                                k4, lp, mp, np
+    REAL(KIND=dp)                            :: alpha, d2f(3,3), &
+                                                d4f(3,3,3,3), f, ff, w
+    REAL(KIND=dp), DIMENSION(3, 45)          :: M1A
+    REAL(KIND=dp), DIMENSION(45)             :: M0A
+    DO imA=1, (natorb*(natorb+1))/2
+       DO imB=1, (natorb*(natorb+1))/2
+          w= M0A(imA)*M0A(imB)
+          DO k1=1,3
+            w=w+ M1A(k1,imA)*M1A(k1,imB)
+          ENDDO
+          Coul(imA,imB)=Coul(imA,imB)-4.0_dp*alpha**3*oorootpi*w/3.0_dp
+       ENDDO
+    ENDDO
+  END SUBROUTINE makeCoulE0
index b59b40cf8d53e054b1d110c5bb8d58078d5003eb..8810af1bfcd4a90ae75aed732670d107b525f496 100644 (file)
@@ -2597,6 +2597,12 @@ dr_group_sort_cmp (const void *dra_, const void *drb_)
   if (dra == drb)
     return 0;
 
+  /* DRs in different loops never belong to the same group.  */
+  loop_p loopa = gimple_bb (DR_STMT (dra))->loop_father;
+  loop_p loopb = gimple_bb (DR_STMT (drb))->loop_father;
+  if (loopa != loopb)
+    return loopa->num < loopb->num ? -1 : 1;
+
   /* Ordering of DRs according to base.  */
   if (!operand_equal_p (DR_BASE_ADDRESS (dra), DR_BASE_ADDRESS (drb), 0))
     {
@@ -2688,6 +2694,12 @@ vect_analyze_data_ref_accesses (vec_info *vinfo)
             matters we can push those to a worklist and re-iterate
             over them.  The we can just skip ahead to the next DR here.  */
 
+         /* DRs in a different loop should not be put into the same
+            interleaving group.  */
+         if (gimple_bb (DR_STMT (dra))->loop_father
+             != gimple_bb (DR_STMT (drb))->loop_father)
+           break;
+
          /* Check that the data-refs have same first location (except init)
             and they are both either store or load (not load and store,
             not masked loads or stores).  */