< prev index next >

src/share/vm/runtime/java.cpp

Print this page
rev 13105 : imported patch 8181917-refactor-ul-logstream-alt1-callsite-changes

*** 35,44 **** --- 35,45 ---- #if INCLUDE_JVMCI #include "jvmci/jvmciCompiler.hpp" #include "jvmci/jvmciRuntime.hpp" #endif #include "logging/log.hpp" + #include "logging/logStream.hpp" #include "memory/oopFactory.hpp" #include "memory/resourceArea.hpp" #include "memory/universe.hpp" #include "oops/constantPool.hpp" #include "oops/generateOopMap.hpp"
*** 477,489 **** // Print GC/heap related information. Log(gc, heap, exit) log; if (log.is_info()) { ResourceMark rm; ! Universe::print_on(log.info_stream()); if (log.is_trace()) { ! ClassLoaderDataGraph::dump_on(log.trace_stream()); } } AdaptiveSizePolicyOutput::print(); if (PrintBytecodeHistogram) { --- 478,492 ---- // Print GC/heap related information. Log(gc, heap, exit) log; if (log.is_info()) { ResourceMark rm; ! LogStream ls_info(log.info()); ! Universe::print_on(&ls_info); if (log.is_trace()) { ! LogStream ls_trace(log.trace()); ! ClassLoaderDataGraph::dump_on(&ls_trace); } } AdaptiveSizePolicyOutput::print(); if (PrintBytecodeHistogram) {
< prev index next >