Skip to content

Commit 1066357

Browse files
author
Boris Ulasevich
committedAug 5, 2020
8248445: Use of AbsI/AbsL nodes should be limited to supported platforms
Reviewed-by: kvn, vlivanov
1 parent 3a0741a commit 1066357

File tree

2 files changed

+60
-16
lines changed

2 files changed

+60
-16
lines changed
 

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

+9-16
Original file line numberDiff line numberDiff line change
@@ -1605,40 +1605,33 @@ static Node* is_absolute( PhaseGVN *phase, PhiNode *phi_root, int true_path) {
16051605
// Check other phi input for subtract node
16061606
Node *sub = phi_root->in(3 - phi_x_idx);
16071607

1608+
bool is_sub = sub->Opcode() == Op_SubF || sub->Opcode() == Op_SubD ||
1609+
sub->Opcode() == Op_SubI || sub->Opcode() == Op_SubL;
1610+
16081611
// Allow only Sub(0,X) and fail out for all others; Neg is not OK
1609-
if( tzero == TypeF::ZERO ) {
1610-
if( sub->Opcode() != Op_SubF ||
1611-
sub->in(2) != x ||
1612-
phase->type(sub->in(1)) != tzero ) return NULL;
1612+
if (!is_sub || phase->type(sub->in(1)) != tzero || sub->in(2) != x) return NULL;
1613+
1614+
if (tzero == TypeF::ZERO) {
16131615
x = new AbsFNode(x);
16141616
if (flip) {
16151617
x = new SubFNode(sub->in(1), phase->transform(x));
16161618
}
16171619
} else if (tzero == TypeD::ZERO) {
1618-
if( sub->Opcode() != Op_SubD ||
1619-
sub->in(2) != x ||
1620-
phase->type(sub->in(1)) != tzero ) return NULL;
16211620
x = new AbsDNode(x);
16221621
if (flip) {
16231622
x = new SubDNode(sub->in(1), phase->transform(x));
16241623
}
1625-
} else if (tzero == TypeInt::ZERO) {
1626-
if (sub->Opcode() != Op_SubI ||
1627-
sub->in(2) != x ||
1628-
phase->type(sub->in(1)) != tzero) return NULL;
1624+
} else if (tzero == TypeInt::ZERO && Matcher::match_rule_supported(Op_AbsI)) {
16291625
x = new AbsINode(x);
16301626
if (flip) {
16311627
x = new SubINode(sub->in(1), phase->transform(x));
16321628
}
1633-
} else {
1634-
if (sub->Opcode() != Op_SubL ||
1635-
sub->in(2) != x ||
1636-
phase->type(sub->in(1)) != tzero) return NULL;
1629+
} else if (tzero == TypeLong::ZERO && Matcher::match_rule_supported(Op_AbsL)) {
16371630
x = new AbsLNode(x);
16381631
if (flip) {
16391632
x = new SubLNode(sub->in(1), phase->transform(x));
16401633
}
1641-
}
1634+
} else return NULL;
16421635

16431636
return x;
16441637
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Copyright (c) 2020, BELLSOFT. 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.c2;
25+
26+
/*
27+
* @test
28+
* @bug 8248445
29+
* @summary Use of AbsI / AbsL nodes should be limited to supported platforms
30+
* @requires vm.debug == true
31+
*
32+
* @run main/othervm -XX:-TieredCompilation -Xbatch -XX:CompileOnly=java.lang.Math::abs compiler.c2.TestAbs
33+
*/
34+
public class TestAbs {
35+
36+
public static void test() {
37+
// java.lang.Math.abs() collapses into AbsI/AbsL nodes on platforms that support the correspondent nodes
38+
// Using unsupported nodes triggers a console warning on a release build and gives an error on a debug build
39+
Math.abs(1);
40+
Math.abs(-1);
41+
Math.abs(1L);
42+
Math.abs(-1L);
43+
}
44+
45+
public static void main(String args[]) {
46+
for (int i = 0; i < 20_000; i++) {
47+
test();
48+
}
49+
}
50+
}
51+

0 commit comments

Comments
 (0)
Please sign in to comment.