comparison src/share/vm/classfile/classFileParser.cpp @ 13055:fce21ac5968d

8027229: ICCE expected for >=2 maximally specific default methods. Summary: Need to process defaults for interfaces for invokespecial Reviewed-by: lfoltan, hseigel, coleenp, jrose
author acorn
date Wed, 13 Nov 2013 07:31:26 -0800
parents 1a93f2c5945a
children 096c224171c4 19146c82b6fc 0611ce949aaa
comparison
equal deleted inserted replaced
13054:19f8a5d7600b 13055:fce21ac5968d
4078 java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle)); 4078 java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle));
4079 4079
4080 4080
4081 // Generate any default methods - default methods are interface methods 4081 // Generate any default methods - default methods are interface methods
4082 // that have a default implementation. This is new with Lambda project. 4082 // that have a default implementation. This is new with Lambda project.
4083 if (has_default_methods && !access_flags.is_interface() ) { 4083 if (has_default_methods ) {
4084 DefaultMethods::generate_default_methods( 4084 DefaultMethods::generate_default_methods(
4085 this_klass(), &all_mirandas, CHECK_(nullHandle)); 4085 this_klass(), &all_mirandas, CHECK_(nullHandle));
4086 } 4086 }
4087 4087
4088 // Update the loader_data graph. 4088 // Update the loader_data graph.