comparison jvmci/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/CompileTheWorld.java @ 21882:90e3fecd4143

renamed fields in TTY to better reflect their semantics
author Doug Simon <doug.simon@oracle.com>
date Tue, 09 Jun 2015 17:29:15 +0200
parents 395ac43a8578
children
comparison
equal deleted inserted replaced
21881:3b5c9d5bfcaa 21882:90e3fecd4143
468 compileTime.getAndAdd(System.currentTimeMillis() - start); 468 compileTime.getAndAdd(System.currentTimeMillis() - start);
469 compiledMethodsCounter.incrementAndGet(); 469 compiledMethodsCounter.incrementAndGet();
470 } catch (Throwable t) { 470 } catch (Throwable t) {
471 // Catch everything and print a message 471 // Catch everything and print a message
472 println("CompileTheWorld (%d) : Error compiling method: %s", counter, method.format("%H.%n(%p):%r")); 472 println("CompileTheWorld (%d) : Error compiling method: %s", counter, method.format("%H.%n(%p):%r"));
473 t.printStackTrace(TTY.cachedOut); 473 t.printStackTrace(TTY.out);
474 } 474 }
475 } 475 }
476 476
477 /** 477 /**
478 * Determines if a method should be compiled (Cf. CompilationPolicy::can_be_compiled). 478 * Determines if a method should be compiled (Cf. CompilationPolicy::can_be_compiled).