# HG changeset patch # User jiangli # Date 1463521336 14400 # Node ID 615905db3fe43a93ec00b3184df8773dc3a870c0 # Parent 78d71e48e0400d36cac35d26714a26464674d33e 8149977: DumpLoadedClassList should not include generated classes. Summary: Exclude anonymous classes from the generated class list. Reviewed-by: ccheung, iklam, hseigel diff -r 78d71e48e040 -r 615905db3fe4 hotspot/src/share/vm/classfile/classFileParser.cpp --- a/hotspot/src/share/vm/classfile/classFileParser.cpp Tue May 17 17:40:19 2016 +0000 +++ b/hotspot/src/share/vm/classfile/classFileParser.cpp Tue May 17 17:42:16 2016 -0400 @@ -5708,8 +5708,10 @@ #if INCLUDE_CDS if (DumpLoadedClassList != NULL && stream->source() != NULL && classlist_file->is_open()) { - // Only dump the classes that can be stored into CDS archive - if (SystemDictionaryShared::is_sharing_possible(_loader_data)) { + // Only dump the classes that can be stored into CDS archive. + // Anonymous classes such as generated LambdaForm classes are also not included. + if (SystemDictionaryShared::is_sharing_possible(_loader_data) && + _host_klass == NULL) { ResourceMark rm(THREAD); classlist_file->print_cr("%s", _class_name->as_C_string()); classlist_file->flush();