@@ -2713,17 +2713,12 @@ Node* Phase::gen_subtype_check(Node* subklass, Node* superklass, Node** ctrl, No
2713
2713
// Here, the type of 'fa' is often exact, so the store check
2714
2714
// of fa[1]=x will fold up, without testing the nullness of x.
2715
2715
//
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.
2722
2716
// At macro expansion, we would have already folded the SubTypeCheckNode
2723
2717
// being expanded here because we always perform the static sub type
2724
2718
// 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)) {
2727
2722
case Compile::SSC_always_false:
2728
2723
{
2729
2724
Node* always_fail = *ctrl;
@@ -2904,8 +2899,7 @@ Node* Phase::gen_subtype_check(Node* subklass, Node* superklass, Node** ctrl, No
2904
2899
}
2905
2900
2906
2901
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
2909
2903
if (expand_subtype_check) {
2910
2904
MergeMemNode* mem = merged_memory ();
2911
2905
Node* ctrl = control ();
0 commit comments