Skip to content

Commit cfe5a37

Browse files
committedNov 25, 2022
8297556: Parse::check_interpreter_type fails with assert "must constrain OSR typestate"
Reviewed-by: thartmann, vlivanov
1 parent 74d3bac commit cfe5a37

File tree

2 files changed

+48
-4
lines changed

2 files changed

+48
-4
lines changed
 

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -2314,16 +2314,14 @@ bool TypeAry::ary_must_be_exact() const {
23142314
toop = _elem->isa_oopptr();
23152315
}
23162316
if (!toop) return true; // a primitive type, like int
2317-
ciKlass* tklass = toop->klass();
2318-
if (tklass == NULL) return false; // unloaded class
2319-
if (!tklass->is_loaded()) return false; // unloaded class
2317+
if (!toop->is_loaded()) return false; // unloaded class
23202318
const TypeInstPtr* tinst;
23212319
if (_elem->isa_narrowoop())
23222320
tinst = _elem->make_ptr()->isa_instptr();
23232321
else
23242322
tinst = _elem->isa_instptr();
23252323
if (tinst)
2326-
return tklass->as_instance_klass()->is_final();
2324+
return tinst->instance_klass()->is_final();
23272325
const TypeAryPtr* tap;
23282326
if (_elem->isa_narrowoop())
23292327
tap = _elem->make_ptr()->isa_aryptr();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/*
2+
* Copyright (c) 2022, 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+
* @bug 8297556
27+
* @summary Parse::check_interpreter_type fails with assert "must constrain OSR typestate"
28+
*
29+
* @run main/othervm -Xbatch -XX:-TieredCompilation -XX:CompileOnly=TestExactArrayOfBasicType::test TestExactArrayOfBasicType
30+
*
31+
*/
32+
33+
34+
public class TestExactArrayOfBasicType {
35+
public static void test() {
36+
int[][][][][] array = new int[1][2][3][4][5];
37+
38+
for (int i = 0; i < 50_000; ++i) {
39+
array[0] = new int[0][1][2][3];
40+
}
41+
}
42+
43+
public static void main(String args[]) {
44+
test();
45+
}
46+
}

0 commit comments

Comments
 (0)
Please sign in to comment.