src/hotspot/share/classfile/classLoaderData.cpp
author zgu
Tue, 06 Feb 2018 08:24:36 -0500
changeset 48873 9536c39ac6de
parent 48871 120d6893f32f
child 48874 f09fdaad7321
permissions -rw-r--r--
8193184: NMT: Report array class count in NMT summary Summary: Report array class and instance class count in NMT summary report Reviewed-by: coleenp, minqi
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
     1
 /*
48811
58787a1708d2 8175249: VMThread::run fails in VerifyBeforeExit : Universe::verify
coleenp
parents: 48613
diff changeset
     2
 * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     4
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     8
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    13
 * accompanied this code).
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    14
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    18
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    21
 * questions.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    22
 *
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    23
 */
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    24
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    25
// A ClassLoaderData identifies the full set of class types that a class
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    26
// loader's name resolution strategy produces for a given configuration of the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    27
// class loader.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    28
// Class types in the ClassLoaderData may be defined by from class file binaries
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    29
// provided by the class loader, or from other class loader it interacts with
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    30
// according to its name resolution strategy.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    31
//
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    32
// Class loaders that implement a deterministic name resolution strategy
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    33
// (including with respect to their delegation behavior), such as the boot, the
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
    34
// platform, and the system loaders of the JDK's built-in class loader
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    35
// hierarchy, always produce the same linkset for a given configuration.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    36
//
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    37
// ClassLoaderData carries information related to a linkset (e.g.,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    38
// metaspace holding its klass definitions).
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    39
// The System Dictionary and related data structures (e.g., placeholder table,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    40
// loader constraints table) as well as the runtime representation of classes
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    41
// only reference ClassLoaderData.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    42
//
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    43
// Instances of java.lang.ClassLoader holds a pointer to a ClassLoaderData that
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    44
// that represent the loader's "linking domain" in the JVM.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    45
//
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    46
// The bootstrap loader (represented by NULL) also has a ClassLoaderData,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    47
// the singleton class the_null_class_loader_data().
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    48
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    49
#include "precompiled.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    50
#include "classfile/classLoaderData.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    51
#include "classfile/classLoaderData.inline.hpp"
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
    52
#include "classfile/dictionary.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    53
#include "classfile/javaClasses.hpp"
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15220
diff changeset
    54
#include "classfile/metadataOnStackMark.hpp"
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
    55
#include "classfile/moduleEntry.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
    56
#include "classfile/packageEntry.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    57
#include "classfile/systemDictionary.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    58
#include "code/codeCache.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29577
diff changeset
    59
#include "gc/shared/gcLocker.hpp"
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
    60
#include "logging/log.hpp"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
    61
#include "logging/logStream.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    62
#include "memory/metadataFactory.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    63
#include "memory/metaspaceShared.hpp"
15430
7c35f12cf1e5 8006040: NPG: on_stack processing wastes space in ConstantPool
coleenp
parents: 15220
diff changeset
    64
#include "memory/oopFactory.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 37242
diff changeset
    65
#include "memory/resourceArea.hpp"
48613
d8bdf14c4f1e 8191888: Refactor ClassLoaderData::remove_handle to use the Access API
eosterlund
parents: 48405
diff changeset
    66
#include "oops/access.inline.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28365
diff changeset
    67
#include "oops/objArrayOop.inline.hpp"
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28365
diff changeset
    68
#include "oops/oop.inline.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 40358
diff changeset
    69
#include "runtime/atomic.hpp"
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
    70
#include "runtime/javaCalls.hpp"
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31041
diff changeset
    71
#include "runtime/jniHandles.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    72
#include "runtime/mutex.hpp"
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
    73
#include "runtime/orderAccess.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    74
#include "runtime/safepoint.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    75
#include "runtime/synchronizer.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    76
#include "utilities/growableArray.hpp"
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21183
diff changeset
    77
#include "utilities/macros.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    78
#include "utilities/ostream.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
    79
#if INCLUDE_TRACE
27673
df559a888b9f 8065361: Fixup headers and definitions for INCLUDE_TRACE
mgronlun
parents: 27461
diff changeset
    80
#include "trace/tracing.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
    81
#endif
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
    82
48873
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
    83
volatile size_t ClassLoaderDataGraph::_num_array_classes = 0;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
    84
volatile size_t ClassLoaderDataGraph::_num_instance_classes = 0;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
    85
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    86
ClassLoaderData * ClassLoaderData::_the_null_class_loader_data = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
    87
17110
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
    88
ClassLoaderData::ClassLoaderData(Handle h_class_loader, bool is_anonymous, Dependencies dependencies) :
14816
f2935b95cb54 8004883: NPG: clean up anonymous class fix
coleenp
parents: 14588
diff changeset
    89
  _class_loader(h_class_loader()),
22900
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
    90
  _is_anonymous(is_anonymous),
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
    91
  // An anonymous class loader data doesn't have anything to keep
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
    92
  // it from being unloaded during parsing of the anonymous class.
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
    93
  // The null-class-loader should always be kept alive.
38014
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
    94
  _keep_alive((is_anonymous || h_class_loader.is_null()) ? 1 : 0),
14816
f2935b95cb54 8004883: NPG: clean up anonymous class fix
coleenp
parents: 14588
diff changeset
    95
  _metaspace(NULL), _unloading(false), _klasses(NULL),
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
    96
  _modules(NULL), _packages(NULL),
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    97
  _claimed(0), _modified_oops(true), _accumulated_modified_oops(false),
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    98
  _jmethod_ids(NULL), _handles(), _deallocate_list(NULL),
43410
8c70a25642c4 8171809: Remove unused CDS code from JDK 9
iklam
parents: 42639
diff changeset
    99
  _next(NULL), _dependencies(dependencies),
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27694
diff changeset
   100
  _metaspace_lock(new Mutex(Monitor::leaf+1, "Metaspace allocation lock", true,
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27694
diff changeset
   101
                            Monitor::_safepoint_check_never)) {
46387
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   102
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   103
  // A ClassLoaderData created solely for an anonymous class should never have a
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   104
  // ModuleEntryTable or PackageEntryTable created for it. The defining package
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   105
  // and module for an anonymous class will be found in its host class.
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   106
  if (!is_anonymous) {
46420
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   107
    _packages = new PackageEntryTable(PackageEntryTable::_packagetable_entry_size);
46387
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   108
    if (h_class_loader.is_null()) {
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   109
      // Create unnamed module for boot loader
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   110
      _unnamed_module = ModuleEntry::create_boot_unnamed_module(this);
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   111
    } else {
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   112
      // Create unnamed module for all other loaders
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   113
      _unnamed_module = ModuleEntry::create_unnamed_module(this);
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   114
    }
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   115
  } else {
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   116
    _unnamed_module = NULL;
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   117
  }
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   118
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   119
  if (!is_anonymous) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   120
    _dictionary = create_dictionary();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   121
  } else {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   122
    _dictionary = NULL;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   123
  }
42639
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
   124
  TRACE_INIT_ID(this);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   125
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   126
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   127
void ClassLoaderData::init_dependencies(TRAPS) {
17110
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
   128
  assert(!Universe::is_fully_initialized(), "should only be called when initializing");
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
   129
  assert(is_the_null_class_loader_data(), "should only call this for the null class loader");
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   130
  _dependencies.init(CHECK);
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   131
}
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   132
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   133
void ClassLoaderData::Dependencies::init(TRAPS) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   134
  // Create empty dependencies array to add to. CMS requires this to be
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   135
  // an oop so that it can track additions via card marks.  We think.
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   136
  _list_head = oopFactory::new_objectArray(2, CHECK);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   137
}
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   138
44084
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   139
ClassLoaderData::ChunkedHandleList::~ChunkedHandleList() {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   140
  Chunk* c = _head;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   141
  while (c != NULL) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   142
    Chunk* next = c->_next;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   143
    delete c;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   144
    c = next;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   145
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   146
}
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   147
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   148
oop* ClassLoaderData::ChunkedHandleList::add(oop o) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   149
  if (_head == NULL || _head->_size == Chunk::CAPACITY) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   150
    Chunk* next = new Chunk(_head);
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   151
    OrderAccess::release_store(&_head, next);
44084
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   152
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   153
  oop* handle = &_head->_data[_head->_size];
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   154
  *handle = o;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   155
  OrderAccess::release_store(&_head->_size, _head->_size + 1);
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   156
  return handle;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   157
}
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   158
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   159
inline void ClassLoaderData::ChunkedHandleList::oops_do_chunk(OopClosure* f, Chunk* c, const juint size) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   160
  for (juint i = 0; i < size; i++) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   161
    if (c->_data[i] != NULL) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   162
      f->do_oop(&c->_data[i]);
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   163
    }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   164
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   165
}
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   166
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   167
void ClassLoaderData::ChunkedHandleList::oops_do(OopClosure* f) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   168
  Chunk* head = OrderAccess::load_acquire(&_head);
