Skip to content

Commit c77ebe8

Browse files
committedSep 22, 2021
8274060: C2: Incorrect computation after JDK-8273454
Reviewed-by: thartmann, neliasso, chagedorn
1 parent d9872ba commit c77ebe8

File tree

2 files changed

+84
-3
lines changed

2 files changed

+84
-3
lines changed
 

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

+8-3
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,16 @@ Node *MulNode::Ideal(PhaseGVN *phase, bool can_reshape) {
6363
const Type *t2 = phase->type( in(2) );
6464
Node *progress = NULL; // Progress flag
6565

66-
// convert "(-a)*(-b)" into "a*b"
66+
// This code is used by And nodes too, but some conversions are
67+
// only valid for the actual Mul nodes.
68+
uint op = Opcode();
69+
bool real_mul = (op == Op_MulI) || (op == Op_MulL) ||
70+
(op == Op_MulF) || (op == Op_MulD);
71+
72+
// Convert "(-a)*(-b)" into "a*b".
6773
Node *in1 = in(1);
6874
Node *in2 = in(2);
69-
if (in1->is_Sub() && in2->is_Sub()) {
75+
if (real_mul && in1->is_Sub() && in2->is_Sub()) {
7076
if (phase->type(in1->in(1))->is_zero_type() &&
7177
phase->type(in2->in(1))->is_zero_type()) {
7278
set_req(1, in1->in(2));
@@ -119,7 +125,6 @@ Node *MulNode::Ideal(PhaseGVN *phase, bool can_reshape) {
119125

120126
// If the right input is a constant, and the left input is a product of a
121127
// constant, flatten the expression tree.
122-
uint op = Opcode();
123128
if( t2->singleton() && // Right input is a constant?
124129
op != Op_MulF && // Float & double cannot reassociate
125130
op != Op_MulD ) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
/*
2+
* Copyright (c) 2021, Red Hat, Inc. 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+
/**
25+
* @test
26+
* @key randomness
27+
* @bug 8274060
28+
* @summary Test broken transformation (-a) & (-b) = a & b does not happen
29+
*
30+
* @library /test/lib
31+
*
32+
* @run main/othervm -XX:-TieredCompilation -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:CompileCommand="dontinline,TestNegAnd::test*" TestNegAnd
33+
*
34+
*/
35+
36+
import java.util.Random;
37+
import jdk.test.lib.Utils;
38+
import jdk.test.lib.Asserts;
39+
40+
public class TestNegAnd {
41+
private static final Random random = Utils.getRandomInstance();
42+
// Enough cycles to ensure test methods are JIT-ed
43+
private static final int TEST_COUNT = 20_000;
44+
45+
private static int testInt(int a, int b) {
46+
return (-a) & (-b);
47+
}
48+
private static long testLong(long a, long b) {
49+
return (-a) & (-b);
50+
}
51+
52+
private static void runIntTests() {
53+
for (int index = 0; index < TEST_COUNT; index ++) {
54+
int a = random.nextInt();
55+
int b = random.nextInt();
56+
int expected = (-a) & (-b);
57+
int res = testInt(a, b);
58+
Asserts.assertEQ(res, expected);
59+
}
60+
}
61+
62+
private static void runLongTests() {
63+
for (int index = 0; index < TEST_COUNT; index ++) {
64+
long a = random.nextLong();
65+
long b = random.nextLong();
66+
long expected = (-a) & (-b);
67+
long res = testLong(a, b);
68+
Asserts.assertEQ(res, expected);
69+
}
70+
}
71+
72+
public static void main(String[] args) {
73+
runIntTests();
74+
runLongTests();
75+
}
76+
}

0 commit comments

Comments
 (0)
Please sign in to comment.