comparison src/share/vm/classfile/classLoader.cpp @ 2323:bc6b27fb3568

6725983: Assertion "method->method_holder())->is_not_initialized(),"method holder must be initialized" Reviewed-by: kvn, iveresov
author never
date Tue, 01 Mar 2011 10:27:15 -0800
parents 34457f6ac818
children 1d1603768966
comparison
equal deleted inserted replaced
2322:50c0f22d6d0e 2323:bc6b27fb3568
1330 tty->print_cr("Preloading failed for (%d) %s", _compile_the_world_counter, buffer); 1330 tty->print_cr("Preloading failed for (%d) %s", _compile_the_world_counter, buffer);
1331 } 1331 }
1332 } 1332 }
1333 1333
1334 if (_compile_the_world_counter >= CompileTheWorldStartAt) { 1334 if (_compile_the_world_counter >= CompileTheWorldStartAt) {
1335 if (k.is_null() || (exception_occurred && !CompileTheWorldIgnoreInitErrors)) { 1335 if (k.is_null() || exception_occurred) {
1336 // If something went wrong (e.g. ExceptionInInitializerError) we skip this class 1336 // If something went wrong (e.g. ExceptionInInitializerError) we skip this class
1337 tty->print_cr("CompileTheWorld (%d) : Skipping %s", _compile_the_world_counter, buffer); 1337 tty->print_cr("CompileTheWorld (%d) : Skipping %s", _compile_the_world_counter, buffer);
1338 } else { 1338 } else {
1339 tty->print_cr("CompileTheWorld (%d) : %s", _compile_the_world_counter, buffer); 1339 tty->print_cr("CompileTheWorld (%d) : %s", _compile_the_world_counter, buffer);
1340 // Preload all classes to get around uncommon traps 1340 // Preload all classes to get around uncommon traps