@@ -116,7 +116,6 @@ const char *Runtime1::_blob_names[] = {
116
116
117
117
#ifndef PRODUCT
118
118
// statistics
119
- int Runtime1::_generic_arraycopy_cnt = 0 ;
120
119
int Runtime1::_generic_arraycopystub_cnt = 0 ;
121
120
int Runtime1::_arraycopy_slowcase_cnt = 0 ;
122
121
int Runtime1::_arraycopy_checkcast_cnt = 0 ;
@@ -134,7 +133,6 @@ int Runtime1::_throw_div0_exception_count = 0;
134
133
int Runtime1::_throw_null_pointer_exception_count = 0 ;
135
134
int Runtime1::_throw_class_cast_exception_count = 0 ;
136
135
int Runtime1::_throw_incompatible_class_change_error_count = 0 ;
137
- int Runtime1::_throw_array_store_exception_count = 0 ;
138
136
int Runtime1::_throw_count = 0 ;
139
137
140
138
static int _byte_arraycopy_stub_cnt = 0 ;
@@ -1451,7 +1449,6 @@ void Runtime1::print_statistics() {
1451
1449
tty->print_cr (" _resolve_invoke_static_cnt: %d" , SharedRuntime::_resolve_static_ctr);
1452
1450
tty->print_cr (" _handle_wrong_method_cnt: %d" , SharedRuntime::_wrong_method_ctr);
1453
1451
tty->print_cr (" _ic_miss_cnt: %d" , SharedRuntime::_ic_miss_ctr);
1454
- tty->print_cr (" _generic_arraycopy_cnt: %d" , _generic_arraycopy_cnt);
1455
1452
tty->print_cr (" _generic_arraycopystub_cnt: %d" , _generic_arraycopystub_cnt);
1456
1453
tty->print_cr (" _byte_arraycopy_cnt: %d" , _byte_arraycopy_stub_cnt);
1457
1454
tty->print_cr (" _short_arraycopy_cnt: %d" , _short_arraycopy_stub_cnt);
@@ -1476,7 +1473,6 @@ void Runtime1::print_statistics() {
1476
1473
tty->print_cr (" _throw_null_pointer_exception_count: %d:" , _throw_null_pointer_exception_count);
1477
1474
tty->print_cr (" _throw_class_cast_exception_count: %d:" , _throw_class_cast_exception_count);
1478
1475
tty->print_cr (" _throw_incompatible_class_change_error_count: %d:" , _throw_incompatible_class_change_error_count);
1479
- tty->print_cr (" _throw_array_store_exception_count: %d:" , _throw_array_store_exception_count);
1480
1476
tty->print_cr (" _throw_count: %d:" , _throw_count);
1481
1477
1482
1478
SharedRuntime::print_ic_miss_histogram ();
0 commit comments