< prev index next >

src/hotspot/share/classfile/dictionary.cpp

Print this page

        

*** 244,254 **** } } // Used to scan and relocate the classes during CDS archive dump. void Dictionary::classes_do(MetaspaceClosure* it) { ! assert(DumpSharedSpaces || DynamicDumpSharedSpaces, "dump-time only"); for (int index = 0; index < table_size(); index++) { for (DictionaryEntry* probe = bucket(index); probe != NULL; probe = probe->next()) { it->push(probe->klass_addr()); --- 244,254 ---- } } // Used to scan and relocate the classes during CDS archive dump. void Dictionary::classes_do(MetaspaceClosure* it) { ! assert(Arguments::is_dumping_archive(), "dump-time only"); for (int index = 0; index < table_size(); index++) { for (DictionaryEntry* probe = bucket(index); probe != NULL; probe = probe->next()) { it->push(probe->klass_addr());
< prev index next >