Skip to content

Commit ca47f5f

Browse files
committedSep 21, 2023
8316105: C2: Back to back Parse Predicates from different loops but with same deopt reason are wrongly grouped together
Reviewed-by: roland, thartmann, kvn
1 parent 1749ba2 commit ca47f5f

File tree

3 files changed

+105
-2
lines changed

3 files changed

+105
-2
lines changed
 

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

+16-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Deoptimization::DeoptReason RuntimePredicate::uncommon_trap_reason(IfProjNode* i
7777
}
7878

7979
bool RuntimePredicate::is_success_proj(Node* node, Deoptimization::DeoptReason deopt_reason) {
80-
if (node->is_IfProj()) {
80+
if (node->is_IfProj() && !node->in(0)->is_ParsePredicate()) {
8181
return deopt_reason == uncommon_trap_reason(node->as_IfProj());
8282
} else {
8383
return false;
@@ -108,6 +108,21 @@ ParsePredicateNode* ParsePredicateIterator::next() {
108108
return _parse_predicates.at(_current_index++);
109109
}
110110

111+
#ifdef ASSERT
112+
// Check that the block has at most one Parse Predicate and that we only find Regular Predicate nodes (i.e. IfProj,
113+
// If, or RangeCheck nodes).
114+
void PredicateBlock::verify_block() {
115+
Node* next = _parse_predicate.entry(); // Skip unique Parse Predicate of this block if present
116+
while (next != _entry) {
117+
assert(!next->is_ParsePredicate(), "can only have one Parse Predicate in a block");
118+
const int opcode = next->Opcode();
119+
assert(next->is_IfProj() || opcode == Op_If || opcode == Op_RangeCheck,
120+
"Regular Predicates consist of an IfProj and an If or RangeCheck node");
121+
next = next->in(0);
122+
}
123+
}
124+
#endif // ASSERT
125+
111126
// Walk over all Regular Predicates of this block (if any) and return the first node not belonging to the block
112127
// anymore (i.e. entry to the first Regular Predicate in this block if any or `regular_predicate_proj` otherwise).
113128
Node* PredicateBlock::skip_regular_predicates(Node* regular_predicate_proj, Deoptimization::DeoptReason deopt_reason) {

‎src/hotspot/share/opto/predicates.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,14 @@ class PredicateBlock : public StackObj {
270270
Node* _entry;
271271

272272
static Node* skip_regular_predicates(Node* regular_predicate_proj, Deoptimization::DeoptReason deopt_reason);
273+
DEBUG_ONLY(void verify_block();)
273274

274275
public:
275276
PredicateBlock(Node* predicate_proj, Deoptimization::DeoptReason deopt_reason)
276277
: _parse_predicate(predicate_proj, deopt_reason),
277-
_entry(skip_regular_predicates(_parse_predicate.entry(), deopt_reason)) {}
278+
_entry(skip_regular_predicates(_parse_predicate.entry(), deopt_reason)) {
279+
DEBUG_ONLY(verify_block();)
280+
}
278281

279282
// Returns the control input node into this Regular Predicate block. This is either:
280283
// - The control input to the first If node in the block representing a Runtime Predicate if there is at least one
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/*
2+
* Copyright (c) 2023, 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+
25+
/*
26+
* @test
27+
* @bug 8316105
28+
* @library /test/lib
29+
* @summary Test that back to back Parse Predicates with same deopt reason are not grouped together
30+
* @run main/othervm -Xbatch compiler.predicates.TestBackToBackParsePredicates
31+
*/
32+
33+
package compiler.predicates;
34+
35+
import jdk.test.lib.Asserts;
36+
37+
public class TestBackToBackParsePredicates {
38+
static long lFld;
39+
40+
public static void main(String[] strArr2) {
41+
for (int i = -350; i <= 0; i++) {
42+
lFld = 30;
43+
test(i);
44+
check();
45+
}
46+
lFld = 30;
47+
test(1);
48+
check();
49+
}
50+
51+
// Inlined
52+
static void foo() {
53+
for (int i12 = 1; i12 < 5; i12++) { // Loop A
54+
lFld += 1; // StoreL
55+
}
56+
}
57+
58+
static void test(int x) {
59+
foo();
60+
61+
// After fully unrolling loop A and after next round of IGVN:
62+
// We wrongly treat two back to back Loop Limit Check Parse Predicates as single Predicate Block. We therefore
63+
// keep the Loop Parse Predicate of loop A:
64+
//
65+
// Loop Parse Predicate (of A)
66+
// Loop Limit Check Parse Predicate (of A) |
67+
// -> StoreL of lFld pinned here | Wrongly treated as single Predicate Block
68+
// Loop Limit Check Parse Predicate (of B) |
69+
for (int i = 7; i < 212; i++) { // Loop B
70+
for (int j = 1; j < 80; j++) {
71+
switch (x % 8) {
72+
case 0:
73+
case 2:
74+
break;
75+
case 6:
76+
case 7:
77+
}
78+
}
79+
}
80+
}
81+
82+
static void check() {
83+
Asserts.assertEQ(34L, lFld);
84+
}
85+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Sep 21, 2023

@openjdk-notifier[bot]
Please sign in to comment.