Skip to content

Commit e965d70

Browse files
committedJun 18, 2024
8333876: C2 SuperWord: regression after JDK-8325155: failed: internal connection
Reviewed-by: kvn, roland
1 parent 6f860f8 commit e965d70

File tree

2 files changed

+64
-4
lines changed

2 files changed

+64
-4
lines changed
 

‎src/hotspot/share/opto/superword.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -2755,11 +2755,11 @@ bool SuperWord::is_vector_use(Node* use, int u_idx) const {
27552755

27562756
// Reduction: first input is internal connection.
27572757
if (is_marked_reduction(use) && u_idx == 1) {
2758-
#ifdef ASSERT
2759-
for (uint i = 1; i < u_pk->size(); i++) {
2760-
assert(u_pk->at(i - 1) == u_pk->at(i)->in(1), "internal connection");
2758+
for (uint i = 1; i < u_pk->size(); i++) {
2759+
if (u_pk->at(i - 1) != u_pk->at(i)->in(1)) {
2760+
return false; // not internally connected
27612761
}
2762-
#endif
2762+
}
27632763
return true;
27642764
}
27652765

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
package compiler.loopopts.superword;
25+
26+
/*
27+
* @test
28+
* @bug 8333876
29+
* @summary Test parallel reductions.
30+
* @run main compiler.loopopts.superword.TestParallelReduction
31+
*/
32+
33+
public class TestParallelReduction {
34+
static int RANGE = 10_000;
35+
36+
public static void main(String[] args) {
37+
float[] a = new float[RANGE];
38+
for (int i = 0; i < a.length; i++) {
39+
a[i] = i;
40+
}
41+
42+
float gold = test(a);
43+
44+
for (int i = 0; i < 10_000; i++) {
45+
if (test(a) != gold) {
46+
throw new RuntimeException("wrong value");
47+
}
48+
}
49+
}
50+
51+
static float test(float[] a) {
52+
float x = 0;
53+
float y = 0;
54+
for (int i = 0; i < a.length; i+=2) {
55+
x += a[i+0];
56+
y += a[i+1];
57+
}
58+
return x+y;
59+
}
60+
}

0 commit comments

Comments
 (0)
Please sign in to comment.