--- old/src/hotspot/share/classfile/classListParser.cpp 2020-08-18 21:51:53.878162579 -0700 +++ new/src/hotspot/share/classfile/classListParser.cpp 2020-08-18 21:51:53.766158363 -0700 @@ -33,6 +33,7 @@ #include "classfile/systemDictionaryShared.hpp" #include "logging/log.hpp" #include "logging/logTag.hpp" +#include "memory/lambdaFormInvokers.hpp" #include "memory/metaspaceShared.hpp" #include "memory/resourceArea.hpp" #include "runtime/handles.inline.hpp" @@ -85,6 +86,12 @@ if (*_line == '#') { // comment continue; } + // The line is output TRACE_RESOLVE + if (strncmp(_line, LambdaFormInvokers::lambda_form_invoker_tag(), + strlen(LambdaFormInvokers::lambda_form_invoker_tag())) == 0) { + LambdaFormInvokers::append(os::strdup((const char*)_line, mtInternal)); + continue; + } break; }