comparison src/share/vm/oops/compiledICHolder.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 59c790074993
children de6a9e811145
comparison
equal deleted inserted replaced
11033:d9eed26d638a 11034:e0c9a1d29eb4
46 46
47 47
48 // Verification 48 // Verification
49 49
50 void CompiledICHolder::verify_on(outputStream* st) { 50 void CompiledICHolder::verify_on(outputStream* st) {
51 guarantee(holder_method()->is_metadata(), "should be in metaspace");
52 guarantee(holder_method()->is_method(), "should be method"); 51 guarantee(holder_method()->is_method(), "should be method");
53 guarantee(holder_klass()->is_metadata(), "should be in metaspace");
54 guarantee(holder_klass()->is_klass(), "should be klass"); 52 guarantee(holder_klass()->is_klass(), "should be klass");
55 } 53 }