8193597: sun/nio/cs/TestStringCoding.java fails intermittently with getBytes(csn) failed -> GBK
authorroland
Mon, 15 Jan 2018 09:19:53 +0100
changeset 48527 0769bb301c7a
parent 48526 d52bb1d8ae7b
child 48528 b329894ee5a2
8193597: sun/nio/cs/TestStringCoding.java fails intermittently with getBytes(csn) failed -> GBK Summary: Should not change loop limit check of outer loop. Reviewed-by: thartmann
src/hotspot/share/opto/loopnode.cpp
test/hotspot/jtreg/compiler/loopstripmining/LimitSharedwithOutOfLoopTest.java
--- a/src/hotspot/share/opto/loopnode.cpp	Mon Jan 15 09:17:25 2018 +0100
+++ b/src/hotspot/share/opto/loopnode.cpp	Mon Jan 15 09:19:53 2018 +0100
@@ -1488,8 +1488,8 @@
     } else {
       new_limit = igvn->transform(new SubINode(iv_phi, min));
     }
-    igvn->replace_input_of(inner_cle->cmp_node(), 2, new_limit);
     Node* cmp = inner_cle->cmp_node()->clone();
+    igvn->replace_input_of(cmp, 2, new_limit);
     Node* bol = inner_cle->in(CountedLoopEndNode::TestValue)->clone();
     cmp->set_req(2, limit);
     bol->set_req(1, igvn->transform(cmp));
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/compiler/loopstripmining/LimitSharedwithOutOfLoopTest.java	Mon Jan 15 09:19:53 2018 +0100
@@ -0,0 +1,71 @@
+/*
+ * Copyright (c) 2018, Red Hat, Inc. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * @test
+ * @bug 8193597
+ * @summary limit test is shared with out of loop if
+ *
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-BackgroundCompilation -XX:LoopUnrollLimit=0 -XX:+UseCountedLoopSafepoints -XX:LoopStripMiningIter=1000 LimitSharedwithOutOfLoopTest
+ *
+ */
+
+public class LimitSharedwithOutOfLoopTest {
+    public static void main(String[] args) {
+        boolean[] array1 = new boolean[2001];
+        boolean[] array2 = new boolean[2001];
+        boolean[] array3 = new boolean[2001];
+        array2[1000] = true;
+        array3[2000] = true;
+        for (int i = 0; i < 20_000; i++) {
+            if (test(2000, array1)) {
+                throw new RuntimeException("bad return");
+            }
+            if (!test(2000, array2)) {
+                throw new RuntimeException("bad return");
+            }
+            if (test(2000, array3)) {
+                throw new RuntimeException("bad return");
+            }
+        }
+    }
+
+    static volatile boolean barrier;
+
+    private static boolean test(int limit, boolean[] array) {
+        for (int i = 0; i < limit;) {
+            i++;
+            if (array[i]) {
+                // Same test as end of loop test. When loop is strip
+                // mined, this must not become the end of inner loop
+                // test.
+                if (i < limit) {
+                    return true;
+                }
+                return false;
+            }
+            barrier = true;
+        }
+        return false;
+    }
+}