# HG changeset patch # User coleenp # Date 1403275716 14400 # Node ID ae92351815b6e7f2747ef7d197e1e2b7ee6a3179 # Parent b334bc7ff73e5c0d001ba07ef9b75b9b27ea96ce 8039150: host_klass invariant fails when verifying newly loaded JSR-292 anonymous classes Summary: Initialize host_klass while parsing the class with the other initializations. Reviewed-by: sspitsyn, stefank diff -r b334bc7ff73e -r ae92351815b6 src/share/vm/classfile/classFileParser.cpp --- a/src/share/vm/classfile/classFileParser.cpp Fri Jun 20 12:39:56 2014 -0700 +++ b/src/share/vm/classfile/classFileParser.cpp Fri Jun 20 10:48:36 2014 -0400 @@ -4022,6 +4022,11 @@ this_klass->set_major_version(major_version); this_klass->set_has_default_methods(has_default_methods); + if (!host_klass.is_null()) { + assert (this_klass->is_anonymous(), "should be the same"); + this_klass->set_host_klass(host_klass()); + } + // Set up Method*::intrinsic_id as soon as we know the names of methods. // (We used to do this lazily, but now we query it in Rewriter, // which is eagerly done for every method, so we might as well do it now, diff -r b334bc7ff73e -r ae92351815b6 src/share/vm/classfile/systemDictionary.cpp --- a/src/share/vm/classfile/systemDictionary.cpp Fri Jun 20 12:39:56 2014 -0700 +++ b/src/share/vm/classfile/systemDictionary.cpp Fri Jun 20 10:48:36 2014 -0400 @@ -997,7 +997,6 @@ if (host_klass.not_null() && k.not_null()) { assert(EnableInvokeDynamic, ""); - k->set_host_klass(host_klass()); // If it's anonymous, initialize it now, since nobody else will. {