Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.
/ jdk16 Public archive

Commit 1926765

Browse files
Vladimir KozlovRealFYang
Vladimir Kozlov
andcommittedJan 28, 2021
8253353: Crash in C2: guarantee(n != NULL) failed: No Node
Co-authored-by: Fei Yang <fyang@openjdk.org> Reviewed-by: vlivanov, neliasso
1 parent e68eac9 commit 1926765

File tree

4 files changed

+1987
-1
lines changed

4 files changed

+1987
-1
lines changed
 

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

+2
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ IdealLoopTree* PhaseIdealLoop::insert_outer_loop(IdealLoopTree* loop, LoopNode*
291291
loop->_parent = outer_ilt;
292292
loop->_next = NULL;
293293
loop->_nest++;
294+
assert(loop->_nest <= SHRT_MAX, "sanity");
294295
return outer_ilt;
295296
}
296297

@@ -2614,6 +2615,7 @@ bool IdealLoopTree::is_member(const IdealLoopTree *l) const {
26142615
//------------------------------set_nest---------------------------------------
26152616
// Set loop tree nesting depth. Accumulate _has_call bits.
26162617
int IdealLoopTree::set_nest( uint depth ) {
2618+
assert(depth <= SHRT_MAX, "sanity");
26172619
_nest = depth;
26182620
int bits = _has_call;
26192621
if( _child ) bits |= _child->set_nest(depth+1);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ class IdealLoopTree : public ResourceObj {
611611

612612
Node_List _body; // Loop body for inner loops
613613

614-
uint8_t _nest; // Nesting depth
614+
uint16_t _nest; // Nesting depth
615615
uint8_t _irreducible:1, // True if irreducible
616616
_has_call:1, // True if has call safepoint
617617
_has_sfpt:1, // True if has non-call safepoint

‎test/hotspot/jtreg/compiler/loopopts/TestNestedIrreducibleLoops.jasm

+1,939
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/*
2+
* Copyright (c) 2021, 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+
* @test
26+
* @bug 8253353
27+
* @summary Tests custom bytecode with deep nested irreducible loops.
28+
*
29+
* @compile TestNestedIrreducibleLoops.jasm
30+
* @run main/othervm -Xbatch -XX:CompileCommand=dontinline,TestNestedIrreducibleLoops::*
31+
* -XX:CompileCommand=exclude,TestNestedIrreducibleLoopsMain::main
32+
* TestNestedIrreducibleLoopsMain
33+
*/
34+
35+
public class TestNestedIrreducibleLoopsMain {
36+
public static void main(String[] args) {
37+
TestNestedIrreducibleLoops t = new TestNestedIrreducibleLoops();
38+
t.loopCounter = 3;
39+
int j;
40+
for (int i = 0; i < 11000; i++) {
41+
t.start = i & 0x3ff;
42+
j = t.test(); // Produces deep nested irreducible loops
43+
}
44+
}
45+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jan 28, 2021

@openjdk-notifier[bot]
This repository has been archived.