@@ -3812,7 +3812,7 @@ bool Compile::final_graph_reshaping() {
3812
3812
// 'fall-thru' path, so expected kids is 1 less.
3813
3813
if (n->is_PCTable () && n->in (0 ) && n->in (0 )->in (0 )) {
3814
3814
if (n->in (0 )->in (0 )->is_Call ()) {
3815
- CallNode * call = n->in (0 )->in (0 )->as_Call ();
3815
+ CallNode* call = n->in (0 )->in (0 )->as_Call ();
3816
3816
if (call->entry_point () == OptoRuntime::rethrow_stub ()) {
3817
3817
required_outcnt--; // Rethrow always has 1 less kid
3818
3818
} else if (call->req () > TypeFunc::Parms &&
@@ -3821,22 +3821,25 @@ bool Compile::final_graph_reshaping() {
3821
3821
// detected that the virtual call will always result in a null
3822
3822
// pointer exception. The fall-through projection of this CatchNode
3823
3823
// will not be populated.
3824
- Node * arg0 = call->in (TypeFunc::Parms);
3824
+ Node* arg0 = call->in (TypeFunc::Parms);
3825
3825
if (arg0->is_Type () &&
3826
3826
arg0->as_Type ()->type ()->higher_equal (TypePtr::NULL_PTR)) {
3827
3827
required_outcnt--;
3828
3828
}
3829
- } else if (call->entry_point () == OptoRuntime::new_array_Java () &&
3830
- call->req () > TypeFunc::Parms+1 &&
3831
- call->is_CallStaticJava ()) {
3832
- // Check for negative array length. In such case, the optimizer has
3829
+ } else if (call->entry_point () == OptoRuntime::new_array_Java () ||
3830
+ call->entry_point () == OptoRuntime::new_array_nozero_Java ()) {
3831
+ // Check for illegal array length. In such case, the optimizer has
3833
3832
// detected that the allocation attempt will always result in an
3834
3833
// exception. There is no fall-through projection of this CatchNode .
3835
- Node *arg1 = call->in (TypeFunc::Parms+1 );
3836
- if (arg1->is_Type () &&
3837
- arg1->as_Type ()->type ()->join (TypeInt::POS)->empty ()) {
3834
+ assert (call->is_CallStaticJava (), " static call expected" );
3835
+ assert (call->req () == call->jvms ()->endoff () + 1 , " missing extra input" );
3836
+ Node* valid_length_test = call->in (call->req ()-1 );
3837
+ call->del_req (call->req ()-1 );
3838
+ if (valid_length_test->find_int_con (1 ) == 0 ) {
3838
3839
required_outcnt--;
3839
3840
}
3841
+ assert (n->outcnt () == required_outcnt, " malformed control flow" );
3842
+ continue ;
3840
3843
}
3841
3844
}
3842
3845
}
@@ -3845,6 +3848,14 @@ bool Compile::final_graph_reshaping() {
3845
3848
record_method_not_compilable (" malformed control flow" );
3846
3849
return true ; // Not all targets reachable!
3847
3850
}
3851
+ } else if (n->is_PCTable () && n->in (0 ) && n->in (0 )->in (0 ) && n->in (0 )->in (0 )->is_Call ()) {
3852
+ CallNode* call = n->in (0 )->in (0 )->as_Call ();
3853
+ if (call->entry_point () == OptoRuntime::new_array_Java () ||
3854
+ call->entry_point () == OptoRuntime::new_array_nozero_Java ()) {
3855
+ assert (call->is_CallStaticJava (), " static call expected" );
3856
+ assert (call->req () == call->jvms ()->endoff () + 1 , " missing extra input" );
3857
+ call->del_req (call->req ()-1 ); // valid length test useless now
3858
+ }
3848
3859
}
3849
3860
// Check that I actually visited all kids. Unreached kids
3850
3861
// must be infinite loops.
0 commit comments