comparison src/share/vm/oops/arrayKlass.cpp @ 11034:e0c9a1d29eb4

8016325: JVM hangs verifying system dictionary Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
author coleenp
date Mon, 24 Jun 2013 18:55:46 -0400
parents 6bd680e9ea35
children 71180a6e5080
comparison
equal deleted inserted replaced
11033:d9eed26d638a 11034:e0c9a1d29eb4
219 } 219 }
220 220
221 221
222 // Verification 222 // Verification
223 223
224 void ArrayKlass::verify_on(outputStream* st) { 224 void ArrayKlass::verify_on(outputStream* st, bool check_dictionary) {
225 Klass::verify_on(st); 225 Klass::verify_on(st, check_dictionary);
226 226
227 if (component_mirror() != NULL) { 227 if (component_mirror() != NULL) {
228 guarantee(component_mirror()->klass() != NULL, "should have a class"); 228 guarantee(component_mirror()->klass() != NULL, "should have a class");
229 } 229 }
230 } 230 }