44084
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   169
  if (head != NULL) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   170
    // Must be careful when reading size of head
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   171
    oops_do_chunk(f, head, OrderAccess::load_acquire(&head->_size));
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   172
    for (Chunk* c = head->_next; c != NULL; c = c->_next) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   173
      oops_do_chunk(f, c, c->_size);
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   174
    }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   175
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   176
}
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   177
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   178
#ifdef ASSERT
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   179
class VerifyContainsOopClosure : public OopClosure {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   180
  oop* _target;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   181
  bool _found;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   182
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   183
 public:
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   184
  VerifyContainsOopClosure(oop* target) : _target(target), _found(false) {}
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   185
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   186
  void do_oop(oop* p) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   187
    if (p == _target) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   188
      _found = true;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   189
    }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   190
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   191
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   192
  void do_oop(narrowOop* p) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   193
    // The ChunkedHandleList should not contain any narrowOop
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   194
    ShouldNotReachHere();
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   195
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   196
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   197
  bool found() const {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   198
    return _found;
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   199
  }
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   200
};
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   201
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   202
bool ClassLoaderData::ChunkedHandleList::contains(oop* p) {
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   203
  VerifyContainsOopClosure cl(p);
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   204
  oops_do(&cl);
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   205
  return cl.found();
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   206
}
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   207
#endif // ASSERT
44084
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   208
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   209
bool ClassLoaderData::claim() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   210
  if (_claimed == 1) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   211
    return false;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   212
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   213
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   214
  return (int) Atomic::cmpxchg(1, &_claimed, 0) == 0;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   215
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   216
38014
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   217
// Anonymous classes have their own ClassLoaderData that is marked to keep alive
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   218
// while the class is being parsed, and if the class appears on the module fixup list.
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   219
// Due to the uniqueness that no other class shares the anonymous class' name or
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   220
// ClassLoaderData, no other non-GC thread has knowledge of the anonymous class while
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   221
// it is being defined, therefore _keep_alive is not volatile or atomic.
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   222
void ClassLoaderData::inc_keep_alive() {
40358
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   223
  if (is_anonymous()) {
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   224
    assert(_keep_alive >= 0, "Invalid keep alive increment count");
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   225
    _keep_alive++;
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   226
  }
38014
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   227
}
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   228
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   229
void ClassLoaderData::dec_keep_alive() {
40358
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   230
  if (is_anonymous()) {
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   231
    assert(_keep_alive > 0, "Invalid keep alive decrement count");
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   232
    _keep_alive--;
48774f26918a 8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents: 40339
diff changeset
   233
  }
38014
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   234
}
8731fa11f766 8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents: 37415
diff changeset
   235
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   236
void ClassLoaderData::oops_do(OopClosure* f, bool must_claim, bool clear_mod_oops) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   237
  if (must_claim && !claim()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   238
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   239
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   240
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   241
  // Only clear modified_oops after the ClassLoaderData is claimed.
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   242
  if (clear_mod_oops) {
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   243
    clear_modified_oops();
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   244
  }
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   245
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   246
  f->do_oop(&_class_loader);
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   247
  _dependencies.oops_do(f);
44084
501b6d07e6dd 8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents: 43410
diff changeset
   248
  _handles.oops_do(f);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   249
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   250
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   251
void ClassLoaderData::Dependencies::oops_do(OopClosure* f) {
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   252
  f->do_oop((oop*)&_list_head);
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   253
}
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   254
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   255
void ClassLoaderData::classes_do(KlassClosure* klass_closure) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   256
  // Lock-free access requires load_acquire
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   257
  for (Klass* k = OrderAccess::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   258
    klass_closure->do_klass(k);
16352
1ff72c6eaa70 8007725: NPG: Klass::restore_unshareable_info() triggers assert(k->java_mirror() == NULL)
coleenp
parents: 15437
diff changeset
   259
    assert(k != k->next_link(), "no loops!");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   260
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   261
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   262
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
   263
void ClassLoaderData::classes_do(void f(Klass * const)) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   264
  // Lock-free access requires load_acquire
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   265
  for (Klass* k = OrderAccess::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
   266
    f(k);
42639
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
   267
    assert(k != k->next_link(), "no loops!");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
   268
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
   269
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
   270
23526
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
   271
void ClassLoaderData::methods_do(void f(Method*)) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   272
  // Lock-free access requires load_acquire
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   273
  for (Klass* k = OrderAccess::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
46380
4a51438196cf 8026985: Rewrite SystemDictionary::classes_do and Dictionary::classes_do to use KlassClosure
coleenp
parents: 46338
diff changeset
   274
    if (k->is_instance_klass() && InstanceKlass::cast(k)->is_loaded()) {
23526
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
   275
      InstanceKlass::cast(k)->methods_do(f);
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
   276
    }
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
   277
  }
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
   278
}
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
   279
21183
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   280
void ClassLoaderData::loaded_classes_do(KlassClosure* klass_closure) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   281
  // Lock-free access requires load_acquire
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   282
  for (Klass* k = OrderAccess::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
21183
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   283
    // Do not filter ArrayKlass oops here...
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33105
diff changeset
   284
    if (k->is_array_klass() || (k->is_instance_klass() && InstanceKlass::cast(k)->is_loaded())) {
21183
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   285
      klass_closure->do_klass(k);
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   286
    }
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   287
  }
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   288
}
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
   289
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   290
void ClassLoaderData::classes_do(void f(InstanceKlass*)) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   291
  // Lock-free access requires load_acquire
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   292
  for (Klass* k = OrderAccess::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33105
diff changeset
   293
    if (k->is_instance_klass()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   294
      f(InstanceKlass::cast(k));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   295
    }
16352
1ff72c6eaa70 8007725: NPG: Klass::restore_unshareable_info() triggers assert(k->java_mirror() == NULL)
coleenp
parents: 15437
diff changeset
   296
    assert(k != k->next_link(), "no loops!");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   297
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   298
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   299
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   300
void ClassLoaderData::modules_do(void f(ModuleEntry*)) {
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   301
  assert_locked_or_safepoint(Module_lock);
46387
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   302
  if (_unnamed_module != NULL) {
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   303
    f(_unnamed_module);
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   304
  }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   305
  if (_modules != NULL) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   306
    for (int i = 0; i < _modules->table_size(); i++) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   307
      for (ModuleEntry* entry = _modules->bucket(i);
46420
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   308
           entry != NULL;
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   309
           entry = entry->next()) {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   310
        f(entry);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   311
      }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   312
    }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   313
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   314
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   315
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   316
void ClassLoaderData::packages_do(void f(PackageEntry*)) {
46420
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   317
  assert_locked_or_safepoint(Module_lock);
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   318
  if (_packages != NULL) {
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   319
    for (int i = 0; i < _packages->table_size(); i++) {
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   320
      for (PackageEntry* entry = _packages->bucket(i);
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   321
           entry != NULL;
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
   322
           entry = entry->next()) {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   323
        f(entry);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   324
      }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   325
    }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   326
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   327
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   328
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   329
void ClassLoaderData::record_dependency(const Klass* k, TRAPS) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   330
  assert(k != NULL, "invariant");
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   331
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   332
  ClassLoaderData * const from_cld = this;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   333
  ClassLoaderData * const to_cld = k->class_loader_data();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   334
48860
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   335
  // Do not need to record dependency if the dependency is to a class whose
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   336
  // class loader data is never freed.  (i.e. the dependency's class loader
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   337
  // is one of the three builtin class loaders and the dependency is not
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   338
  // anonymous.)
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   339
  if (to_cld->is_permanent_class_loader_data()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   340
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   341
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   342
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   343
  oop to;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   344
  if (to_cld->is_anonymous()) {
48860
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   345
    // Just return if an anonymous class is attempting to record a dependency
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   346
    // to itself.  (Note that every anonymous class has its own unique class
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   347
    // loader data.)
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   348
    if (to_cld == from_cld) {
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   349
      return;
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   350
    }
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   351
    // Anonymous class dependencies are through the mirror.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   352
    to = k->java_mirror();
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   353
  } else {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   354
    to = to_cld->class_loader();
48860
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   355
    oop from = from_cld->class_loader();
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   356
48860
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   357
    // Just return if this dependency is to a class with the same or a parent
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   358
    // class_loader.
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   359
    if (from == to || java_lang_ClassLoader::isAncestor(from, to)) {
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   360
      return; // this class loader is in the parent list, no need to add it.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   361
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   362
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   363
48860
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   364
  // It's a dependency we won't find through GC, add it. This is relatively rare.
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   365
  // Must handle over GC point.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   366
  Handle dependency(THREAD, to);
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   367
  from_cld->_dependencies.add(dependency, CHECK);
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   368
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   369
  // Added a potentially young gen oop to the ClassLoaderData
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   370
  record_modified_oops();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   371
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   372
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   373
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   374
void ClassLoaderData::Dependencies::add(Handle dependency, TRAPS) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   375
  // Check first if this dependency is already in the list.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   376
  // Save a pointer to the last to add to under the lock.
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   377
  objArrayOop ok = _list_head;
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   378
  objArrayOop last = NULL;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   379
  while (ok != NULL) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   380
    last = ok;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   381
    if (ok->obj_at(0) == dependency()) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   382
      // Don't need to add it
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   383
      return;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   384
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   385
    ok = (objArrayOop)ok->obj_at(1);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   386
  }
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   387
14824
42c57756cf23 8005002: Crash because of a raw oop in ClassLoaderData::add_dependency
stefank
parents: 14588
diff changeset
   388
  // Must handle over GC points
42c57756cf23 8005002: Crash because of a raw oop in ClassLoaderData::add_dependency
stefank
parents: 14588
diff changeset
   389
  assert (last != NULL, "dependencies should be initialized");
42c57756cf23 8005002: Crash because of a raw oop in ClassLoaderData::add_dependency
stefank
parents: 14588
diff changeset
   390
  objArrayHandle last_handle(THREAD, last);
42c57756cf23 8005002: Crash because of a raw oop in ClassLoaderData::add_dependency
stefank
parents: 14588
diff changeset
   391
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   392
  // Create a new dependency node with fields for (class_loader or mirror, next)
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   393
  objArrayOop deps = oopFactory::new_objectArray(2, CHECK);
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   394
  deps->obj_at_put(0, dependency());
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   395
14824
42c57756cf23 8005002: Crash because of a raw oop in ClassLoaderData::add_dependency
stefank
parents: 14588
diff changeset
   396
  // Must handle over GC points
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   397
  objArrayHandle new_dependency(THREAD, deps);
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   398
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   399
  // Add the dependency under lock
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   400
  locked_add(last_handle, new_dependency, THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   401
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   402
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   403
void ClassLoaderData::Dependencies::locked_add(objArrayHandle last_handle,
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   404
                                               objArrayHandle new_dependency,
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   405
                                               Thread* THREAD) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   406
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   407
  // Have to lock and put the new dependency on the end of the dependency
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   408
  // array so the card mark for CMS sees that this dependency is new.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   409
  // Can probably do this lock free with some effort.
16684
2af47517ffbd 8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents: 16617
diff changeset
   410
  ObjectLocker ol(Handle(THREAD, _list_head), THREAD);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   411
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   412
  oop loader_or_mirror = new_dependency->obj_at(0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   413
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   414
  // Since the dependencies are only added, add to the end.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   415
  objArrayOop end = last_handle();
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   416
  objArrayOop last = NULL;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   417
  while (end != NULL) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   418
    last = end;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   419
    // check again if another thread added it to the end.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   420
    if (end->obj_at(0) == loader_or_mirror) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   421
      // Don't need to add it
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   422
      return;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   423
    }
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   424
    end = (objArrayOop)end->obj_at(1);
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   425
  }
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   426
  assert (last != NULL, "dependencies should be initialized");
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   427
  // fill in the first element with the oop in new_dependency.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   428
  if (last->obj_at(0) == NULL) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   429
    last->obj_at_put(0, new_dependency->obj_at(0));
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   430
  } else {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   431
    last->obj_at_put(1, new_dependency());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   432
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   433
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   434
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   435
void ClassLoaderDataGraph::clear_claimed_marks() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   436
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   437
    cld->clear_claimed();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   438
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   439
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   440
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   441
void ClassLoaderData::add_class(Klass* k, bool publicize /* true */) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   442
  {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   443
    MutexLockerEx ml(metaspace_lock(), Mutex::_no_safepoint_check_flag);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   444
    Klass* old_value = _klasses;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   445
    k->set_next_link(old_value);
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   446
    // Link the new item into the list, making sure the linked class is stable
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   447
    // since the list can be walked without a lock
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   448
    OrderAccess::release_store(&_klasses, k);
48873
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   449
    if (k->is_array_klass()) {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   450
      ClassLoaderDataGraph::inc_array_classes(1);
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   451
    } else {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   452
      ClassLoaderDataGraph::inc_instance_classes(1);
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   453
    }
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34257
diff changeset
   454
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   455
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
   456
  if (publicize && k->class_loader_data() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   457
    ResourceMark rm;
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 38014
diff changeset
   458
    log_trace(class, loader, data)("Adding k: " PTR_FORMAT " %s to CLD: "
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   459
                  PTR_FORMAT " loader: " PTR_FORMAT " %s",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23526
diff changeset
   460
                  p2i(k),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   461
                  k->external_name(),
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23526
diff changeset
   462
                  p2i(k->class_loader_data()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23526
diff changeset
   463
                  p2i((void *)k->class_loader()),
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   464
                  loader_name());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   465
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   466
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   467
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   468
// Class iterator used by the compiler.  It gets some number of classes at
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   469
// a safepoint to decay invocation counters on the methods.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   470
class ClassLoaderDataGraphKlassIteratorStatic {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   471
  ClassLoaderData* _current_loader_data;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   472
  Klass*           _current_class_entry;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   473
 public:
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   474
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   475
  ClassLoaderDataGraphKlassIteratorStatic() : _current_loader_data(NULL), _current_class_entry(NULL) {}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   476
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   477
  InstanceKlass* try_get_next_class() {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   478
    assert(SafepointSynchronize::is_at_safepoint(), "only called at safepoint");
48873
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   479
    int max_classes = ClassLoaderDataGraph::num_instance_classes();
46739
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   480
    assert(max_classes > 0, "should not be called with no instance classes");
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   481
    for (int i = 0; i < max_classes; ) {
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   482
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   483
      if (_current_class_entry != NULL) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   484
        Klass* k = _current_class_entry;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   485
        _current_class_entry = _current_class_entry->next_link();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   486
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   487
        if (k->is_instance_klass()) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   488
          InstanceKlass* ik = InstanceKlass::cast(k);
46739
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   489
          i++;  // count all instance classes found
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   490
          // Not yet loaded classes are counted in max_classes
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   491
          // but only return loaded classes.
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   492
          if (ik->is_loaded()) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   493
            return ik;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   494
          }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   495
        }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   496
      } else {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   497
        // Go to next CLD
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   498
        if (_current_loader_data != NULL) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   499
          _current_loader_data = _current_loader_data->next();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   500
        }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   501
        // Start at the beginning
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   502
        if (_current_loader_data == NULL) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   503
          _current_loader_data = ClassLoaderDataGraph::_head;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   504
        }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   505
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   506
        _current_class_entry = _current_loader_data->klasses();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   507
      }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   508
    }
46739
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   509
    // Should never be reached unless all instance classes have failed or are not fully loaded.
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   510
    // Caller handles NULL.
89569d6a77c0 8185590: ShouldNotReachHere from ClassLoaderData::try_get_next_class()
coleenp
parents: 46729
diff changeset
   511
    return NULL;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   512
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   513
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   514
  // If the current class for the static iterator is a class being unloaded or
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   515
  // deallocated, adjust the current class.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   516
  void adjust_saved_class(ClassLoaderData* cld) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   517
    if (_current_loader_data == cld) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   518
      _current_loader_data = cld->next();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   519
      if (_current_loader_data != NULL) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   520
        _current_class_entry = _current_loader_data->klasses();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   521
      }  // else try_get_next_class will start at the head
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   522
    }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   523
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   524
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   525
  void adjust_saved_class(Klass* klass) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   526
    if (_current_class_entry == klass) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   527
      _current_class_entry = klass->next_link();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   528
    }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   529
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   530
};
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   531
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   532
static ClassLoaderDataGraphKlassIteratorStatic static_klass_iterator;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   533
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   534
InstanceKlass* ClassLoaderDataGraph::try_get_next_class() {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   535
  return static_klass_iterator.try_get_next_class();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   536
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   537
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   538
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   539
// Remove a klass from the _klasses list for scratch_class during redefinition
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   540
// or parsed class in the case of an error.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   541
void ClassLoaderData::remove_class(Klass* scratch_class) {
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   542
  assert(SafepointSynchronize::is_at_safepoint(), "only called at safepoint");
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   543
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   544
  // Adjust global class iterator.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   545
  static_klass_iterator.adjust_saved_class(scratch_class);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   546
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   547
  Klass* prev = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   548
  for (Klass* k = _klasses; k != NULL; k = k->next_link()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   549
    if (k == scratch_class) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   550
      if (prev == NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   551
        _klasses = k->next_link();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   552
      } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   553
        Klass* next = k->next_link();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   554
        prev->set_next_link(next);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   555
      }
48873
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   556
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   557
      if (k->is_array_klass()) {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   558
        ClassLoaderDataGraph::dec_array_classes(1);
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   559
      } else {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   560
        ClassLoaderDataGraph::dec_instance_classes(1);
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   561
      }
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   562
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   563
      return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   564
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   565
    prev = k;
16352
1ff72c6eaa70 8007725: NPG: Klass::restore_unshareable_info() triggers assert(k->java_mirror() == NULL)
coleenp
parents: 15437
diff changeset
   566
    assert(k != k->next_link(), "no loops!");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   567
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   568
  ShouldNotReachHere();   // should have found this class!!
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   569
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   570
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   571
void ClassLoaderData::unload() {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   572
  _unloading = true;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   573
17075
b53332c50aba 8011803: release_C_heap_structures is never called for anonymous classes.
coleenp
parents: 16684
diff changeset
   574
  // Tell serviceability tools these classes are unloading
b53332c50aba 8011803: release_C_heap_structures is never called for anonymous classes.
coleenp
parents: 16684
diff changeset
   575
  classes_do(InstanceKlass::notify_unload_class);
b53332c50aba 8011803: release_C_heap_structures is never called for anonymous classes.
coleenp
parents: 16684
diff changeset
   576
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   577
  LogTarget(Debug, class, loader, data) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   578
  if (lt.is_enabled()) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   579
    ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   580
    LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   581
    ls.print(": unload loader data " INTPTR_FORMAT, p2i(this));
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   582
    ls.print(" for instance " INTPTR_FORMAT " of %s", p2i((void *)class_loader()),
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   583
               loader_name());
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   584
    if (is_anonymous()) {
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   585
      ls.print(" for anonymous class  " INTPTR_FORMAT " ", p2i(_klasses));
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   586
    }
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
   587
    ls.cr();
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   588
  }
38635
e15e221b60a0 8135322: ConstantPool::release_C_heap_structures not run in some circumstances
aeriksso
parents: 38151
diff changeset
   589
48395
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   590
  // Some items on the _deallocate_list need to free their C heap structures
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   591
  // if they are not already on the _klasses list.
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   592
  unload_deallocate_list();
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   593
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   594
  // Clean up global class iterator for compiler
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   595
  static_klass_iterator.adjust_saved_class(this);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   596
}
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   597
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   598
ModuleEntryTable* ClassLoaderData::modules() {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   599
  // Lazily create the module entry table at first request.
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   600
  // Lock-free access requires load_acquire.
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   601
  ModuleEntryTable* modules = OrderAccess::load_acquire(&_modules);
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   602
  if (modules == NULL) {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   603
    MutexLocker m1(Module_lock);
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   604
    // Check if _modules got allocated while we were waiting for this lock.
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   605
    if ((modules = _modules) == NULL) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   606
      modules = new ModuleEntryTable(ModuleEntryTable::_moduletable_entry_size);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   607
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   608
      {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   609
        MutexLockerEx m1(metaspace_lock(), Mutex::_no_safepoint_check_flag);
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   610
        // Ensure _modules is stable, since it is examined without a lock
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   611
        OrderAccess::release_store(&_modules, modules);
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   612
      }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   613
    }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   614
  }
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   615
  return modules;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   616
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   617
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   618
const int _boot_loader_dictionary_size    = 1009;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   619
const int _default_loader_dictionary_size = 107;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   620
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   621
Dictionary* ClassLoaderData::create_dictionary() {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   622
  assert(!is_anonymous(), "anonymous class loader data do not have a dictionary");
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   623
  int size;
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   624
  bool resizable = false;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   625
  if (_the_null_class_loader_data == NULL) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   626
    size = _boot_loader_dictionary_size;
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   627
    resizable = true;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   628
  } else if (class_loader()->is_a(SystemDictionary::reflect_DelegatingClassLoader_klass())) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   629
    size = 1;  // there's only one class in relection class loader and no initiated classes
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   630
  } else if (is_system_class_loader_data()) {
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   631
    size = _boot_loader_dictionary_size;
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   632
    resizable = true;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   633
  } else {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   634
    size = _default_loader_dictionary_size;
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   635
    resizable = true;
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   636
  }
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   637
  if (!DynamicallyResizeSystemDictionaries || DumpSharedSpaces || UseSharedSpaces) {
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   638
    resizable = false;
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   639
  }
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
   640
  return new Dictionary(this, size, resizable);
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   641
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   642
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   643
// Unloading support
22900
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   644
oop ClassLoaderData::keep_alive_object() const {
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   645
  assert_locked_or_safepoint(_metaspace_lock);
22900
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   646
  assert(!keep_alive(), "Don't use with CLDs that are artificially kept alive");
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   647
  return is_anonymous() ? _klasses->java_mirror() : class_loader();
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   648
}
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   649
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   650
bool ClassLoaderData::is_alive(BoolObjectClosure* is_alive_closure) const {
22900
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   651
  bool alive = keep_alive() // null class loader and incomplete anonymous klasses.
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   652
      || is_alive_closure->do_object_b(keep_alive_object());
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
   653
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   654
  return alive;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   655
}
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   656
48873
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   657
class ReleaseKlassClosure: public KlassClosure {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   658
private:
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   659
  size_t  _instance_class_released;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   660
  size_t  _array_class_released;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   661
public:
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   662
  ReleaseKlassClosure() : _instance_class_released(0), _array_class_released(0) { }
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   663
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   664
  size_t instance_class_released() const { return _instance_class_released; }
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   665
  size_t array_class_released()    const { return _array_class_released;    }
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   666
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   667
  void do_klass(Klass* k) {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   668
    if (k->is_array_klass()) {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   669
      _array_class_released ++;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   670
    } else {
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   671
      assert(k->is_instance_klass(), "Must be");
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   672
      _instance_class_released ++;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   673
      InstanceKlass::release_C_heap_structures(InstanceKlass::cast(k));
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   674
    }
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   675
  }
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   676
};
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   677
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   678
ClassLoaderData::~ClassLoaderData() {
17075
b53332c50aba 8011803: release_C_heap_structures is never called for anonymous classes.
coleenp
parents: 16684
diff changeset
   679
  // Release C heap structures for all the classes.
48873
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   680
  ReleaseKlassClosure cl;
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   681
  classes_do(&cl);
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   682
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   683
  ClassLoaderDataGraph::dec_array_classes(cl.array_class_released());
9536c39ac6de 8193184: NMT: Report array class count in NMT summary
zgu
parents: 48871
diff changeset
   684
  ClassLoaderDataGraph::dec_instance_classes(cl.instance_class_released());
17075
b53332c50aba 8011803: release_C_heap_structures is never called for anonymous classes.
coleenp
parents: 16684
diff changeset
   685
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   686
  // Release C heap allocated hashtable for all the packages.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   687
  if (_packages != NULL) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   688
    // Destroy the table itself
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   689
    delete _packages;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   690
    _packages = NULL;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   691
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   692
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   693
  // Release C heap allocated hashtable for all the modules.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   694
  if (_modules != NULL) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   695
    // Destroy the table itself
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   696
    delete _modules;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   697
    _modules = NULL;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   698
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   699
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   700
  // Release C heap allocated hashtable for the dictionary
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   701
  if (_dictionary != NULL) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   702
    // Destroy the table itself
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   703
    delete _dictionary;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   704
    _dictionary = NULL;
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   705
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
   706
46387
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   707
  if (_unnamed_module != NULL) {
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   708
    _unnamed_module->delete_unnamed_module();
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   709
    _unnamed_module = NULL;
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   710
  }
c46632622b17 8176472: Lazily create ModuleEntryTable
rprotacio
parents: 46380
diff changeset
   711
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   712
  // release the metaspace
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   713
  Metaspace *m = _metaspace;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   714
  if (m != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   715
    _metaspace = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   716
    delete m;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   717
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   718
  // Clear all the JNI handles for methods
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   719
  // These aren't deallocated and are going to look like a leak, but that's
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   720
  // needed because we can't really get rid of jmethodIDs because we don't
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   721
  // know when native code is going to stop using them.  The spec says that
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   722
  // they're "invalid" but existing programs likely rely on their being
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   723
  // NULL after class unloading.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   724
  if (_jmethod_ids != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   725
    Method::clear_jmethod_ids(this);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   726
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   727
  // Delete lock
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   728
  delete _metaspace_lock;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   729
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   730
  // Delete free list
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   731
  if (_deallocate_list != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   732
    delete _deallocate_list;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   733
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   734
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   735
48871
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   736
// Returns true if this class loader data is for the app class loader
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   737
// or a user defined system class loader.  (Note that the class loader
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   738
// data may be anonymous.)
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   739
bool ClassLoaderData::is_system_class_loader_data() const {
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   740
  return SystemDictionary::is_system_class_loader(class_loader());
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   741
}
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   742
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   743
// Returns true if this class loader data is for the platform class loader.
48871
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   744
// (Note that the class loader data may be anonymous.)
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   745
bool ClassLoaderData::is_platform_class_loader_data() const {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   746
  return SystemDictionary::is_platform_class_loader(class_loader());
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 16352
diff changeset
   747
}
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 16352
diff changeset
   748
48871
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   749
// Returns true if the class loader for this class loader data is one of
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   750
// the 3 builtin (boot application/system or platform) class loaders,
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   751
// including a user-defined system class loader.  Note that if the class
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   752
// loader data is for an anonymous class then it may get freed by a GC
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   753
// even if its class loader is one of these loaders.
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   754
bool ClassLoaderData::is_builtin_class_loader_data() const {
48871
120d6893f32f 8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents: 48860
diff changeset
   755
  return (is_boot_class_loader_data() ||
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42639
diff changeset
   756
          SystemDictionary::is_system_class_loader(class_loader()) ||
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42639
diff changeset
   757
          SystemDictionary::is_platform_class_loader(class_loader()));
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   758
}
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
   759
48860
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   760
// Returns true if this class loader data is a class loader data
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   761
// that is not ever freed by a GC.  It must be one of the builtin
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   762
// class loaders and not anonymous.
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   763
bool ClassLoaderData::is_permanent_class_loader_data() const {
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   764
  return is_builtin_class_loader_data() && !is_anonymous();
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   765
}
5bce1b7e7800 8190359: Reduce the number of recorded klass dependencies
hseigel
parents: 48811
diff changeset
   766
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   767
Metaspace* ClassLoaderData::metaspace_non_null() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   768
  // If the metaspace has not been allocated, create a new one.  Might want
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   769
  // to create smaller arena for Reflection class loaders also.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   770
  // The reason for the delayed allocation is because some class loaders are
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   771
  // simply for delegating with no metadata of their own.
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   772
  // Lock-free access requires load_acquire.
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   773
  Metaspace* metaspace = OrderAccess::load_acquire(&_metaspace);
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   774
  if (metaspace == NULL) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   775
    MutexLockerEx ml(_metaspace_lock,  Mutex::_no_safepoint_check_flag);
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   776
    // Check if _metaspace got allocated while we were waiting for this lock.
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   777
    if ((metaspace = _metaspace) == NULL) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   778
      if (this == the_null_class_loader_data()) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   779
        assert (class_loader() == NULL, "Must be");
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   780
        metaspace = new Metaspace(_metaspace_lock, Metaspace::BootMetaspaceType);
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   781
      } else if (is_anonymous()) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   782
        if (class_loader() != NULL) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   783
          log_trace(class, loader, data)("is_anonymous: %s", class_loader()->klass()->internal_name());
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   784
        }
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   785
        metaspace = new Metaspace(_metaspace_lock, Metaspace::AnonymousMetaspaceType);
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   786
      } else if (class_loader()->is_a(SystemDictionary::reflect_DelegatingClassLoader_klass())) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   787
        if (class_loader() != NULL) {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   788
          log_trace(class, loader, data)("is_reflection: %s", class_loader()->klass()->internal_name());
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   789
        }
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   790
        metaspace = new Metaspace(_metaspace_lock, Metaspace::ReflectionMetaspaceType);
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   791
      } else {
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   792
        metaspace = new Metaspace(_metaspace_lock, Metaspace::StandardMetaspaceType);
15086
2bfd799e9147 8005082: NPG: Add specialized Metachunk sizes for reflection and anonymous classloaders
jmasa
parents: 14838
diff changeset
   793
      }
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   794
      // Ensure _metaspace is stable, since it is examined without a lock
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   795
      OrderAccess::release_store(&_metaspace, metaspace);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   796
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   797
  }
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   798
  return metaspace;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   799
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   800
46961
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   801
OopHandle ClassLoaderData::add_handle(Handle h) {
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31041
diff changeset
   802
  MutexLockerEx ml(metaspace_lock(),  Mutex::_no_safepoint_check_flag);
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   803
  record_modified_oops();
46961
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   804
  return OopHandle(_handles.add(h()));
31046
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31041
diff changeset
   805
}
d01ad7a0ecb0 8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents: 31041
diff changeset
   806
47095
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   807
void ClassLoaderData::remove_handle(OopHandle h) {
48395
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   808
  assert(!is_unloading(), "Do not remove a handle for a CLD that is unloading");
47095
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   809
  oop* ptr = h.ptr_raw();
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   810
  if (ptr != NULL) {
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   811
    assert(_handles.contains(ptr), "Got unexpected handle " PTR_FORMAT, p2i(ptr));
48613
d8bdf14c4f1e 8191888: Refactor ClassLoaderData::remove_handle to use the Access API
eosterlund
parents: 48405
diff changeset
   812
    // This root is not walked in safepoints, and hence requires an appropriate
d8bdf14c4f1e 8191888: Refactor ClassLoaderData::remove_handle to use the Access API
eosterlund
parents: 48405
diff changeset
   813
    // decorator that e.g. maintains the SATB invariant in SATB collectors.
d8bdf14c4f1e 8191888: Refactor ClassLoaderData::remove_handle to use the Access API
eosterlund
parents: 48405
diff changeset
   814
    RootAccess<IN_CONCURRENT_ROOT>::oop_store(ptr, oop(NULL));
47095
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   815
  }
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   816
}
9d21da6fe729 8181170: resolved_references array leaks for RedefineClasses
coleenp
parents: 46961
diff changeset
   817
46961
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   818
void ClassLoaderData::init_handle_locked(OopHandle& dest, Handle h) {
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   819
  MutexLockerEx ml(metaspace_lock(),  Mutex::_no_safepoint_check_flag);
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   820
  if (dest.resolve() != NULL) {
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   821
    return;
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   822
  } else {
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   823
    dest = _handles.add(h());
c9094b1e5f87 8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents: 46746
diff changeset
   824
  }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   825
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
   826
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   827
// Add this metadata pointer to be freed when it's safe.  This is only during
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   828
// class unloading because Handles might point to this metadata field.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   829
void ClassLoaderData::add_to_deallocate_list(Metadata* m) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   830
  // Metadata in shared region isn't deleted.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   831
  if (!m->is_shared()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   832
    MutexLockerEx ml(metaspace_lock(),  Mutex::_no_safepoint_check_flag);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   833
    if (_deallocate_list == NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   834
      _deallocate_list = new (ResourceObj::C_HEAP, mtClass) GrowableArray<Metadata*>(100, true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   835
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   836
    _deallocate_list->append_if_missing(m);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   837
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   838
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   839
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   840
// Deallocate free metadata on the free list.  How useful the PermGen was!
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   841
void ClassLoaderData::free_deallocate_list() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   842
  // Don't need lock, at safepoint
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   843
  assert(SafepointSynchronize::is_at_safepoint(), "only called at safepoint");
48395
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   844
  assert(!is_unloading(), "only called for ClassLoaderData that are not unloading");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   845
  if (_deallocate_list == NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   846
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   847
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   848
  // Go backwards because this removes entries that are freed.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   849
  for (int i = _deallocate_list->length() - 1; i >= 0; i--) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   850
    Metadata* m = _deallocate_list->at(i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   851
    if (!m->on_stack()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   852
      _deallocate_list->remove_at(i);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   853
      // There are only three types of metadata that we deallocate directly.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   854
      // Cast them so they can be used by the template function.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   855
      if (m->is_method()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   856
        MetadataFactory::free_metadata(this, (Method*)m);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   857
      } else if (m->is_constantPool()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   858
        MetadataFactory::free_metadata(this, (ConstantPool*)m);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   859
      } else if (m->is_klass()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   860
        MetadataFactory::free_metadata(this, (InstanceKlass*)m);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   861
      } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   862
        ShouldNotReachHere();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   863
      }
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
   864
    } else {
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
   865
      // Metadata is alive.
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
   866
      // If scratch_class is on stack then it shouldn't be on this list!
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
   867
      assert(!m->is_klass() || !((InstanceKlass*)m)->is_scratch_class(),
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
   868
             "scratch classes on this list should be dead");
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
   869
      // Also should assert that other metadata on the list was found in handles.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   870
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   871
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   872
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   873
48395
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   874
// This is distinct from free_deallocate_list.  For class loader data that are
48405
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   875
// unloading, this frees the C heap memory for items on the list, and unlinks
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   876
// scratch or error classes so that unloading events aren't triggered for these
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   877
// classes. The metadata is removed with the unloading metaspace.
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   878
// There isn't C heap memory allocated for methods, so nothing is done for them.
48395
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   879
void ClassLoaderData::unload_deallocate_list() {
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   880
  // Don't need lock, at safepoint
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   881
  assert(SafepointSynchronize::is_at_safepoint(), "only called at safepoint");
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   882
  assert(is_unloading(), "only called for ClassLoaderData that are unloading");
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   883
  if (_deallocate_list == NULL) {
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   884
    return;
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   885
  }
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   886
  // Go backwards because this removes entries that are freed.
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   887
  for (int i = _deallocate_list->length() - 1; i >= 0; i--) {
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   888
    Metadata* m = _deallocate_list->at(i);
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   889
    assert (!m->on_stack(), "wouldn't be unloading if this were so");
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   890
    _deallocate_list->remove_at(i);
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   891
    if (m->is_constantPool()) {
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   892
      ((ConstantPool*)m)->release_C_heap_structures();
48405
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   893
    } else if (m->is_klass()) {
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   894
      InstanceKlass* ik = (InstanceKlass*)m;
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   895
      // also releases ik->constants() C heap memory
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   896
      InstanceKlass::release_C_heap_structures(ik);
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   897
      // Remove the class so unloading events aren't triggered for
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   898
      // this class (scratch or error class) in do_unloading().
5f1c30b80554 8193622: JFR test TestUnloadingEventClass.java times out intermittently
coleenp
parents: 48395
diff changeset
   899
      remove_class(ik);
48395
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   900
    }
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   901
  }
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   902
}
919780ab7acc 8193053: jvm crash by G1CMBitMapClosure::do_addr
coleenp
parents: 47774
diff changeset
   903
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   904
// These anonymous class loaders are to contain classes used for JSR292
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   905
ClassLoaderData* ClassLoaderData::anonymous_class_loader_data(oop loader, TRAPS) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   906
  // Add a new class loader data to the graph.
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42639
diff changeset
   907
  Handle lh(THREAD, loader);
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42639
diff changeset
   908
  return ClassLoaderDataGraph::add(lh, true, THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   909
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   910
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   911
const char* ClassLoaderData::loader_name() {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   912
  // Handles null class loader
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   913
  return SystemDictionary::loader_name(class_loader());
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   914
}
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   915
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   916
#ifndef PRODUCT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   917
// Define to dump klasses
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   918
#undef CLD_DUMP_KLASSES
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   919
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   920
void ClassLoaderData::dump(outputStream * const out) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31046
diff changeset
   921
  out->print("ClassLoaderData CLD: " PTR_FORMAT ", loader: " PTR_FORMAT ", loader_klass: " PTR_FORMAT " %s {",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23526
diff changeset
   922
      p2i(this), p2i((void *)class_loader()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23526
diff changeset
   923
      p2i(class_loader() != NULL ? class_loader()->klass() : NULL), loader_name());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   924
  if (claimed()) out->print(" claimed ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   925
  if (is_unloading()) out->print(" unloading ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   926
  out->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   927
  if (metaspace_or_null() != NULL) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23526
diff changeset
   928
    out->print_cr("metaspace: " INTPTR_FORMAT, p2i(metaspace_or_null()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   929
    metaspace_or_null()->dump(out);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   930
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   931
    out->print_cr("metaspace: NULL");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   932
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   933
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   934
#ifdef CLD_DUMP_KLASSES
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   935
  if (Verbose) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   936
    Klass* k = _klasses;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   937
    while (k != NULL) {
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   938
      out->print_cr("klass " PTR_FORMAT ", %s", p2i(k), k->name()->as_C_string());
16352
1ff72c6eaa70 8007725: NPG: Klass::restore_unshareable_info() triggers assert(k->java_mirror() == NULL)
coleenp
parents: 15437
diff changeset
   939
      assert(k != k->next_link(), "no loops!");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   940
      k = k->next_link();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   941
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   942
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   943
#endif  // CLD_DUMP_KLASSES
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   944
#undef CLD_DUMP_KLASSES
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   945
  if (_jmethod_ids != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   946
    Method::print_jmethod_ids(this, out);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   947
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   948
  out->print_cr("}");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   949
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   950
#endif // PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   951
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   952
void ClassLoaderData::verify() {
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
   953
  assert_locked_or_safepoint(_metaspace_lock);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   954
  oop cl = class_loader();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   955
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   956
  guarantee(this == class_loader_data(cl) || is_anonymous(), "Must be the same");
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   957
  guarantee(cl != NULL || this == ClassLoaderData::the_null_class_loader_data() || is_anonymous(), "must be");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   958
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   959
  // Verify the integrity of the allocated space.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   960
  if (metaspace_or_null() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   961
    metaspace_or_null()->verify();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   962
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   963
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   964
  for (Klass* k = _klasses; k != NULL; k = k->next_link()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   965
    guarantee(k->class_loader_data() == this, "Must be the same");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   966
    k->verify();
16352
1ff72c6eaa70 8007725: NPG: Klass::restore_unshareable_info() triggers assert(k->java_mirror() == NULL)
coleenp
parents: 15437
diff changeset
   967
    assert(k != k->next_link(), "no loops!");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   968
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   969
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   970
22794
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   971
bool ClassLoaderData::contains_klass(Klass* klass) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   972
  // Lock-free access requires load_acquire
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
   973
  for (Klass* k = OrderAccess::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
22794
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   974
    if (k == klass) return true;
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   975
  }
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   976
  return false;
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   977
}
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   978
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
   979
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   980
// GC root of class loader data created.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   981
ClassLoaderData* ClassLoaderDataGraph::_head = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   982
ClassLoaderData* ClassLoaderDataGraph::_unloading = NULL;
25371
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
   983
ClassLoaderData* ClassLoaderDataGraph::_saved_unloading = NULL;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   984
ClassLoaderData* ClassLoaderDataGraph::_saved_head = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   985
24457
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24424
diff changeset
   986
bool ClassLoaderDataGraph::_should_purge = false;
27461
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
   987
bool ClassLoaderDataGraph::_metaspace_oom = false;
24457
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24424
diff changeset
   988
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   989
// Add a new class loader data node to the list.  Assign the newly created
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   990
// ClassLoaderData into the java/lang/ClassLoader object as a hidden field
17107
46fc21b30a1e 8011802: NPG: init_dependencies in class loader data graph can cause invalid CLD
mgerdin
parents: 17101
diff changeset
   991
ClassLoaderData* ClassLoaderDataGraph::add(Handle loader, bool is_anonymous, TRAPS) {
17110
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
   992
  // We need to allocate all the oops for the ClassLoaderData before allocating the
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
   993
  // actual ClassLoaderData object.
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
   994
  ClassLoaderData::Dependencies dependencies(CHECK_NULL);
14816
f2935b95cb54 8004883: NPG: clean up anonymous class fix
coleenp
parents: 14588
diff changeset
   995
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34666
diff changeset
   996
  NoSafepointVerifier no_safepoints; // we mustn't GC until we've installed the
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34666
diff changeset
   997
                                     // ClassLoaderData in the graph since the CLD
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 34666
diff changeset
   998
                                     // contains unhandled oops
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
   999
17110
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
  1000
  ClassLoaderData* cld = new ClassLoaderData(loader, is_anonymous, dependencies);
a8f03d38bde5 8013136: NPG: Parallel class loading tests fail after fix for JDK-8011802
mgerdin
parents: 17109
diff changeset
  1001
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1002
17107
46fc21b30a1e 8011802: NPG: init_dependencies in class loader data graph can cause invalid CLD
mgerdin
parents: 17101
diff changeset
  1003
  if (!is_anonymous) {
46fc21b30a1e 8011802: NPG: init_dependencies in class loader data graph can cause invalid CLD
mgerdin
parents: 17101
diff changeset
  1004
    ClassLoaderData** cld_addr = java_lang_ClassLoader::loader_data_addr(loader());
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1005
    // First, Atomically set it
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
  1006
    ClassLoaderData* old = Atomic::cmpxchg(cld, cld_addr, (ClassLoaderData*)NULL);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1007
    if (old != NULL) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1008
      delete cld;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1009
      // Returns the data.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1010
      return old;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1011
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1012
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1013
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1014
  // We won the race, and therefore the task of adding the data to the list of
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1015
  // class loader data
17107
46fc21b30a1e 8011802: NPG: init_dependencies in class loader data graph can cause invalid CLD
mgerdin
parents: 17101
diff changeset
  1016
  ClassLoaderData** list_head = &_head;
46fc21b30a1e 8011802: NPG: init_dependencies in class loader data graph can cause invalid CLD
mgerdin
parents: 17101
diff changeset
  1017
  ClassLoaderData* next = _head;
46fc21b30a1e 8011802: NPG: init_dependencies in class loader data graph can cause invalid CLD
mgerdin
parents: 17101
diff changeset
  1018
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1019
  do {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1020
    cld->set_next(next);
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
  1021
    ClassLoaderData* exchanged = Atomic::cmpxchg(cld, list_head, next);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1022
    if (exchanged == next) {
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1023
      LogTarget(Debug, class, loader, data) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1024
      if (lt.is_enabled()) {
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1025
       PauseNoSafepointVerifier pnsv(&no_safepoints); // Need safe points for JavaCalls::call_virtual
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1026
       LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1027
       print_creation(&ls, loader, cld, CHECK_NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1028
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1029
      return cld;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1030
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1031
    next = exchanged;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1032
  } while (true);
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1033
}
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1034
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1035
void ClassLoaderDataGraph::print_creation(outputStream* out, Handle loader, ClassLoaderData* cld, TRAPS) {
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1036
  Handle string;
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1037
  if (loader.not_null()) {
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1038
    // Include the result of loader.toString() in the output. This allows
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1039
    // the user of the log to identify the class loader instance.
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1040
    JavaValue result(T_OBJECT);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46289
diff changeset
  1041
    Klass* spec_klass = SystemDictionary::ClassLoader_klass();
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1042
    JavaCalls::call_virtual(&result,
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1043
                            loader,
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1044
                            spec_klass,
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1045
                            vmSymbols::toString_name(),
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1046
                            vmSymbols::void_string_signature(),
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1047
                            CHECK);
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1048
    assert(result.get_type() == T_OBJECT, "just checking");
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 42639
diff changeset
  1049
    string = Handle(THREAD, (oop)result.get_jobject());
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1050
  }
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1051
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1052
  ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1053
  out->print("create class loader data " INTPTR_FORMAT, p2i(cld));
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1054
  out->print(" for instance " INTPTR_FORMAT " of %s", p2i((void *)cld->class_loader()),
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1055
             cld->loader_name());
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1056
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1057
  if (string.not_null()) {
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1058
    out->print(": ");
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1059
    java_lang_String::print(string(), out);
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1060
  }
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1061
  out->cr();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1062
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1063
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35492
diff changeset
  1064
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1065
void ClassLoaderDataGraph::oops_do(OopClosure* f, bool must_claim) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1066
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1067
    cld->oops_do(f, must_claim);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1068
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1069
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1070
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1071
void ClassLoaderDataGraph::keep_alive_oops_do(OopClosure* f, bool must_claim) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1072
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1073
    if (cld->keep_alive()) {
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1074
      cld->oops_do(f, must_claim);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1075
    }
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1076
  }
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1077
}
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1078
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1079
void ClassLoaderDataGraph::always_strong_oops_do(OopClosure* f, bool must_claim) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1080
  if (ClassUnloading) {
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1081
    keep_alive_oops_do(f, must_claim);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1082
  } else {
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  1083
    oops_do(f, must_claim);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1084
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1085
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1086
25051
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 24658
diff changeset
  1087
void ClassLoaderDataGraph::cld_do(CLDClosure* cl) {
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 24658
diff changeset
  1088
  for (ClassLoaderData* cld = _head; cl != NULL && cld != NULL; cld = cld->next()) {
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 24658
diff changeset
  1089
    cl->do_cld(cld);
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 24658
diff changeset
  1090
  }
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 24658
diff changeset
  1091
}
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 24658
diff changeset
  1092
42639
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1093
void ClassLoaderDataGraph::cld_unloading_do(CLDClosure* cl) {
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1094
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1095
  // Only walk the head until any clds not purged from prior unloading
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1096
  // (CMS doesn't purge right away).
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1097
  for (ClassLoaderData* cld = _unloading; cld != _saved_unloading; cld = cld->next()) {
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1098
    assert(cld->is_unloading(), "invariant");
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1099
    cl->do_cld(cld);
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1100
  }
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1101
}
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1102
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1103
void ClassLoaderDataGraph::roots_cld_do(CLDClosure* strong, CLDClosure* weak) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1104
  for (ClassLoaderData* cld = _head;  cld != NULL; cld = cld->_next) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1105
    CLDClosure* closure = cld->keep_alive() ? strong : weak;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1106
    if (closure != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1107
      closure->do_cld(cld);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1108
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1109
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1110
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1111
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1112
void ClassLoaderDataGraph::keep_alive_cld_do(CLDClosure* cl) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1113
  roots_cld_do(cl, NULL);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1114
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1115
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1116
void ClassLoaderDataGraph::always_strong_cld_do(CLDClosure* cl) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1117
  if (ClassUnloading) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1118
    keep_alive_cld_do(cl);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1119
  } else {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1120
    cld_do(cl);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1121
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1122
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1123
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1124
void ClassLoaderDataGraph::classes_do(KlassClosure* klass_closure) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1125
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1126
    cld->classes_do(klass_closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1127
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1128
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1129
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1130
void ClassLoaderDataGraph::classes_do(void f(Klass* const)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1131
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1132
    cld->classes_do(f);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1133
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1134
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1135
23526
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
  1136
void ClassLoaderDataGraph::methods_do(void f(Method*)) {
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
  1137
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
  1138
    cld->methods_do(f);
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
  1139
  }
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
  1140
}
6851d341ad52 8037970: make PrintMethodData a diagnostic options
roland
parents: 22905
diff changeset
  1141
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1142
void ClassLoaderDataGraph::modules_do(void f(ModuleEntry*)) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1143
  assert_locked_or_safepoint(Module_lock);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1144
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1145
    cld->modules_do(f);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1146
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1147
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1148
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1149
void ClassLoaderDataGraph::modules_unloading_do(void f(ModuleEntry*)) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1150
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1151
  // Only walk the head until any clds not purged from prior unloading
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1152
  // (CMS doesn't purge right away).
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1153
  for (ClassLoaderData* cld = _unloading; cld != _saved_unloading; cld = cld->next()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1154
    assert(cld->is_unloading(), "invariant");
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1155
    cld->modules_do(f);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1156
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1157
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1158
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1159
void ClassLoaderDataGraph::packages_do(void f(PackageEntry*)) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1160
  assert_locked_or_safepoint(Module_lock);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1161
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1162
    cld->packages_do(f);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1163
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1164
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1165
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1166
void ClassLoaderDataGraph::packages_unloading_do(void f(PackageEntry*)) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1167
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1168
  // Only walk the head until any clds not purged from prior unloading
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1169
  // (CMS doesn't purge right away).
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1170
  for (ClassLoaderData* cld = _unloading; cld != _saved_unloading; cld = cld->next()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1171
    assert(cld->is_unloading(), "invariant");
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1172
    cld->packages_do(f);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1173
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1174
}
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1175
21183
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
  1176
void ClassLoaderDataGraph::loaded_classes_do(KlassClosure* klass_closure) {
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
  1177
  for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
  1178
    cld->loaded_classes_do(klass_closure);
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
  1179
  }
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
  1180
}
e148e499e5cd 8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents: 20282
diff changeset
  1181
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1182
void ClassLoaderDataGraph::classes_unloading_do(void f(Klass* const)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1183
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
25371
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1184
  // Only walk the head until any clds not purged from prior unloading
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1185
  // (CMS doesn't purge right away).
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1186
  for (ClassLoaderData* cld = _unloading; cld != _saved_unloading; cld = cld->next()) {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1187
    assert(cld->is_unloading(), "invariant");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1188
    cld->classes_do(f);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1189
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1190
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1191
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1192
#define FOR_ALL_DICTIONARY(X) for (ClassLoaderData* X = _head; X != NULL; X = X->next()) \
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1193
                                if (X->dictionary() != NULL)
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1194
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1195
// Walk classes in the loaded class dictionaries in various forms.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1196
// Only walks the classes defined in this class loader.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1197
void ClassLoaderDataGraph::dictionary_classes_do(void f(InstanceKlass*)) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1198
  FOR_ALL_DICTIONARY(cld) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1199
    cld->dictionary()->classes_do(f);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1200
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1201
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1202
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1203
// Only walks the classes defined in this class loader.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1204
void ClassLoaderDataGraph::dictionary_classes_do(void f(InstanceKlass*, TRAPS), TRAPS) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1205
  FOR_ALL_DICTIONARY(cld) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1206
    cld->dictionary()->classes_do(f, CHECK);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1207
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1208
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1209
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1210
// Walks all entries in the dictionary including entries initiated by this class loader.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1211
void ClassLoaderDataGraph::dictionary_all_entries_do(void f(InstanceKlass*, ClassLoaderData*)) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1212
  FOR_ALL_DICTIONARY(cld) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1213
    cld->dictionary()->all_entries_do(f);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1214
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1215
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1216
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1217
void ClassLoaderDataGraph::verify_dictionary() {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1218
  FOR_ALL_DICTIONARY(cld) {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1219
    cld->dictionary()->verify();
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1220
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1221
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1222
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1223
void ClassLoaderDataGraph::print_dictionary(outputStream* st) {
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1224
  FOR_ALL_DICTIONARY(cld) {
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1225
    st->print("Dictionary for ");
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1226
    cld->print_value_on(st);
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1227
    st->cr();
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1228
    cld->dictionary()->print_on(st);
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1229
    st->cr();
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1230
  }
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1231
}
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1232
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1233
void ClassLoaderDataGraph::print_dictionary_statistics(outputStream* st) {
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1234
  FOR_ALL_DICTIONARY(cld) {
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1235
    ResourceMark rm;
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1236
    stringStream tempst;
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1237
    tempst.print("System Dictionary for %s", cld->loader_name());
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1238
    cld->dictionary()->print_table_statistics(st, tempst.as_string());
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1239
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1240
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1241
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1242
GrowableArray<ClassLoaderData*>* ClassLoaderDataGraph::new_clds() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1243
  assert(_head == NULL || _saved_head != NULL, "remember_new_clds(true) not called?");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1244
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1245
  GrowableArray<ClassLoaderData*>* array = new GrowableArray<ClassLoaderData*>();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1246
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1247
  // The CLDs in [_head, _saved_head] were all added during last call to remember_new_clds(true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1248
  ClassLoaderData* curr = _head;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1249
  while (curr != _saved_head) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1250
    if (!curr->claimed()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1251
      array->push(curr);
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1252
      LogTarget(Debug, class, loader, data) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1253
      if (lt.is_enabled()) {
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1254
        LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1255
        ls.print("found new CLD: ");
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1256
        curr->print_value_on(&ls);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46464
diff changeset
  1257
        ls.cr();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1258
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1259
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1260
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1261
    curr = curr->_next;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1262
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1263
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1264
  return array;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1265
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1266
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1267
bool ClassLoaderDataGraph::unload_list_contains(const void* x) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1268
  assert(SafepointSynchronize::is_at_safepoint(), "only safe to call at safepoint");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1269
  for (ClassLoaderData* cld = _unloading; cld != NULL; cld = cld->next()) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1270
    if (cld->metaspace_or_null() != NULL && cld->metaspace_or_null()->contains(x)) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1271
      return true;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1272
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1273
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1274
  return false;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1275
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1276
22201
9c2ccfa3a5fe 8029178: Parallel class loading test anonymous-simple gets SIGSEGV in Metaspace::contains
coleenp
parents: 21767
diff changeset
  1277
#ifndef PRODUCT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1278
bool ClassLoaderDataGraph::contains_loader_data(ClassLoaderData* loader_data) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1279
  for (ClassLoaderData* data = _head; data != NULL; data = data->next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1280
    if (loader_data == data) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1281
      return true;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1282
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1283
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1284
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1285
  return false;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1286
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1287
#endif // PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1288
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1289
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1290
// Move class loader data from main list to the unloaded list for unloading
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1291
// and deallocation later.
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1292
bool ClassLoaderDataGraph::do_unloading(BoolObjectClosure* is_alive_closure,
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1293
                                        bool clean_previous_versions) {
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1294
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1295
  ClassLoaderData* data = _head;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1296
  ClassLoaderData* prev = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1297
  bool seen_dead_loader = false;
25371
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1298
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1299
  // Mark metadata seen on the stack only so we can delete unneeded entries.
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1300
  // Only walk all metadata, including the expensive code cache walk, for Full GC
40909
0bb3d95b9577 8165268: [BACKOUT] InstanceKlass::_previous_version_count goes negative
coleenp
parents: 40894
diff changeset
  1301
  // and only if class redefinition and if there's previous versions of
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1302
  // Klasses to delete.
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1303
  bool walk_all_metadata = clean_previous_versions &&
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1304
                           JvmtiExport::has_redefined_a_class() &&
40927
59f3c8a69541 8165246: [REDO] InstanceKlass::_previous_version_count goes negative
coleenp
parents: 40909
diff changeset
  1305
                           InstanceKlass::has_previous_versions_and_reset();
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1306
  MetadataOnStackMark md_on_stack(walk_all_metadata);
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1307
25371
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1308
  // Save previous _unloading pointer for CMS which may add to unloading list before
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1309
  // purging and we don't want to rewalk the previously unloaded class loader data.
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1310
  _saved_unloading = _unloading;
564ab3b08082 8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents: 25051
diff changeset
  1311
25635
d2f8ae0c908b 8040237: nsk/jvmti/RetransformClasses/retransform001 crashed the VM on all platforms when run with with -server -Xcomp
roland
parents: 25372
diff changeset
  1312
  data = _head;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1313
  while (data != NULL) {
22900
e699fc9dc806 8035412: Cleanup ClassLoaderData::is_alive
stefank
parents: 22201
diff changeset
  1314
    if (data->is_alive(is_alive_closure)) {
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1315
      // clean metaspace
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1316
      if (walk_all_metadata) {
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1317
        data->classes_do(InstanceKlass::purge_previous_versions);
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1318
      }
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 29081
diff changeset
  1319
      data->free_deallocate_list();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1320
      prev = data;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1321
      data = data->next();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1322
      continue;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1323
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1324
    seen_dead_loader = true;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1325
    ClassLoaderData* dead = data;
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 13728
diff changeset
  1326
    dead->unload();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1327
    data = data->next();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1328
    // Remove from loader list.
17109
90e6c31bbbe4 8008966: NPG: Inefficient Metaspace counter functions cause large young GC regressions
jmasa
parents: 17107
diff changeset
  1329
    // This class loader data will no longer be found
90e6c31bbbe4 8008966: NPG: Inefficient Metaspace counter functions cause large young GC regressions
jmasa
parents: 17107
diff changeset
  1330
    // in the ClassLoaderDataGraph.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1331
    if (prev != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1332
      prev->set_next(data);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1333
    } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1334
      assert(dead == _head, "sanity check");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1335
      _head = data;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1336
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1337
    dead->set_next(_unloading);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1338
    _unloading = dead;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1339
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1340
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1341
  if (seen_dead_loader) {
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1342
    data = _head;
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1343
    while (data != NULL) {
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1344
      // Remove entries in the dictionary of live class loader that have
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1345
      // initiated loading classes in a dead class loader.
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1346
      if (data->dictionary() != NULL) {
48811
58787a1708d2 8175249: VMThread::run fails in VerifyBeforeExit : Universe::verify
coleenp
parents: 48613
diff changeset
  1347
        data->dictionary()->do_unloading(is_alive_closure);
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1348
      }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1349
      // Walk a ModuleEntry's reads, and a PackageEntry's exports
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1350
      // lists to determine if there are modules on those lists that are now
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1351
      // dead and should be removed.  A module's life cycle is equivalent
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1352
      // to its defining class loader's life cycle.  Since a module is
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1353
      // considered dead if its class loader is dead, these walks must
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1354
      // occur after each class loader's aliveness is determined.
46420
227f72691ac1 8179235: PackageEntryTables should be created eagerly
hseigel
parents: 46387
diff changeset
  1355
      if (data->packages() != NULL) {
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1356
        data->packages()->purge_all_package_exports();
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1357
      }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1358
      if (data->modules_defined()) {
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1359
        data->modules()->purge_all_module_reads();
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1360
      }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1361
      data = data->next();
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1362
    }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38937
diff changeset
  1363
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1364
    post_class_unload_events();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1365
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1366
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1367
  return seen_dead_loader;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1368
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1369
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1370
void ClassLoaderDataGraph::purge() {
24457
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24424
diff changeset
  1371
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1372
  ClassLoaderData* list = _unloading;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1373
  _unloading = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1374
  ClassLoaderData* next = list;
27461
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
  1375
  bool classes_unloaded = false;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1376
  while (next != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1377
    ClassLoaderData* purge_me = next;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1378
    next = purge_me->next();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1379
    delete purge_me;
27461
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
  1380
    classes_unloaded = true;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1381
  }
27461
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
  1382
  if (classes_unloaded) {
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
  1383
    Metaspace::purge();
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
  1384
    set_metaspace_oom(false);
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 27247
diff changeset
  1385
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1386
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1387
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1388
int ClassLoaderDataGraph::resize_if_needed() {
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1389
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1390
  int resized = 0;
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1391
  if (Dictionary::does_any_dictionary_needs_resizing()) {
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1392
    FOR_ALL_DICTIONARY(cld) {
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1393
      if (cld->dictionary()->resize_if_needed()) {
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1394
        resized++;
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1395
      }
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1396
    }
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1397
  }
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1398
  return resized;
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1399
}
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47634
diff changeset
  1400
42639
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1401
void ClassLoaderDataGraph::post_class_unload_events() {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1402
#if INCLUDE_TRACE
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1403
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint!");
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1404
  if (Tracing::enabled()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1405
    if (Tracing::is_event_enabled(TraceClassUnloadEvent)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1406
      assert(_unloading != NULL, "need class loader data unload list!");
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21183
diff changeset
  1407
      _class_unload_time = Ticks::now();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1408
      classes_unloading_do(&class_unload_event);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1409
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1410
    Tracing::on_unloading_classes();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1411
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1412
#endif
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1413
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1414
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1415
ClassLoaderDataGraphKlassIteratorAtomic::ClassLoaderDataGraphKlassIteratorAtomic()
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1416
    : _next_klass(NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1417
  ClassLoaderData* cld = ClassLoaderDataGraph::_head;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1418
  Klass* klass = NULL;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1419
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1420
  // Find the first klass in the CLDG.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1421
  while (cld != NULL) {
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
  1422
    assert_locked_or_safepoint(cld->metaspace_lock());
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1423
    klass = cld->_klasses;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1424
    if (klass != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1425
      _next_klass = klass;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1426
      return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1427
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1428
    cld = cld->next();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1429
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1430
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1431
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1432
Klass* ClassLoaderDataGraphKlassIteratorAtomic::next_klass_in_cldg(Klass* klass) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1433
  Klass* next = klass->next_link();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1434
  if (next != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1435
    return next;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1436
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1437
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1438
  // No more klasses in the current CLD. Time to find a new CLD.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1439
  ClassLoaderData* cld = klass->class_loader_data();
38937
2bf3c37c4841 8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents: 38635
diff changeset
  1440
  assert_locked_or_safepoint(cld->metaspace_lock());
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1441
  while (next == NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1442
    cld = cld->next();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1443
    if (cld == NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1444
      break;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1445
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1446
    next = cld->_klasses;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1447
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1448
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1449
  return next;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1450
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1451
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1452
Klass* ClassLoaderDataGraphKlassIteratorAtomic::next_klass() {
29469
2213171cca5b 8074561: Wrong volatile qualifier for field ClassLoaderDataGraphKlassIteratorAtomic::_next_klass
asiebenborn
parents: 29081
diff changeset
  1453
  Klass* head = _next_klass;
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1454
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1455
  while (head != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1456
    Klass* next = next_klass_in_cldg(head);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1457
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47580
diff changeset
  1458
    Klass* old_head = Atomic::cmpxchg(next, &_next_klass, head);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1459
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1460
    if (old_head == head) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1461
      return head; // Won the CAS.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1462
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1463
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1464
    head = old_head;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1465
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1466
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1467
  // Nothing more for the iterator to hand out.
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
  1468
  assert(head == NULL, "head is " PTR_FORMAT ", expected not null:", p2i(head));
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1469
  return NULL;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1470
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1471
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1472
ClassLoaderDataGraphMetaspaceIterator::ClassLoaderDataGraphMetaspaceIterator() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1473
  _data = ClassLoaderDataGraph::_head;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1474
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1475
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1476
ClassLoaderDataGraphMetaspaceIterator::~ClassLoaderDataGraphMetaspaceIterator() {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1477
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1478
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1479
// callable from debugger
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1480
extern "C" int print_loader_data_graph() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1481
  ClassLoaderDataGraph::dump_on(tty);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1482
  return 0;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1483
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1484
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1485
void ClassLoaderDataGraph::verify() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1486
  for (ClassLoaderData* data = _head; data != NULL; data = data->next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1487
    data->verify();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1488
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1489
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1490
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1491
void ClassLoaderDataGraph::dump_on(outputStream * const out) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1492
  for (ClassLoaderData* data = _head; data != NULL; data = data->next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1493
    data->dump(out);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1494
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1495
  MetaspaceAux::dump(out);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1496
}
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15430
diff changeset
  1497
#endif // PRODUCT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1498
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1499
void ClassLoaderData::print_value_on(outputStream* out) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1500
  if (class_loader() == NULL) {
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1501
    out->print("NULL class loader");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1502
  } else {
40339
943ab4612166 8159917: Space character is missing in ClassLoaderData::print_value_on
mockner
parents: 39691
diff changeset
  1503
    out->print("class loader " INTPTR_FORMAT " ", p2i(this));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1504
    class_loader()->print_value_on(out);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1505
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff changeset
  1506
}
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1507
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1508
void ClassLoaderData::print_on(outputStream* out) const {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1509
  if (class_loader() == NULL) {
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46739
diff changeset
  1510
    out->print("NULL class loader");
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1511
  } else {
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1512
    out->print("class loader " INTPTR_FORMAT " ", p2i(this));
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1513
    class_loader()->print_on(out);
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1514
  }
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1515
}
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46701
diff changeset
  1516
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1517
#if INCLUDE_TRACE
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1518
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21183
diff changeset
  1519
Ticks ClassLoaderDataGraph::_class_unload_time;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1520
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1521
void ClassLoaderDataGraph::class_unload_event(Klass* const k) {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35917
diff changeset
  1522
  assert(k != NULL, "invariant");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1523
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1524
  // post class unload event
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1525
  EventClassUnload event(UNTIMED);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1526
  event.set_endtime(_class_unload_time);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1527
  event.set_unloadedClass(k);
42639
762117d57d05 8170672: Event-based tracing to support classloader instances
mgronlun
parents: 41727
diff changeset
  1528
  event.set_definingClassLoader(k->class_loader_data());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1529
  event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1530
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17119
diff changeset
  1531
27673
df559a888b9f 8065361: Fixup headers and definitions for INCLUDE_TRACE
mgronlun
parents: 27461
diff changeset
  1532
#endif // INCLUDE_TRACE