hotspot/src/share/vm/services/classLoadingService.cpp
author sgehwolf
Mon, 07 Aug 2017 12:19:17 +0200
changeset 46766 1f26ac73b909
parent 46335 da075aa9241f
permissions -rw-r--r--
8185900: hotspot build failed with gcc version Red Hat 4.4.7-3 Summary: Cast to void* within DTRACE_CLASS* macros. Reviewed-by: coleenp, shade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 40924
diff changeset
     2
 * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4576
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4576
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4576
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "memory/allocation.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 35917
diff changeset
    28
#include "memory/resourceArea.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "services/classLoadingService.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "services/memoryService.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "utilities/dtrace.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13975
diff changeset
    35
#include "utilities/macros.hpp"
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 24424
diff changeset
    36
#include "utilities/defaultStream.hpp"
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 33611
diff changeset
    37
#include "logging/log.hpp"
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 33611
diff changeset
    38
#include "logging/logConfiguration.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#ifdef DTRACE_ENABLED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// Only bother with this argument setup if dtrace is available
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    44
#define HOTSPOT_CLASS_unloaded HOTSPOT_CLASS_UNLOADED
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    45
#define HOTSPOT_CLASS_loaded HOTSPOT_CLASS_LOADED
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    46
#define DTRACE_CLASSLOAD_PROBE(type, clss, shared)  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    47
  {                                                 \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    48
    char* data = NULL;                              \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    49
    int len = 0;                                    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    50
    Symbol* name = (clss)->name();                  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    51
    if (name != NULL) {                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    52
      data = (char*)name->bytes();                  \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    53
      len = name->utf8_length();                    \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    54
    }                                               \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    55
    HOTSPOT_CLASS_##type( /* type = unloaded, loaded */ \
46766
1f26ac73b909 8185900: hotspot build failed with gcc version Red Hat 4.4.7-3
sgehwolf
parents: 46335
diff changeset
    56
      data, len, (void*)(clss)->class_loader(), (shared)); \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    57
  }
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8921
diff changeset
    58
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#else //  ndef DTRACE_ENABLED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#define DTRACE_CLASSLOAD_PROBE(type, clss, shared)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    65
#if INCLUDE_MANAGEMENT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// counters for classes loaded from class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
PerfCounter*    ClassLoadingService::_classes_loaded_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
PerfCounter*    ClassLoadingService::_classes_unloaded_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
PerfCounter*    ClassLoadingService::_classbytes_loaded = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
PerfCounter*    ClassLoadingService::_classbytes_unloaded = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// counters for classes loaded from shared archive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
PerfCounter*    ClassLoadingService::_shared_classes_loaded_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
PerfCounter*    ClassLoadingService::_shared_classes_unloaded_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
PerfCounter*    ClassLoadingService::_shared_classbytes_loaded = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
PerfCounter*    ClassLoadingService::_shared_classbytes_unloaded = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
PerfVariable*   ClassLoadingService::_class_methods_size = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void ClassLoadingService::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // These counters are for java.lang.management API support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // They are created even if -XX:-UsePerfData is set and in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // that case, they will be allocated on C heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  _classes_loaded_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                 PerfDataManager::create_counter(JAVA_CLS, "loadedClasses",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                                 PerfData::U_Events, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  _classes_unloaded_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                 PerfDataManager::create_counter(JAVA_CLS, "unloadedClasses",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                                                 PerfData::U_Events, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _shared_classes_loaded_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                 PerfDataManager::create_counter(JAVA_CLS, "sharedLoadedClasses",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                                                 PerfData::U_Events, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _shared_classes_unloaded_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                 PerfDataManager::create_counter(JAVA_CLS, "sharedUnloadedClasses",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                                                 PerfData::U_Events, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    _classbytes_loaded =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                 PerfDataManager::create_counter(SUN_CLS, "loadedBytes",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                                 PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _classbytes_unloaded =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                 PerfDataManager::create_counter(SUN_CLS, "unloadedBytes",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                                                 PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    _shared_classbytes_loaded =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                 PerfDataManager::create_counter(SUN_CLS, "sharedLoadedBytes",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                                                 PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    _shared_classbytes_unloaded =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                 PerfDataManager::create_counter(SUN_CLS, "sharedUnloadedBytes",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                                                 PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _class_methods_size =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
                 PerfDataManager::create_variable(SUN_CLS, "methodBytes",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                                                  PerfData::U_Bytes, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   122
void ClassLoadingService::notify_class_unloaded(InstanceKlass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  DTRACE_CLASSLOAD_PROBE(unloaded, k, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Classes that can be unloaded must be non-shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _classes_unloaded_count->inc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // add the class size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    size_t size = compute_class_size(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _classbytes_unloaded->inc(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    // Compute method size & subtract from running total.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    // We are called during phase 1 of mark sweep, so it's
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   134
    // still ok to iterate through Method*s here.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   135
    Array<Method*>* methods = k->methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    for (int i = 0; i < methods->length(); i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   137
      _class_methods_size->inc(-methods->at(i)->size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37248
diff changeset
   141
  if (log_is_enabled(Info, class, unload)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    ResourceMark rm;
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 37248
diff changeset
   143
    log_info(class, unload)("unloading class %s " INTPTR_FORMAT , k->external_name(), p2i(k));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   147
void ClassLoadingService::notify_class_loaded(InstanceKlass* k, bool shared_class) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  DTRACE_CLASSLOAD_PROBE(loaded, k, shared_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  PerfCounter* classes_counter = (shared_class ? _shared_classes_loaded_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                               : _classes_loaded_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // increment the count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  classes_counter->inc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    PerfCounter* classbytes_counter = (shared_class ? _shared_classbytes_loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                                                    : _classbytes_loaded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // add the class size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    size_t size = compute_class_size(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    classbytes_counter->inc(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   163
size_t ClassLoadingService::compute_class_size(InstanceKlass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   164
  // lifted from ClassStatistics.do_class(Klass* k)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  size_t class_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   168
  class_size += k->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33105
diff changeset
   170
  if (k->is_instance_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    class_size += k->methods()->size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   172
    // FIXME: Need to count the contents of methods
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    class_size += k->constants()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    class_size += k->local_interfaces()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    class_size += k->transitive_interfaces()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // We do not have to count implementors, since we only store one!
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   177
    // FIXME: How should these be accounted for, now when they have moved.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   178
    //class_size += k->fields()->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  return class_size * oopSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
bool ClassLoadingService::set_verbose(bool verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  MutexLocker m(Management_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // verbose will be set to the previous value
40924
226073476e18 8165226: Bad -Xloggc: arguments crashes the VM
mlarsson
parents: 38151
diff changeset
   186
  LogLevelType level = verbose ? LogLevel::Info : LogLevel::Off;
226073476e18 8165226: Bad -Xloggc: arguments crashes the VM
mlarsson
parents: 38151
diff changeset
   187
  LogConfiguration::configure_stdout(level, false, LOG_TAGS(class, load));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  reset_trace_class_unloading();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  return verbose;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// Caller to this function must own Management_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
void ClassLoadingService::reset_trace_class_unloading() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  assert(Management_lock->owned_by_self(), "Must own the Management_lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  bool value = MemoryService::get_verbose() || ClassLoadingService::get_verbose();
40924
226073476e18 8165226: Bad -Xloggc: arguments crashes the VM
mlarsson
parents: 38151
diff changeset
   196
  LogLevelType level = value ? LogLevel::Info : LogLevel::Off;
226073476e18 8165226: Bad -Xloggc: arguments crashes the VM
mlarsson
parents: 38151
diff changeset
   197
  LogConfiguration::configure_stdout(level, false, LOG_TAGS(class, unload));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   200
#endif // INCLUDE_MANAGEMENT