-
Notifications
You must be signed in to change notification settings - Fork 746
/
Copy pathHeapRootScanner.cpp
607 lines (527 loc) · 18.2 KB
/
HeapRootScanner.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
/*******************************************************************************
* Copyright IBM Corp. and others 1991
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution and
* is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following
* Secondary Licenses when the conditions for such availability set
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
* General Public License, version 2 with the GNU Classpath
* Exception [1] and GNU General Public License, version 2 with the
* OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] https://openjdk.org/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
*******************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <limits.h> // or <climits> for CHAR_BIT
#include <string.h> // memcpy
#include "j9cfg.h"
#include "j9.h"
#if defined(J9VM_OPT_JVMTI)
#include "jvmtiInternal.h"
#endif /* defined(J9VM_OPT_JVMTI) */
#include "HeapRootScanner.hpp"
#include "ClassIterator.hpp"
#include "ClassHeapIterator.hpp"
#include "ClassLoaderIterator.hpp"
#include "Debug.hpp"
#if defined(J9VM_GC_FINALIZATION)
#include "FinalizeListManager.hpp"
#endif /* J9VM_GC_FINALIZATION*/
#include "MixedObjectIterator.hpp"
#include "ModronTypes.hpp"
#include "ObjectAccessBarrier.hpp"
#include "ObjectHeapIterator.hpp"
#include "ObjectModel.hpp"
#include "OwnableSynchronizerObjectList.hpp"
#include "ContinuationObjectList.hpp"
#include "PointerArrayIterator.hpp"
#include "SegmentIterator.hpp"
#include "StringTable.hpp"
#include "UnfinalizedObjectList.hpp"
#include "VMClassSlotIterator.hpp"
#include "VMThreadListIterator.hpp"
#include "VMThreadIterator.hpp"
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doClassLoader(J9ClassLoader *classLoader)
{
if (J9_GC_CLASS_LOADER_DEAD != (classLoader->gcFlags & J9_GC_CLASS_LOADER_DEAD) ) {
doSlot(J9GC_J9CLASSLOADER_CLASSLOADEROBJECT_EA(classLoader));
}
}
void
MM_HeapRootScanner::doOwnableSynchronizerObject(J9Object *objectPtr)
{
doObject(objectPtr);
}
void
MM_HeapRootScanner::doContinuationObject(J9Object *objectPtr)
{
doObject(objectPtr);
}
#if defined(J9VM_GC_FINALIZATION)
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doUnfinalizedObject(J9Object *objectPtr)
{
doObject(objectPtr);
}
#endif /* J9VM_GC_FINALIZATION */
#if defined(J9VM_GC_FINALIZATION)
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doFinalizableObject(J9Object *objectPtr)
{
doObject(objectPtr);
}
#endif /* J9VM_GC_FINALIZATION */
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doMonitorReference(J9ObjectMonitor *objectMonitor, GC_HashTableIterator *monitorReferenceIterator)
{
J9ThreadAbstractMonitor *monitor = (J9ThreadAbstractMonitor *)objectMonitor->monitor;
void *userData = (void *)monitor->userData;
doObject((J9Object *)userData);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doJNIWeakGlobalReference(J9Object **slotPtr)
{
doSlot(slotPtr);
}
#if defined(J9VM_GC_MODRON_SCAVENGER)
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doRememberedSetSlot(J9Object **slotPtr, GC_RememberedSetSlotIterator *rememberedSetSlotIterator)
{
doSlot(slotPtr);
}
#endif /* defined(J9VM_GC_MODRON_SCAVENGER) */
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doStringTableSlot(J9Object **slotPtr, GC_StringTableIterator *stringTableIterator)
{
doSlot(slotPtr);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doVMClassSlot(J9Class *classPtr)
{
doClassSlot(classPtr);
}
#if defined(J9VM_OPT_JVMTI)
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doJVMTIObjectTagSlot(J9Object **slotPtr, GC_JVMTIObjectTagTableIterator *objectTagTableIterator)
{
doSlot(slotPtr);
}
#endif /* J9VM_OPT_JVMTI */
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanClasses()
{
#if defined(J9VM_GC_DYNAMIC_CLASS_UNLOADING)
J9ClassLoader *sysClassLoader = _javaVM->systemClassLoader;
J9ClassLoader *appClassLoader = _javaVM->applicationClassLoader;
J9ClassLoader *extClassLoader = _javaVM->extensionClassLoader;
MM_GCExtensions::DynamicClassUnloading dynamicClassUnloadingFlag = (MM_GCExtensions::DynamicClassUnloading )_extensions->dynamicClassUnloading;
#endif
reportScanningStarted(RootScannerEntity_Classes);
GC_SegmentIterator segmentIterator(_javaVM->classMemorySegments, MEMORY_TYPE_RAM_CLASS);
while (J9MemorySegment *segment = segmentIterator.nextSegment()) {
GC_ClassHeapIterator classHeapIterator(_javaVM, segment);
J9Class *clazz = NULL;
while (NULL != (clazz = classHeapIterator.nextClass())) {
RootScannerEntityReachability reachability;
#if defined(J9VM_GC_DYNAMIC_CLASS_UNLOADING)
if (MM_GCExtensions::DYNAMIC_CLASS_UNLOADING_NEVER == dynamicClassUnloadingFlag) {
/* if -Xnoclassgc, all classes are strong */
reachability = RootScannerEntityReachability_Strong;
} else {
J9ClassLoader *classLoader = clazz->classLoader;
if ((classLoader == sysClassLoader) || (classLoader == appClassLoader) || (classLoader == extClassLoader)) {
reachability = RootScannerEntityReachability_Strong;
} else {
reachability = RootScannerEntityReachability_Weak;
}
}
#else
reachability = RootScannerEntityReachability_Strong;
#endif
setReachability(reachability);
doClass(clazz);
}
}
reportScanningEnded(RootScannerEntity_Classes);
}
/**
* Scan through the slots in the VM containing known classes
*/
void
MM_HeapRootScanner::scanVMClassSlots()
{
reportScanningStarted(RootScannerEntity_VMClassSlots);
setReachability(RootScannerEntityReachability_Strong);
GC_VMClassSlotIterator classSlotIterator(_javaVM);
J9Class *classPtr;
while (NULL != (classPtr = classSlotIterator.nextSlot())) {
doVMClassSlot(classPtr);
}
reportScanningEnded(RootScannerEntity_VMClassSlots);
}
/**
* General class slot handler to be reimplemented by specializing class.
* This handler is called for every reference to a J9Class.
*/
void
MM_HeapRootScanner::doClassSlot(J9Class *classPtr)
{
doClass(classPtr);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doVMThreadSlot(J9Object **slotPtr, GC_VMThreadIterator *vmThreadIterator)
{
doSlot(slotPtr);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::doJNIGlobalReferenceSlot(J9Object **slotPtr, GC_JNIGlobalReferenceIterator *jniGlobalReferenceIterator)
{
doSlot(slotPtr);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanClassLoaders()
{
#if defined(J9VM_GC_DYNAMIC_CLASS_UNLOADING)
J9ClassLoader *sysClassLoader = _javaVM->systemClassLoader;
J9ClassLoader *appClassLoader = _javaVM->applicationClassLoader;
J9ClassLoader *extClassLoader = _javaVM->extensionClassLoader;
MM_GCExtensions::DynamicClassUnloading dynamicClassUnloadingFlag = (MM_GCExtensions::DynamicClassUnloading )_extensions->dynamicClassUnloading;
#endif
J9ClassLoader *classLoader = NULL;
GC_ClassLoaderIterator classLoaderIterator(_javaVM->classLoaderBlocks);
reportScanningStarted(RootScannerEntity_ClassLoaders);
while ((classLoader = classLoaderIterator.nextSlot()) != NULL) {
RootScannerEntityReachability reachability;
#if defined(J9VM_GC_DYNAMIC_CLASS_UNLOADING)
if (MM_GCExtensions::DYNAMIC_CLASS_UNLOADING_NEVER == dynamicClassUnloadingFlag) {
/* if -Xnoclassgc, all class loader refs are strong */
reachability = RootScannerEntityReachability_Strong;
} else {
if ((classLoader == appClassLoader) || (classLoader == sysClassLoader) || (classLoader == extClassLoader)) {
reachability = RootScannerEntityReachability_Strong;
} else {
reachability = RootScannerEntityReachability_Weak;
}
}
#else
reachability = RootScannerEntityReachability_Strong;
#endif
setReachability(reachability);
doClassLoader(classLoader);
}
reportScanningEnded(RootScannerEntity_ClassLoaders);
}
/**
* @todo Provide function documentation
*
* This function iterates through all the threads, calling scanOneThread on each one that
* should be scanned. The scanOneThread function scans exactly one thread and returns
* either true (if it took an action that requires the thread list iterator to return to
* the beginning) or false (if the thread list iterator should just continue with the next
* thread).
*/
void
MM_HeapRootScanner::scanThreads()
{
reportScanningStarted(RootScannerEntity_Threads);
setReachability(RootScannerEntityReachability_Strong);
GC_VMThreadListIterator vmThreadListIterator(_javaVM);
while (J9VMThread *walkThread = vmThreadListIterator.nextVMThread()) {
if (scanOneThread(walkThread)) {
vmThreadListIterator.reset(_javaVM->mainThread);
}
}
reportScanningEnded(RootScannerEntity_Threads);
}
/**
* This function scans exactly one thread for potential roots.
* @param walkThead the thread to be scanned
* @param localData opaque data to be passed to the stack walker callback function.
* The root scanner fixes that callback function to the stackSlotIterator function
* defined above
* @return true if the thread scan included an action that requires the thread list
* iterator to begin over again at the beginning, false otherwise. This implementation
* always returns false but an overriding implementation may take actions that require
* a true return (for example, RealtimeRootScanner returns true if it yielded after the
* scan, allowing other threads to run and perhaps be created or terminated).
**/
bool
MM_HeapRootScanner::scanOneThread(J9VMThread* walkThread)
{
GC_VMThreadIterator vmThreadIterator(walkThread);
while (J9Object **slot = vmThreadIterator.nextSlot()) {
doVMThreadSlot(slot, &vmThreadIterator);
}
return false;
}
#if defined(J9VM_GC_FINALIZATION)
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanFinalizableObjects()
{
reportScanningStarted(RootScannerEntity_FinalizableObjects);
setReachability(RootScannerEntityReachability_Strong);
GC_FinalizeListManager *finalizeListManager = _extensions->finalizeListManager;
{
/* walk finalizable objects created by the system class loader */
j9object_t systemObject = finalizeListManager->peekSystemFinalizableObject();
while (NULL != systemObject) {
doFinalizableObject(systemObject);
systemObject = finalizeListManager->peekNextSystemFinalizableObject(systemObject);
}
}
{
/* walk finalizable objects created by all other class loaders*/
j9object_t defaultObject = finalizeListManager->peekDefaultFinalizableObject();
while (NULL != defaultObject) {
doFinalizableObject(defaultObject);
defaultObject = finalizeListManager->peekNextDefaultFinalizableObject(defaultObject);
}
}
{
/* walk reference objects */
j9object_t referenceObject = finalizeListManager->peekReferenceObject();
while (NULL != referenceObject) {
doFinalizableObject(referenceObject);
referenceObject = finalizeListManager->peekNextReferenceObject(referenceObject);
}
}
reportScanningEnded(RootScannerEntity_FinalizableObjects);
}
#endif /* J9VM_GC_FINALIZATION */
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanJNIGlobalReferences()
{
reportScanningStarted(RootScannerEntity_JNIGlobalReferences);
setReachability(RootScannerEntityReachability_Strong);
GC_JNIGlobalReferenceIterator jniGlobalReferenceIterator(_javaVM->jniGlobalReferences);
J9Object **slot;
while ((slot = (J9Object **)jniGlobalReferenceIterator.nextSlot()) != NULL) {
doJNIGlobalReferenceSlot(slot, &jniGlobalReferenceIterator);
}
reportScanningEnded(RootScannerEntity_JNIGlobalReferences);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanStringTable()
{
reportScanningStarted(RootScannerEntity_StringTable);
RootScannerEntityReachability reachability;
if (_extensions->collectStringConstants) {
reachability = RootScannerEntityReachability_Weak;
} else {
reachability = RootScannerEntityReachability_Strong;
}
setReachability(reachability);
MM_StringTable *stringTable = MM_GCExtensions::getExtensions(_javaVM->omrVM)->getStringTable();
for (uintptr_t tableIndex = 0; tableIndex < stringTable->getTableCount(); tableIndex++) {
GC_HashTableIterator stringTableIterator(stringTable->getTable(tableIndex));
J9Object **slot;
while ((slot = (J9Object **)stringTableIterator.nextSlot()) != NULL) {
doStringTableSlot(slot, NULL);
}
}
reportScanningEnded(RootScannerEntity_StringTable);
}
#if defined(J9VM_GC_FINALIZATION)
/**
* @todo Provide function documentation
*
* @NOTE this code is not thread safe and assumes it is called in a single threaded
* manner.
*
* @NOTE this can only be used as a READ-ONLY version of the unfinalizedObjectList.
* If you need to modify elements with-in the list you will need to provide your own functionality.
* See MM_MarkingScheme::scanUnfinalizedObjects(MM_EnvironmentStandard *env) as an example
* which modifies elements with-in the list.
*/
void
MM_HeapRootScanner::scanUnfinalizedObjects()
{
reportScanningStarted(RootScannerEntity_UnfinalizedObjects);
setReachability(RootScannerEntityReachability_Weak);
MM_ObjectAccessBarrier *barrier = _extensions->accessBarrier;
MM_UnfinalizedObjectList *unfinalizedObjectList = _extensions->unfinalizedObjectLists;
while (NULL != unfinalizedObjectList) {
J9Object *objectPtr = unfinalizedObjectList->getHeadOfList();
while (NULL != objectPtr) {
doUnfinalizedObject(objectPtr);
objectPtr = barrier->getFinalizeLink(objectPtr);
}
unfinalizedObjectList = unfinalizedObjectList->getNextList();
}
reportScanningEnded(RootScannerEntity_UnfinalizedObjects);
}
#endif /* J9VM_GC_FINALIZATION */
void
MM_HeapRootScanner::scanOwnableSynchronizerObjects()
{
reportScanningStarted(RootScannerEntity_OwnableSynchronizerObjects);
setReachability(RootScannerEntityReachability_Weak);
MM_ObjectAccessBarrier *barrier = _extensions->accessBarrier;
MM_OwnableSynchronizerObjectList *ownableSynchronizerObjectList = _extensions->getOwnableSynchronizerObjectLists();
while (NULL != ownableSynchronizerObjectList) {
J9Object *objectPtr = ownableSynchronizerObjectList->getHeadOfList();
while (NULL != objectPtr) {
doOwnableSynchronizerObject(objectPtr);
objectPtr = barrier->getOwnableSynchronizerLink(objectPtr);
}
ownableSynchronizerObjectList = ownableSynchronizerObjectList->getNextList();
}
reportScanningEnded(RootScannerEntity_OwnableSynchronizerObjects);
}
void
MM_HeapRootScanner::scanContinuationObjects()
{
reportScanningStarted(RootScannerEntity_ContinuationObjects);
setReachability(RootScannerEntityReachability_Weak);
MM_ObjectAccessBarrier *barrier = _extensions->accessBarrier;
MM_ContinuationObjectList *continuationObjectList = _extensions->getContinuationObjectLists();
while (NULL != continuationObjectList) {
J9Object *objectPtr = continuationObjectList->getHeadOfList();
while (NULL != objectPtr) {
doContinuationObject(objectPtr);
objectPtr = barrier->getContinuationLink(objectPtr);
}
continuationObjectList = continuationObjectList->getNextList();
}
reportScanningEnded(RootScannerEntity_ContinuationObjects);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanMonitorReferences()
{
reportScanningStarted(RootScannerEntity_MonitorReferences);
setReachability(RootScannerEntityReachability_Weak);
J9ObjectMonitor *objectMonitor = NULL;
J9MonitorTableListEntry *monitorTableList = _javaVM->monitorTableList;
while (NULL != monitorTableList) {
J9HashTable *table = monitorTableList->monitorTable;
if (NULL != table) {
GC_HashTableIterator iterator(table);
while (NULL != (objectMonitor = (J9ObjectMonitor *)iterator.nextSlot())) {
doMonitorReference(objectMonitor, &iterator);
}
}
monitorTableList = monitorTableList->next;
}
reportScanningEnded(RootScannerEntity_MonitorReferences);
}
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanJNIWeakGlobalReferences()
{
reportScanningStarted(RootScannerEntity_JNIWeakGlobalReferences);
setReachability(RootScannerEntityReachability_Weak);
GC_JNIWeakGlobalReferenceIterator jniWeakGlobalReferenceIterator(_javaVM->jniWeakGlobalReferences);
J9Object **slot;
while ((slot = (J9Object **)jniWeakGlobalReferenceIterator.nextSlot()) != NULL) {
doJNIWeakGlobalReference(slot);
}
reportScanningEnded(RootScannerEntity_JNIWeakGlobalReferences);
}
#if defined(J9VM_GC_MODRON_SCAVENGER)
/**
* @todo Provide function documentation
*/
void
MM_HeapRootScanner::scanRememberedSet()
{
reportScanningStarted(RootScannerEntity_RememberedSet);
setReachability(RootScannerEntityReachability_Weak);
MM_SublistPuddle *puddle;
J9Object **slotPtr;
GC_RememberedSetIterator rememberedSetIterator(&_extensions->rememberedSet);
while ((puddle = rememberedSetIterator.nextList()) != NULL) {
GC_RememberedSetSlotIterator rememberedSetSlotIterator(puddle);
while ((slotPtr = (J9Object **)rememberedSetSlotIterator.nextSlot()) != NULL) {
doRememberedSetSlot(slotPtr, &rememberedSetSlotIterator);
}
}
reportScanningEnded(RootScannerEntity_RememberedSet);
}
#endif /* J9VM_GC_MODRON_SCAVENGER */
#if defined(J9VM_OPT_JVMTI)
/**
* Scan the JVMTI tag tables for object references
*/
void
MM_HeapRootScanner::scanJVMTIObjectTagTables()
{
reportScanningStarted(RootScannerEntity_JVMTIObjectTagTables);
setReachability(RootScannerEntityReachability_Weak);
J9JVMTIData * jvmtiData = J9JVMTI_DATA_FROM_VM(_javaVM);
J9JVMTIEnv * jvmtiEnv;
J9Object **slotPtr;
if (NULL != jvmtiData) {
GC_JVMTIObjectTagTableListIterator objectTagTableList( jvmtiData->environments);
while (NULL != (jvmtiEnv = (J9JVMTIEnv *)objectTagTableList.nextSlot())) {
GC_JVMTIObjectTagTableIterator objectTagTableIterator(jvmtiEnv->objectTagTable);
while (NULL != (slotPtr = (J9Object **)objectTagTableIterator.nextSlot())) {
doJVMTIObjectTagSlot(slotPtr, &objectTagTableIterator);
}
}
}
reportScanningEnded(RootScannerEntity_JVMTIObjectTagTables);
}
#endif /* J9VM_OPT_JVMTI */