src/hotspot/share/runtime/vmOperations.cpp
branchstuefe-new-metaspace-branch
changeset 58063 bdf136b8ae0e
parent 57758 91a758925be7
child 58494 54c1ba464b78
equal deleted inserted replaced
58062:65cad575ace3 58063:bdf136b8ae0e
    31 #include "gc/shared/isGCActiveMark.hpp"
    31 #include "gc/shared/isGCActiveMark.hpp"
    32 #include "logging/log.hpp"
    32 #include "logging/log.hpp"
    33 #include "logging/logStream.hpp"
    33 #include "logging/logStream.hpp"
    34 #include "logging/logConfiguration.hpp"
    34 #include "logging/logConfiguration.hpp"
    35 #include "memory/heapInspection.hpp"
    35 #include "memory/heapInspection.hpp"
       
    36 #include "memory/metaspace/metaspaceReport.hpp"
    36 #include "memory/resourceArea.hpp"
    37 #include "memory/resourceArea.hpp"
    37 #include "memory/universe.hpp"
    38 #include "memory/universe.hpp"
    38 #include "oops/symbol.hpp"
    39 #include "oops/symbol.hpp"
    39 #include "runtime/arguments.hpp"
    40 #include "runtime/arguments.hpp"
    40 #include "runtime/deoptimization.hpp"
    41 #include "runtime/deoptimization.hpp"
   219 void VM_PrintJNI::doit() {
   220 void VM_PrintJNI::doit() {
   220   JNIHandles::print_on(_out);
   221   JNIHandles::print_on(_out);
   221 }
   222 }
   222 
   223 
   223 void VM_PrintMetadata::doit() {
   224 void VM_PrintMetadata::doit() {
   224   MetaspaceUtils::print_report(_out, _scale, _flags);
   225   metaspace::MetaspaceReporter::print_report(_out, _scale, _flags);
   225 }
   226 }
   226 
   227 
   227 VM_FindDeadlocks::~VM_FindDeadlocks() {
   228 VM_FindDeadlocks::~VM_FindDeadlocks() {
   228   if (_deadlocks != NULL) {
   229   if (_deadlocks != NULL) {
   229     DeadlockCycle* cycle = _deadlocks;
   230     DeadlockCycle* cycle = _deadlocks;