8260467: Move well-known classes from systemDictionary.hpp to vmClasses.hpp

Reviewed-by: dholmes, coleenp
This commit is contained in:
Ioi Lam 2021-01-28 04:24:04 +00:00
parent 62ffe75b1f
commit 396a496f3c
35 changed files with 751 additions and 572 deletions

View file

@ -2178,9 +2178,9 @@ void SystemDictionaryShared::serialize_dictionary_headers(SerializeClosure* soc,
}
}
void SystemDictionaryShared::serialize_well_known_klasses(SerializeClosure* soc) {
for (int i = FIRST_WKID; i < WKID_LIMIT; i++) {
soc->do_ptr((void**)&_well_known_klasses[i]);
void SystemDictionaryShared::serialize_vm_classes(SerializeClosure* soc) {
for (auto id : EnumRange<VMClassID>{}) {
soc->do_ptr((void**)klass_addr_at(id));
}
}