< prev index next >

src/hotspot/share/classfile/klassFactory.cpp

Print this page

        

*** 100,109 **** --- 100,110 ---- loader_data, protection_domain, NULL, // unsafe_anonymous_host NULL, // cp_patches false, // is_nonfindable + false, // can_access_vm_annotations ClassFileParser::BROADCAST, // publicity level CHECK_NULL); InstanceKlass* new_ik = parser.create_instance_klass(true /* changed_by_loadhook */, CHECK_NULL); if (cached_class_file != NULL) {
*** 184,194 **** Symbol* name, ClassLoaderData* loader_data, Handle protection_domain, const InstanceKlass* unsafe_anonymous_host, GrowableArray<Handle>* cp_patches, ! bool is_nonfindable, TRAPS) { assert(stream != NULL, "invariant"); assert(loader_data != NULL, "invariant"); assert(THREAD->is_Java_thread(), "must be a JavaThread"); --- 185,196 ---- Symbol* name, ClassLoaderData* loader_data, Handle protection_domain, const InstanceKlass* unsafe_anonymous_host, GrowableArray<Handle>* cp_patches, ! const bool is_nonfindable, ! const bool can_access_vm_annotations, TRAPS) { assert(stream != NULL, "invariant"); assert(loader_data != NULL, "invariant"); assert(THREAD->is_Java_thread(), "must be a JavaThread");
*** 217,226 **** --- 219,229 ---- loader_data, protection_domain, unsafe_anonymous_host, cp_patches, is_nonfindable, + can_access_vm_annotations, ClassFileParser::BROADCAST, // publicity level CHECK_NULL); InstanceKlass* result = parser.create_instance_klass(old_stream != stream, CHECK_NULL); assert(result == parser.create_instance_klass(old_stream != stream, THREAD), "invariant");
< prev index next >