mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
Simple renaming to be consistent with instanceKlass->InstanceKlass renaming Reviewed-by: stefank, jmasa
This commit is contained in:
parent
cd5df1082a
commit
12b9a4edbb
27 changed files with 111 additions and 111 deletions
|
@ -435,9 +435,9 @@ static inline void add_vtable(void** list, int* n, void* o, int count) {
|
|||
void Universe::init_self_patching_vtbl_list(void** list, int count) {
|
||||
int n = 0;
|
||||
{ InstanceKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ instanceClassLoaderKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ instanceMirrorKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ instanceRefKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ InstanceClassLoaderKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ InstanceMirrorKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ InstanceRefKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ typeArrayKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ objArrayKlass o; add_vtable(list, &n, &o, count); }
|
||||
{ Method o; add_vtable(list, &n, &o, count); }
|
||||
|
@ -486,7 +486,7 @@ void Universe::fixup_mirrors(TRAPS) {
|
|||
assert(SystemDictionary::Class_klass_loaded(), "java.lang.Class should be loaded");
|
||||
HandleMark hm(THREAD);
|
||||
// Cache the start of the static fields
|
||||
instanceMirrorKlass::init_offset_of_static_fields();
|
||||
InstanceMirrorKlass::init_offset_of_static_fields();
|
||||
|
||||
GrowableArray <Klass*>* list = java_lang_Class::fixup_mirror_list();
|
||||
int list_length = list->length();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue