Skip to content

Commit 95c8a69

Browse files
committedMay 31, 2024
8332032: C2: Remove ExpandSubTypeCheckAtParseTime flag
Reviewed-by: thartmann, rcastanedalo
1 parent ba323b5 commit 95c8a69

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed
 

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

-3
Original file line numberDiff line numberDiff line change
@@ -767,9 +767,6 @@
767767
product(bool, UseProfiledLoopPredicate, true, \
768768
"Move predicates out of loops based on profiling data") \
769769
\
770-
product(bool, ExpandSubTypeCheckAtParseTime, false, DIAGNOSTIC, \
771-
"Do not use subtype check macro node") \
772-
\
773770
develop(uintx, StressLongCountedLoop, 0, \
774771
"if > 0, convert int counted loops to long counted loops" \
775772
"to stress handling of long counted loops: run inner loop" \

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

+4-10
Original file line numberDiff line numberDiff line change
@@ -2713,17 +2713,12 @@ Node* Phase::gen_subtype_check(Node* subklass, Node* superklass, Node** ctrl, No
27132713
// Here, the type of 'fa' is often exact, so the store check
27142714
// of fa[1]=x will fold up, without testing the nullness of x.
27152715
//
2716-
// Do not skip the static sub type check with StressReflectiveCode during
2717-
// parsing (i.e. with ExpandSubTypeCheckAtParseTime) because the
2718-
// associated CheckCastNodePP could already be folded when the type
2719-
// system can prove it's an impossible type. Therefore, we should also
2720-
// do the static sub type check here to ensure control is folded as well.
2721-
// Otherwise, the graph is left in a broken state.
27222716
// At macro expansion, we would have already folded the SubTypeCheckNode
27232717
// being expanded here because we always perform the static sub type
27242718
// check in SubTypeCheckNode::sub() regardless of whether
2725-
// StressReflectiveCode is set or not.
2726-
switch (C->static_subtype_check(superk, subk, !ExpandSubTypeCheckAtParseTime)) {
2719+
// StressReflectiveCode is set or not. We can therefore skip this
2720+
// static check when StressReflectiveCode is on.
2721+
switch (C->static_subtype_check(superk, subk)) {
27272722
case Compile::SSC_always_false:
27282723
{
27292724
Node* always_fail = *ctrl;
@@ -2904,8 +2899,7 @@ Node* Phase::gen_subtype_check(Node* subklass, Node* superklass, Node** ctrl, No
29042899
}
29052900

29062901
Node* GraphKit::gen_subtype_check(Node* obj_or_subklass, Node* superklass) {
2907-
bool expand_subtype_check = C->post_loop_opts_phase() || // macro node expansion is over
2908-
ExpandSubTypeCheckAtParseTime; // forced expansion
2902+
bool expand_subtype_check = C->post_loop_opts_phase(); // macro node expansion is over
29092903
if (expand_subtype_check) {
29102904
MergeMemNode* mem = merged_memory();
29112905
Node* ctrl = control();

‎test/hotspot/jtreg/compiler/types/TestSubTypeCheckMacroTrichotomy.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
3-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -32,7 +32,6 @@
3232
* @run main/othervm -XX:-BackgroundCompilation TestSubTypeCheckMacroTrichotomy
3333
* @run main/othervm -XX:-BackgroundCompilation
3434
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode
35-
* -XX:+UnlockDiagnosticVMOptions -XX:+ExpandSubTypeCheckAtParseTime
3635
* -XX:-TieredCompilation -XX:CompileThreshold=100 TestSubTypeCheckMacroTrichotomy
3736
*
3837
*/

‎test/hotspot/jtreg/compiler/types/TestSubTypeCheckWithBottomArray.java

-2
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,10 @@
5050
* either against an interface or an unrelated non-sub-class.
5151
*
5252
* @run main/othervm -Xcomp -XX:CompileCommand=compileonly,compiler.types.TestSubTypeCheckWithBottomArray::test*
53-
* -XX:+UnlockDiagnosticVMOptions -XX:+ExpandSubTypeCheckAtParseTime
5453
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode
5554
* -XX:CompileCommand=inline,compiler.types.TestSubTypeCheckWithBottomArray::check*
5655
* compiler.types.TestSubTypeCheckWithBottomArray
5756
* @run main/othervm -Xbatch -XX:CompileCommand=compileonly,compiler.types.TestSubTypeCheckWithBottomArray::test*
58-
* -XX:+UnlockDiagnosticVMOptions -XX:+ExpandSubTypeCheckAtParseTime
5957
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode
6058
* -XX:CompileCommand=inline,compiler.types.TestSubTypeCheckWithBottomArray::check*
6159
* compiler.types.TestSubTypeCheckWithBottomArray

0 commit comments

Comments
 (0)
Please sign in to comment.