src/share/vm/classfile/verifier.cpp

changeset 1577
4ce7240d622c
parent 1494
389049f3f393
child 1907
c18cbe5936b8
child 1915
e40a3601bc1f
child 1920
ab102d5d923e
equal deleted inserted replaced
1575:1f6d42899c3a 1577:4ce7240d622c
141 } 141 }
142 } 142 }
143 143
144 bool Verifier::is_eligible_for_verification(instanceKlassHandle klass, bool should_verify_class) { 144 bool Verifier::is_eligible_for_verification(instanceKlassHandle klass, bool should_verify_class) {
145 symbolOop name = klass->name(); 145 symbolOop name = klass->name();
146 klassOop refl_magic_klass = SystemDictionary::reflect_magic_klass(); 146 klassOop refl_magic_klass = SystemDictionary::reflect_MagicAccessorImpl_klass();
147 147
148 return (should_verify_for(klass->class_loader(), should_verify_class) && 148 return (should_verify_for(klass->class_loader(), should_verify_class) &&
149 // return if the class is a bootstrapping class 149 // return if the class is a bootstrapping class
150 // or defineClass specified not to verify by default (flags override passed arg) 150 // or defineClass specified not to verify by default (flags override passed arg)
151 // We need to skip the following four for bootstraping 151 // We need to skip the following four for bootstraping

mercurial