mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8260467: Move well-known classes from systemDictionary.hpp to vmClasses.hpp
Reviewed-by: dholmes, coleenp
This commit is contained in:
parent
62ffe75b1f
commit
396a496f3c
35 changed files with 751 additions and 572 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue