Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/src/hotspot/share/classfile/classLoaderData.cpp
64440 views
1
/*
2
* Copyright (c) 2012, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
// A ClassLoaderData identifies the full set of class types that a class
26
// loader's name resolution strategy produces for a given configuration of the
27
// class loader.
28
// Class types in the ClassLoaderData may be defined by from class file binaries
29
// provided by the class loader, or from other class loader it interacts with
30
// according to its name resolution strategy.
31
//
32
// Class loaders that implement a deterministic name resolution strategy
33
// (including with respect to their delegation behavior), such as the boot, the
34
// platform, and the system loaders of the JDK's built-in class loader
35
// hierarchy, always produce the same linkset for a given configuration.
36
//
37
// ClassLoaderData carries information related to a linkset (e.g.,
38
// metaspace holding its klass definitions).
39
// The System Dictionary and related data structures (e.g., placeholder table,
40
// loader constraints table) as well as the runtime representation of classes
41
// only reference ClassLoaderData.
42
//
43
// Instances of java.lang.ClassLoader holds a pointer to a ClassLoaderData that
44
// that represent the loader's "linking domain" in the JVM.
45
//
46
// The bootstrap loader (represented by NULL) also has a ClassLoaderData,
47
// the singleton class the_null_class_loader_data().
48
49
#include "precompiled.hpp"
50
#include "classfile/classLoaderData.inline.hpp"
51
#include "classfile/classLoaderDataGraph.inline.hpp"
52
#include "classfile/dictionary.hpp"
53
#include "classfile/javaClasses.hpp"
54
#include "classfile/moduleEntry.hpp"
55
#include "classfile/packageEntry.hpp"
56
#include "classfile/symbolTable.hpp"
57
#include "classfile/systemDictionary.hpp"
58
#include "classfile/systemDictionaryShared.hpp"
59
#include "classfile/vmClasses.hpp"
60
#include "logging/log.hpp"
61
#include "logging/logStream.hpp"
62
#include "memory/allocation.inline.hpp"
63
#include "memory/classLoaderMetaspace.hpp"
64
#include "memory/metadataFactory.hpp"
65
#include "memory/metaspace.hpp"
66
#include "memory/resourceArea.hpp"
67
#include "memory/universe.hpp"
68
#include "oops/access.inline.hpp"
69
#include "oops/klass.inline.hpp"
70
#include "oops/oop.inline.hpp"
71
#include "oops/oopHandle.inline.hpp"
72
#include "oops/weakHandle.inline.hpp"
73
#include "runtime/arguments.hpp"
74
#include "runtime/atomic.hpp"
75
#include "runtime/handles.inline.hpp"
76
#include "runtime/mutex.hpp"
77
#include "runtime/safepoint.hpp"
78
#include "utilities/growableArray.hpp"
79
#include "utilities/macros.hpp"
80
#include "utilities/ostream.hpp"
81
82
ClassLoaderData * ClassLoaderData::_the_null_class_loader_data = NULL;
83
84
void ClassLoaderData::init_null_class_loader_data() {
85
assert(_the_null_class_loader_data == NULL, "cannot initialize twice");
86
assert(ClassLoaderDataGraph::_head == NULL, "cannot initialize twice");
87
88
_the_null_class_loader_data = new ClassLoaderData(Handle(), false);
89
ClassLoaderDataGraph::_head = _the_null_class_loader_data;
90
assert(_the_null_class_loader_data->is_the_null_class_loader_data(), "Must be");
91
92
LogTarget(Trace, class, loader, data) lt;
93
if (lt.is_enabled()) {
94
ResourceMark rm;
95
LogStream ls(lt);
96
ls.print("create ");
97
_the_null_class_loader_data->print_value_on(&ls);
98
ls.cr();
99
}
100
}
101
102
// Obtain and set the class loader's name within the ClassLoaderData so
103
// it will be available for error messages, logging, JFR, etc. The name
104
// and klass are available after the class_loader oop is no longer alive,
105
// during unloading.
106
void ClassLoaderData::initialize_name(Handle class_loader) {
107
ResourceMark rm;
108
109
// Obtain the class loader's name. If the class loader's name was not
110
// explicitly set during construction, the CLD's _name field will be null.
111
oop cl_name = java_lang_ClassLoader::name(class_loader());
112
if (cl_name != NULL) {
113
const char* cl_instance_name = java_lang_String::as_utf8_string(cl_name);
114
115
if (cl_instance_name != NULL && cl_instance_name[0] != '\0') {
116
_name = SymbolTable::new_symbol(cl_instance_name);
117
}
118
}
119
120
// Obtain the class loader's name and identity hash. If the class loader's
121
// name was not explicitly set during construction, the class loader's name and id
122
// will be set to the qualified class name of the class loader along with its
123
// identity hash.
124
// If for some reason the ClassLoader's constructor has not been run, instead of
125
// leaving the _name_and_id field null, fall back to the external qualified class
126
// name. Thus CLD's _name_and_id field should never have a null value.
127
oop cl_name_and_id = java_lang_ClassLoader::nameAndId(class_loader());
128
const char* cl_instance_name_and_id =
129
(cl_name_and_id == NULL) ? _class_loader_klass->external_name() :
130
java_lang_String::as_utf8_string(cl_name_and_id);
131
assert(cl_instance_name_and_id != NULL && cl_instance_name_and_id[0] != '\0', "class loader has no name and id");
132
_name_and_id = SymbolTable::new_symbol(cl_instance_name_and_id);
133
}
134
135
ClassLoaderData::ClassLoaderData(Handle h_class_loader, bool has_class_mirror_holder) :
136
_metaspace(NULL),
137
_metaspace_lock(new Mutex(Mutex::leaf+1, "Metaspace allocation lock", true,
138
Mutex::_safepoint_check_never)),
139
_unloading(false), _has_class_mirror_holder(has_class_mirror_holder),
140
_modified_oops(true),
141
// A non-strong hidden class loader data doesn't have anything to keep
142
// it from being unloaded during parsing of the non-strong hidden class.
143
// The null-class-loader should always be kept alive.
144
_keep_alive((has_class_mirror_holder || h_class_loader.is_null()) ? 1 : 0),
145
_claim(0),
146
_handles(),
147
_klasses(NULL), _packages(NULL), _modules(NULL), _unnamed_module(NULL), _dictionary(NULL),
148
_jmethod_ids(NULL),
149
_deallocate_list(NULL),
150
_next(NULL),
151
_class_loader_klass(NULL), _name(NULL), _name_and_id(NULL) {
152
153
if (!h_class_loader.is_null()) {
154
_class_loader = _handles.add(h_class_loader());
155
_class_loader_klass = h_class_loader->klass();
156
initialize_name(h_class_loader);
157
}
158
159
if (!has_class_mirror_holder) {
160
// The holder is initialized later for non-strong hidden classes,
161
// and before calling anything that call class_loader().
162
initialize_holder(h_class_loader);
163
164
// A ClassLoaderData created solely for a non-strong hidden class should never
165
// have a ModuleEntryTable or PackageEntryTable created for it.
166
_packages = new PackageEntryTable(PackageEntryTable::_packagetable_entry_size);
167
if (h_class_loader.is_null()) {
168
// Create unnamed module for boot loader
169
_unnamed_module = ModuleEntry::create_boot_unnamed_module(this);
170
} else {
171
// Create unnamed module for all other loaders
172
_unnamed_module = ModuleEntry::create_unnamed_module(this);
173
}
174
_dictionary = create_dictionary();
175
}
176
177
NOT_PRODUCT(_dependency_count = 0); // number of class loader dependencies
178
179
JFR_ONLY(INIT_ID(this);)
180
}
181
182
ClassLoaderData::ChunkedHandleList::~ChunkedHandleList() {
183
Chunk* c = _head;
184
while (c != NULL) {
185
Chunk* next = c->_next;
186
delete c;
187
c = next;
188
}
189
}
190
191
OopHandle ClassLoaderData::ChunkedHandleList::add(oop o) {
192
if (_head == NULL || _head->_size == Chunk::CAPACITY) {
193
Chunk* next = new Chunk(_head);
194
Atomic::release_store(&_head, next);
195
}
196
oop* handle = &_head->_data[_head->_size];
197
NativeAccess<IS_DEST_UNINITIALIZED>::oop_store(handle, o);
198
Atomic::release_store(&_head->_size, _head->_size + 1);
199
return OopHandle(handle);
200
}
201
202
int ClassLoaderData::ChunkedHandleList::count() const {
203
int count = 0;
204
Chunk* chunk = _head;
205
while (chunk != NULL) {
206
count += chunk->_size;
207
chunk = chunk->_next;
208
}
209
return count;
210
}
211
212
inline void ClassLoaderData::ChunkedHandleList::oops_do_chunk(OopClosure* f, Chunk* c, const juint size) {
213
for (juint i = 0; i < size; i++) {
214
if (c->_data[i] != NULL) {
215
f->do_oop(&c->_data[i]);
216
}
217
}
218
}
219
220
void ClassLoaderData::ChunkedHandleList::oops_do(OopClosure* f) {
221
Chunk* head = Atomic::load_acquire(&_head);
222
if (head != NULL) {
223
// Must be careful when reading size of head
224
oops_do_chunk(f, head, Atomic::load_acquire(&head->_size));
225
for (Chunk* c = head->_next; c != NULL; c = c->_next) {
226
oops_do_chunk(f, c, c->_size);
227
}
228
}
229
}
230
231
class VerifyContainsOopClosure : public OopClosure {
232
oop _target;
233
bool _found;
234
235
public:
236
VerifyContainsOopClosure(oop target) : _target(target), _found(false) {}
237
238
void do_oop(oop* p) {
239
if (p != NULL && NativeAccess<AS_NO_KEEPALIVE>::oop_load(p) == _target) {
240
_found = true;
241
}
242
}
243
244
void do_oop(narrowOop* p) {
245
// The ChunkedHandleList should not contain any narrowOop
246
ShouldNotReachHere();
247
}
248
249
bool found() const {
250
return _found;
251
}
252
};
253
254
bool ClassLoaderData::ChunkedHandleList::contains(oop p) {
255
VerifyContainsOopClosure cl(p);
256
oops_do(&cl);
257
return cl.found();
258
}
259
260
#ifndef PRODUCT
261
bool ClassLoaderData::ChunkedHandleList::owner_of(oop* oop_handle) {
262
Chunk* chunk = _head;
263
while (chunk != NULL) {
264
if (&(chunk->_data[0]) <= oop_handle && oop_handle < &(chunk->_data[chunk->_size])) {
265
return true;
266
}
267
chunk = chunk->_next;
268
}
269
return false;
270
}
271
#endif // PRODUCT
272
273
void ClassLoaderData::clear_claim(int claim) {
274
for (;;) {
275
int old_claim = Atomic::load(&_claim);
276
if ((old_claim & claim) == 0) {
277
return;
278
}
279
int new_claim = old_claim & ~claim;
280
if (Atomic::cmpxchg(&_claim, old_claim, new_claim) == old_claim) {
281
return;
282
}
283
}
284
}
285
286
bool ClassLoaderData::try_claim(int claim) {
287
for (;;) {
288
int old_claim = Atomic::load(&_claim);
289
if ((old_claim & claim) == claim) {
290
return false;
291
}
292
int new_claim = old_claim | claim;
293
if (Atomic::cmpxchg(&_claim, old_claim, new_claim) == old_claim) {
294
return true;
295
}
296
}
297
}
298
299
// Non-strong hidden classes have their own ClassLoaderData that is marked to keep alive
300
// while the class is being parsed, and if the class appears on the module fixup list.
301
// Due to the uniqueness that no other class shares the hidden class' name or
302
// ClassLoaderData, no other non-GC thread has knowledge of the hidden class while
303
// it is being defined, therefore _keep_alive is not volatile or atomic.
304
void ClassLoaderData::inc_keep_alive() {
305
if (has_class_mirror_holder()) {
306
assert(_keep_alive > 0, "Invalid keep alive increment count");
307
_keep_alive++;
308
}
309
}
310
311
void ClassLoaderData::dec_keep_alive() {
312
if (has_class_mirror_holder()) {
313
assert(_keep_alive > 0, "Invalid keep alive decrement count");
314
_keep_alive--;
315
}
316
}
317
318
void ClassLoaderData::oops_do(OopClosure* f, int claim_value, bool clear_mod_oops) {
319
if (claim_value != ClassLoaderData::_claim_none && !try_claim(claim_value)) {
320
return;
321
}
322
323
// Only clear modified_oops after the ClassLoaderData is claimed.
324
if (clear_mod_oops) {
325
clear_modified_oops();
326
}
327
328
_handles.oops_do(f);
329
}
330
331
void ClassLoaderData::classes_do(KlassClosure* klass_closure) {
332
// Lock-free access requires load_acquire
333
for (Klass* k = Atomic::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
334
klass_closure->do_klass(k);
335
assert(k != k->next_link(), "no loops!");
336
}
337
}
338
339
void ClassLoaderData::classes_do(void f(Klass * const)) {
340
// Lock-free access requires load_acquire
341
for (Klass* k = Atomic::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
342
f(k);
343
assert(k != k->next_link(), "no loops!");
344
}
345
}
346
347
void ClassLoaderData::methods_do(void f(Method*)) {
348
// Lock-free access requires load_acquire
349
for (Klass* k = Atomic::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
350
if (k->is_instance_klass() && InstanceKlass::cast(k)->is_loaded()) {
351
InstanceKlass::cast(k)->methods_do(f);
352
}
353
}
354
}
355
356
void ClassLoaderData::loaded_classes_do(KlassClosure* klass_closure) {
357
// To call this, one must have the MultiArray_lock held, but the _klasses list still has lock free reads.
358
assert_locked_or_safepoint(MultiArray_lock);
359
360
// Lock-free access requires load_acquire
361
for (Klass* k = Atomic::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
362
// Do not filter ArrayKlass oops here...
363
if (k->is_array_klass() || (k->is_instance_klass() && InstanceKlass::cast(k)->is_loaded())) {
364
#ifdef ASSERT
365
oop m = k->java_mirror();
366
assert(m != NULL, "NULL mirror");
367
assert(m->is_a(vmClasses::Class_klass()), "invalid mirror");
368
#endif
369
klass_closure->do_klass(k);
370
}
371
}
372
}
373
374
void ClassLoaderData::classes_do(void f(InstanceKlass*)) {
375
// Lock-free access requires load_acquire
376
for (Klass* k = Atomic::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
377
if (k->is_instance_klass()) {
378
f(InstanceKlass::cast(k));
379
}
380
assert(k != k->next_link(), "no loops!");
381
}
382
}
383
384
void ClassLoaderData::modules_do(void f(ModuleEntry*)) {
385
assert_locked_or_safepoint(Module_lock);
386
if (_unnamed_module != NULL) {
387
f(_unnamed_module);
388
}
389
if (_modules != NULL) {
390
for (int i = 0; i < _modules->table_size(); i++) {
391
for (ModuleEntry* entry = _modules->bucket(i);
392
entry != NULL;
393
entry = entry->next()) {
394
f(entry);
395
}
396
}
397
}
398
}
399
400
void ClassLoaderData::packages_do(void f(PackageEntry*)) {
401
assert_locked_or_safepoint(Module_lock);
402
if (_packages != NULL) {
403
for (int i = 0; i < _packages->table_size(); i++) {
404
for (PackageEntry* entry = _packages->bucket(i);
405
entry != NULL;
406
entry = entry->next()) {
407
f(entry);
408
}
409
}
410
}
411
}
412
413
void ClassLoaderData::record_dependency(const Klass* k) {
414
assert(k != NULL, "invariant");
415
416
ClassLoaderData * const from_cld = this;
417
ClassLoaderData * const to_cld = k->class_loader_data();
418
419
// Do not need to record dependency if the dependency is to a class whose
420
// class loader data is never freed. (i.e. the dependency's class loader
421
// is one of the three builtin class loaders and the dependency's class
422
// loader data has a ClassLoader holder, not a Class holder.)
423
if (to_cld->is_permanent_class_loader_data()) {
424
return;
425
}
426
427
oop to;
428
if (to_cld->has_class_mirror_holder()) {
429
// Just return if a non-strong hidden class class is attempting to record a dependency
430
// to itself. (Note that every non-strong hidden class has its own unique class
431
// loader data.)
432
if (to_cld == from_cld) {
433
return;
434
}
435
// Hidden class dependencies are through the mirror.
436
to = k->java_mirror();
437
} else {
438
to = to_cld->class_loader();
439
oop from = from_cld->class_loader();
440
441
// Just return if this dependency is to a class with the same or a parent
442
// class_loader.
443
if (from == to || java_lang_ClassLoader::isAncestor(from, to)) {
444
return; // this class loader is in the parent list, no need to add it.
445
}
446
}
447
448
// It's a dependency we won't find through GC, add it.
449
if (!_handles.contains(to)) {
450
NOT_PRODUCT(Atomic::inc(&_dependency_count));
451
LogTarget(Trace, class, loader, data) lt;
452
if (lt.is_enabled()) {
453
ResourceMark rm;
454
LogStream ls(lt);
455
ls.print("adding dependency from ");
456
print_value_on(&ls);
457
ls.print(" to ");
458
to_cld->print_value_on(&ls);
459
ls.cr();
460
}
461
Handle dependency(Thread::current(), to);
462
add_handle(dependency);
463
// Added a potentially young gen oop to the ClassLoaderData
464
record_modified_oops();
465
}
466
}
467
468
void ClassLoaderData::add_class(Klass* k, bool publicize /* true */) {
469
{
470
MutexLocker ml(metaspace_lock(), Mutex::_no_safepoint_check_flag);
471
Klass* old_value = _klasses;
472
k->set_next_link(old_value);
473
// Link the new item into the list, making sure the linked class is stable
474
// since the list can be walked without a lock
475
Atomic::release_store(&_klasses, k);
476
if (k->is_array_klass()) {
477
ClassLoaderDataGraph::inc_array_classes(1);
478
} else {
479
ClassLoaderDataGraph::inc_instance_classes(1);
480
}
481
}
482
483
if (publicize) {
484
LogTarget(Trace, class, loader, data) lt;
485
if (lt.is_enabled()) {
486
ResourceMark rm;
487
LogStream ls(lt);
488
ls.print("Adding k: " PTR_FORMAT " %s to ", p2i(k), k->external_name());
489
print_value_on(&ls);
490
ls.cr();
491
}
492
}
493
}
494
495
void ClassLoaderData::initialize_holder(Handle loader_or_mirror) {
496
if (loader_or_mirror() != NULL) {
497
assert(_holder.is_null(), "never replace holders");
498
_holder = WeakHandle(Universe::vm_weak(), loader_or_mirror);
499
}
500
}
501
502
// Remove a klass from the _klasses list for scratch_class during redefinition
503
// or parsed class in the case of an error.
504
void ClassLoaderData::remove_class(Klass* scratch_class) {
505
assert_locked_or_safepoint(ClassLoaderDataGraph_lock);
506
507
// Adjust global class iterator.
508
ClassLoaderDataGraph::adjust_saved_class(scratch_class);
509
510
Klass* prev = NULL;
511
for (Klass* k = _klasses; k != NULL; k = k->next_link()) {
512
if (k == scratch_class) {
513
if (prev == NULL) {
514
_klasses = k->next_link();
515
} else {
516
Klass* next = k->next_link();
517
prev->set_next_link(next);
518
}
519
520
if (k->is_array_klass()) {
521
ClassLoaderDataGraph::dec_array_classes(1);
522
} else {
523
ClassLoaderDataGraph::dec_instance_classes(1);
524
}
525
526
return;
527
}
528
prev = k;
529
assert(k != k->next_link(), "no loops!");
530
}
531
ShouldNotReachHere(); // should have found this class!!
532
}
533
534
void ClassLoaderData::unload() {
535
_unloading = true;
536
537
LogTarget(Trace, class, loader, data) lt;
538
if (lt.is_enabled()) {
539
ResourceMark rm;
540
LogStream ls(lt);
541
ls.print("unload");
542
print_value_on(&ls);
543
ls.cr();
544
}
545
546
// Some items on the _deallocate_list need to free their C heap structures
547
// if they are not already on the _klasses list.
548
free_deallocate_list_C_heap_structures();
549
550
// Clean up class dependencies and tell serviceability tools
551
// these classes are unloading. Must be called
552
// after erroneous classes are released.
553
classes_do(InstanceKlass::unload_class);
554
555
// Clean up global class iterator for compiler
556
ClassLoaderDataGraph::adjust_saved_class(this);
557
}
558
559
ModuleEntryTable* ClassLoaderData::modules() {
560
// Lazily create the module entry table at first request.
561
// Lock-free access requires load_acquire.
562
ModuleEntryTable* modules = Atomic::load_acquire(&_modules);
563
if (modules == NULL) {
564
MutexLocker m1(Module_lock);
565
// Check if _modules got allocated while we were waiting for this lock.
566
if ((modules = _modules) == NULL) {
567
modules = new ModuleEntryTable(ModuleEntryTable::_moduletable_entry_size);
568
569
{
570
MutexLocker m1(metaspace_lock(), Mutex::_no_safepoint_check_flag);
571
// Ensure _modules is stable, since it is examined without a lock
572
Atomic::release_store(&_modules, modules);
573
}
574
}
575
}
576
return modules;
577
}
578
579
const int _boot_loader_dictionary_size = 1009;
580
const int _default_loader_dictionary_size = 107;
581
582
Dictionary* ClassLoaderData::create_dictionary() {
583
assert(!has_class_mirror_holder(), "class mirror holder cld does not have a dictionary");
584
int size;
585
bool resizable = false;
586
if (_the_null_class_loader_data == NULL) {
587
size = _boot_loader_dictionary_size;
588
resizable = true;
589
} else if (class_loader()->is_a(vmClasses::reflect_DelegatingClassLoader_klass())) {
590
size = 1; // there's only one class in relection class loader and no initiated classes
591
} else if (is_system_class_loader_data()) {
592
size = _boot_loader_dictionary_size;
593
resizable = true;
594
} else {
595
size = _default_loader_dictionary_size;
596
resizable = true;
597
}
598
if (!DynamicallyResizeSystemDictionaries || DumpSharedSpaces) {
599
resizable = false;
600
}
601
return new Dictionary(this, size, resizable);
602
}
603
604
// Tell the GC to keep this klass alive while iterating ClassLoaderDataGraph
605
oop ClassLoaderData::holder_phantom() const {
606
// A klass that was previously considered dead can be looked up in the
607
// CLD/SD, and its _java_mirror or _class_loader can be stored in a root
608
// or a reachable object making it alive again. The SATB part of G1 needs
609
// to get notified about this potential resurrection, otherwise the marking
610
// might not find the object.
611
if (!_holder.is_null()) { // NULL class_loader
612
return _holder.resolve();
613
} else {
614
return NULL;
615
}
616
}
617
618
// Let the GC read the holder without keeping it alive.
619
oop ClassLoaderData::holder_no_keepalive() const {
620
if (!_holder.is_null()) { // NULL class_loader
621
return _holder.peek();
622
} else {
623
return NULL;
624
}
625
}
626
627
// Unloading support
628
bool ClassLoaderData::is_alive() const {
629
bool alive = keep_alive() // null class loader and incomplete non-strong hidden class.
630
|| (_holder.peek() != NULL); // and not cleaned by the GC weak handle processing.
631
632
return alive;
633
}
634
635
class ReleaseKlassClosure: public KlassClosure {
636
private:
637
size_t _instance_class_released;
638
size_t _array_class_released;
639
public:
640
ReleaseKlassClosure() : _instance_class_released(0), _array_class_released(0) { }
641
642
size_t instance_class_released() const { return _instance_class_released; }
643
size_t array_class_released() const { return _array_class_released; }
644
645
void do_klass(Klass* k) {
646
if (k->is_array_klass()) {
647
_array_class_released ++;
648
} else {
649
assert(k->is_instance_klass(), "Must be");
650
_instance_class_released ++;
651
}
652
k->release_C_heap_structures();
653
}
654
};
655
656
ClassLoaderData::~ClassLoaderData() {
657
// Release C heap structures for all the classes.
658
ReleaseKlassClosure cl;
659
classes_do(&cl);
660
661
ClassLoaderDataGraph::dec_array_classes(cl.array_class_released());
662
ClassLoaderDataGraph::dec_instance_classes(cl.instance_class_released());
663
664
// Release the WeakHandle
665
_holder.release(Universe::vm_weak());
666
667
// Release C heap allocated hashtable for all the packages.
668
if (_packages != NULL) {
669
// Destroy the table itself
670
delete _packages;
671
_packages = NULL;
672
}
673
674
// Release C heap allocated hashtable for all the modules.
675
if (_modules != NULL) {
676
// Destroy the table itself
677
delete _modules;
678
_modules = NULL;
679
}
680
681
// Release C heap allocated hashtable for the dictionary
682
if (_dictionary != NULL) {
683
// Destroy the table itself
684
delete _dictionary;
685
_dictionary = NULL;
686
}
687
688
if (_unnamed_module != NULL) {
689
_unnamed_module->delete_unnamed_module();
690
_unnamed_module = NULL;
691
}
692
693
// release the metaspace
694
ClassLoaderMetaspace *m = _metaspace;
695
if (m != NULL) {
696
_metaspace = NULL;
697
delete m;
698
}
699
// Method::clear_jmethod_ids only sets the jmethod_ids to NULL without
700
// releasing the memory for related JNIMethodBlocks and JNIMethodBlockNodes.
701
// This is done intentionally because native code (e.g. JVMTI agent) holding
702
// jmethod_ids may access them after the associated classes and class loader
703
// are unloaded. The Java Native Interface Specification says "method ID
704
// does not prevent the VM from unloading the class from which the ID has
705
// been derived. After the class is unloaded, the method or field ID becomes
706
// invalid". In real world usages, the native code may rely on jmethod_ids
707
// being NULL after class unloading. Hence, it is unsafe to free the memory
708
// from the VM side without knowing when native code is going to stop using
709
// them.
710
if (_jmethod_ids != NULL) {
711
Method::clear_jmethod_ids(this);
712
}
713
// Delete lock
714
delete _metaspace_lock;
715
716
// Delete free list
717
if (_deallocate_list != NULL) {
718
delete _deallocate_list;
719
}
720
721
// Decrement refcounts of Symbols if created.
722
if (_name != NULL) {
723
_name->decrement_refcount();
724
}
725
if (_name_and_id != NULL) {
726
_name_and_id->decrement_refcount();
727
}
728
}
729
730
// Returns true if this class loader data is for the app class loader
731
// or a user defined system class loader. (Note that the class loader
732
// data may have a Class holder.)
733
bool ClassLoaderData::is_system_class_loader_data() const {
734
return SystemDictionary::is_system_class_loader(class_loader());
735
}
736
737
// Returns true if this class loader data is for the platform class loader.
738
// (Note that the class loader data may have a Class holder.)
739
bool ClassLoaderData::is_platform_class_loader_data() const {
740
return SystemDictionary::is_platform_class_loader(class_loader());
741
}
742
743
// Returns true if the class loader for this class loader data is one of
744
// the 3 builtin (boot application/system or platform) class loaders,
745
// including a user-defined system class loader. Note that if the class
746
// loader data is for a non-strong hidden class then it may
747
// get freed by a GC even if its class loader is one of these loaders.
748
bool ClassLoaderData::is_builtin_class_loader_data() const {
749
return (is_boot_class_loader_data() ||
750
SystemDictionary::is_system_class_loader(class_loader()) ||
751
SystemDictionary::is_platform_class_loader(class_loader()));
752
}
753
754
// Returns true if this class loader data is a class loader data
755
// that is not ever freed by a GC. It must be the CLD for one of the builtin
756
// class loaders and not the CLD for a non-strong hidden class.
757
bool ClassLoaderData::is_permanent_class_loader_data() const {
758
return is_builtin_class_loader_data() && !has_class_mirror_holder();
759
}
760
761
ClassLoaderMetaspace* ClassLoaderData::metaspace_non_null() {
762
// If the metaspace has not been allocated, create a new one. Might want
763
// to create smaller arena for Reflection class loaders also.
764
// The reason for the delayed allocation is because some class loaders are
765
// simply for delegating with no metadata of their own.
766
// Lock-free access requires load_acquire.
767
ClassLoaderMetaspace* metaspace = Atomic::load_acquire(&_metaspace);
768
if (metaspace == NULL) {
769
MutexLocker ml(_metaspace_lock, Mutex::_no_safepoint_check_flag);
770
// Check if _metaspace got allocated while we were waiting for this lock.
771
if ((metaspace = _metaspace) == NULL) {
772
if (this == the_null_class_loader_data()) {
773
assert (class_loader() == NULL, "Must be");
774
metaspace = new ClassLoaderMetaspace(_metaspace_lock, Metaspace::BootMetaspaceType);
775
} else if (has_class_mirror_holder()) {
776
metaspace = new ClassLoaderMetaspace(_metaspace_lock, Metaspace::ClassMirrorHolderMetaspaceType);
777
} else if (class_loader()->is_a(vmClasses::reflect_DelegatingClassLoader_klass())) {
778
metaspace = new ClassLoaderMetaspace(_metaspace_lock, Metaspace::ReflectionMetaspaceType);
779
} else {
780
metaspace = new ClassLoaderMetaspace(_metaspace_lock, Metaspace::StandardMetaspaceType);
781
}
782
// Ensure _metaspace is stable, since it is examined without a lock
783
Atomic::release_store(&_metaspace, metaspace);
784
}
785
}
786
return metaspace;
787
}
788
789
OopHandle ClassLoaderData::add_handle(Handle h) {
790
MutexLocker ml(metaspace_lock(), Mutex::_no_safepoint_check_flag);
791
record_modified_oops();
792
return _handles.add(h());
793
}
794
795
void ClassLoaderData::remove_handle(OopHandle h) {
796
assert(!is_unloading(), "Do not remove a handle for a CLD that is unloading");
797
oop* ptr = h.ptr_raw();
798
if (ptr != NULL) {
799
assert(_handles.owner_of(ptr), "Got unexpected handle " PTR_FORMAT, p2i(ptr));
800
NativeAccess<>::oop_store(ptr, oop(NULL));
801
}
802
}
803
804
void ClassLoaderData::init_handle_locked(OopHandle& dest, Handle h) {
805
MutexLocker ml(metaspace_lock(), Mutex::_no_safepoint_check_flag);
806
if (dest.resolve() != NULL) {
807
return;
808
} else {
809
record_modified_oops();
810
dest = _handles.add(h());
811
}
812
}
813
814
// Add this metadata pointer to be freed when it's safe. This is only during
815
// a safepoint which checks if handles point to this metadata field.
816
void ClassLoaderData::add_to_deallocate_list(Metadata* m) {
817
// Metadata in shared region isn't deleted.
818
if (!m->is_shared()) {
819
MutexLocker ml(metaspace_lock(), Mutex::_no_safepoint_check_flag);
820
if (_deallocate_list == NULL) {
821
_deallocate_list = new (ResourceObj::C_HEAP, mtClass) GrowableArray<Metadata*>(100, mtClass);
822
}
823
_deallocate_list->append_if_missing(m);
824
log_debug(class, loader, data)("deallocate added for %s", m->print_value_string());
825
ClassLoaderDataGraph::set_should_clean_deallocate_lists();
826
}
827
}
828
829
// Deallocate free metadata on the free list. How useful the PermGen was!
830
void ClassLoaderData::free_deallocate_list() {
831
// This must be called at a safepoint because it depends on metadata walking at
832
// safepoint cleanup time.
833
assert(SafepointSynchronize::is_at_safepoint(), "only called at safepoint");
834
assert(!is_unloading(), "only called for ClassLoaderData that are not unloading");
835
if (_deallocate_list == NULL) {
836
return;
837
}
838
// Go backwards because this removes entries that are freed.
839
for (int i = _deallocate_list->length() - 1; i >= 0; i--) {
840
Metadata* m = _deallocate_list->at(i);
841
if (!m->on_stack()) {
842
_deallocate_list->remove_at(i);
843
// There are only three types of metadata that we deallocate directly.
844
// Cast them so they can be used by the template function.
845
if (m->is_method()) {
846
MetadataFactory::free_metadata(this, (Method*)m);
847
} else if (m->is_constantPool()) {
848
MetadataFactory::free_metadata(this, (ConstantPool*)m);
849
} else if (m->is_klass()) {
850
MetadataFactory::free_metadata(this, (InstanceKlass*)m);
851
} else {
852
ShouldNotReachHere();
853
}
854
} else {
855
// Metadata is alive.
856
// If scratch_class is on stack then it shouldn't be on this list!
857
assert(!m->is_klass() || !((InstanceKlass*)m)->is_scratch_class(),
858
"scratch classes on this list should be dead");
859
// Also should assert that other metadata on the list was found in handles.
860
// Some cleaning remains.
861
ClassLoaderDataGraph::set_should_clean_deallocate_lists();
862
}
863
}
864
}
865
866
// This is distinct from free_deallocate_list. For class loader data that are
867
// unloading, this frees the C heap memory for items on the list, and unlinks
868
// scratch or error classes so that unloading events aren't triggered for these
869
// classes. The metadata is removed with the unloading metaspace.
870
// There isn't C heap memory allocated for methods, so nothing is done for them.
871
void ClassLoaderData::free_deallocate_list_C_heap_structures() {
872
assert_locked_or_safepoint(ClassLoaderDataGraph_lock);
873
assert(is_unloading(), "only called for ClassLoaderData that are unloading");
874
if (_deallocate_list == NULL) {
875
return;
876
}
877
// Go backwards because this removes entries that are freed.
878
for (int i = _deallocate_list->length() - 1; i >= 0; i--) {
879
Metadata* m = _deallocate_list->at(i);
880
_deallocate_list->remove_at(i);
881
if (m->is_constantPool()) {
882
((ConstantPool*)m)->release_C_heap_structures();
883
} else if (m->is_klass()) {
884
InstanceKlass* ik = (InstanceKlass*)m;
885
// also releases ik->constants() C heap memory
886
ik->release_C_heap_structures();
887
// Remove the class so unloading events aren't triggered for
888
// this class (scratch or error class) in do_unloading().
889
remove_class(ik);
890
// But still have to remove it from the dumptime_table.
891
if (Arguments::is_dumping_archive()) {
892
SystemDictionaryShared::remove_dumptime_info(ik);
893
}
894
}
895
}
896
}
897
898
// Caller needs ResourceMark
899
// If the class loader's _name has not been explicitly set, the class loader's
900
// qualified class name is returned.
901
const char* ClassLoaderData::loader_name() const {
902
if (_class_loader_klass == NULL) {
903
return BOOTSTRAP_LOADER_NAME;
904
} else if (_name != NULL) {
905
return _name->as_C_string();
906
} else {
907
return _class_loader_klass->external_name();
908
}
909
}
910
911
// Caller needs ResourceMark
912
// Format of the _name_and_id is as follows:
913
// If the defining loader has a name explicitly set then '<loader-name>' @<id>
914
// If the defining loader has no name then <qualified-class-name> @<id>
915
// If built-in loader, then omit '@<id>' as there is only one instance.
916
const char* ClassLoaderData::loader_name_and_id() const {
917
if (_class_loader_klass == NULL) {
918
return "'" BOOTSTRAP_LOADER_NAME "'";
919
} else if (_name_and_id != NULL) {
920
return _name_and_id->as_C_string();
921
} else {
922
// May be called in a race before _name_and_id is initialized.
923
return _class_loader_klass->external_name();
924
}
925
}
926
927
void ClassLoaderData::print_value_on(outputStream* out) const {
928
if (!is_unloading() && class_loader() != NULL) {
929
out->print("loader data: " INTPTR_FORMAT " for instance ", p2i(this));
930
class_loader()->print_value_on(out); // includes loader_name_and_id() and address of class loader instance
931
} else {
932
// loader data: 0xsomeaddr of 'bootstrap'
933
out->print("loader data: " INTPTR_FORMAT " of %s", p2i(this), loader_name_and_id());
934
}
935
if (_has_class_mirror_holder) {
936
out->print(" has a class holder");
937
}
938
}
939
940
void ClassLoaderData::print_value() const { print_value_on(tty); }
941
942
#ifndef PRODUCT
943
class PrintKlassClosure: public KlassClosure {
944
outputStream* _out;
945
public:
946
PrintKlassClosure(outputStream* out): _out(out) { }
947
948
void do_klass(Klass* k) {
949
ResourceMark rm;
950
_out->print("%s,", k->external_name());
951
}
952
};
953
954
void ClassLoaderData::print_on(outputStream* out) const {
955
ResourceMark rm;
956
out->print_cr("ClassLoaderData(" INTPTR_FORMAT ")", p2i(this));
957
out->print_cr(" - name %s", loader_name_and_id());
958
if (!_holder.is_null()) {
959
out->print (" - holder ");
960
_holder.print_on(out);
961
out->print_cr("");
962
}
963
out->print_cr(" - class loader " INTPTR_FORMAT, p2i(_class_loader.ptr_raw()));
964
out->print_cr(" - metaspace " INTPTR_FORMAT, p2i(_metaspace));
965
out->print_cr(" - unloading %s", _unloading ? "true" : "false");
966
out->print_cr(" - class mirror holder %s", _has_class_mirror_holder ? "true" : "false");
967
out->print_cr(" - modified oops %s", _modified_oops ? "true" : "false");
968
out->print_cr(" - keep alive %d", _keep_alive);
969
out->print (" - claim ");
970
switch(_claim) {
971
case _claim_none: out->print_cr("none"); break;
972
case _claim_finalizable:out->print_cr("finalizable"); break;
973
case _claim_strong: out->print_cr("strong"); break;
974
case _claim_other: out->print_cr("other"); break;
975
default: ShouldNotReachHere();
976
}
977
out->print_cr(" - handles %d", _handles.count());
978
out->print_cr(" - dependency count %d", _dependency_count);
979
out->print (" - klasses {");
980
PrintKlassClosure closure(out);
981
((ClassLoaderData*)this)->classes_do(&closure);
982
out->print_cr(" }");
983
out->print_cr(" - packages " INTPTR_FORMAT, p2i(_packages));
984
out->print_cr(" - module " INTPTR_FORMAT, p2i(_modules));
985
out->print_cr(" - unnamed module " INTPTR_FORMAT, p2i(_unnamed_module));
986
out->print_cr(" - dictionary " INTPTR_FORMAT, p2i(_dictionary));
987
if (_jmethod_ids != NULL) {
988
out->print (" - jmethod count ");
989
Method::print_jmethod_ids_count(this, out);
990
out->print_cr("");
991
}
992
out->print_cr(" - deallocate list " INTPTR_FORMAT, p2i(_deallocate_list));
993
out->print_cr(" - next CLD " INTPTR_FORMAT, p2i(_next));
994
}
995
#endif // PRODUCT
996
997
void ClassLoaderData::print() const { print_on(tty); }
998
999
void ClassLoaderData::verify() {
1000
assert_locked_or_safepoint(_metaspace_lock);
1001
oop cl = class_loader();
1002
1003
guarantee(this == class_loader_data(cl) || has_class_mirror_holder(), "Must be the same");
1004
guarantee(cl != NULL || this == ClassLoaderData::the_null_class_loader_data() || has_class_mirror_holder(), "must be");
1005
1006
// Verify the integrity of the allocated space.
1007
#ifdef ASSERT
1008
if (metaspace_or_null() != NULL) {
1009
metaspace_or_null()->verify();
1010
}
1011
#endif
1012
1013
for (Klass* k = _klasses; k != NULL; k = k->next_link()) {
1014
guarantee(k->class_loader_data() == this, "Must be the same");
1015
k->verify();
1016
assert(k != k->next_link(), "no loops!");
1017
}
1018
}
1019
1020
bool ClassLoaderData::contains_klass(Klass* klass) {
1021
// Lock-free access requires load_acquire
1022
for (Klass* k = Atomic::load_acquire(&_klasses); k != NULL; k = k->next_link()) {
1023
if (k == klass) return true;
1024
}
1025
return false;
1026
}
1027
1028