hotspot/src/share/vm/classfile/classLoader.cpp
changeset 8497 aa7fd2c3caa9
parent 8327 f5a13a17d5f3
child 8921 14bfe81f2a9d
equal deleted inserted replaced
8496:2d29a13b66ed 8497:aa7fd2c3caa9
  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