-
Notifications
You must be signed in to change notification settings - Fork 747
/
Copy pathCompactSchemeFixupObject.cpp
207 lines (180 loc) · 7.58 KB
/
CompactSchemeFixupObject.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
/*******************************************************************************
* 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 "j9.h"
#include "CompactSchemeFixupObject.hpp"
#include "objectdescription.h"
#include "CollectorLanguageInterfaceImpl.hpp"
#if JAVA_SPEC_VERSION >= 24
#include "ContinuationSlotIterator.hpp"
#endif /* JAVA_SPEC_VERSION >= 24 */
#include "Debug.hpp"
#include "EnvironmentStandard.hpp"
#include "FlattenedContiguousArrayIterator.hpp"
#include "HeapRegionIteratorStandard.hpp"
#include "MixedObjectIterator.hpp"
#include "ObjectAccessBarrier.hpp"
#include "OwnableSynchronizerObjectBuffer.hpp"
#include "ParallelDispatcher.hpp"
#include "PointerContiguousArrayIterator.hpp"
#include "StackSlotValidator.hpp"
#include "Task.hpp"
#include "VMHelpers.hpp"
void
MM_CompactSchemeFixupObject::fixupMixedObject(omrobjectptr_t objectPtr)
{
GC_MixedObjectIterator it(_omrVM, objectPtr);
GC_SlotObject *slotObject;
while (NULL != (slotObject = it.nextSlot())) {
_compactScheme->fixupObjectSlot(slotObject);
}
}
void
MM_CompactSchemeFixupObject::doSlot(MM_EnvironmentBase *env, omrobjectptr_t fromObject, omrobjectptr_t *slotPtr)
{
*slotPtr = _compactScheme->getForwardingPtr(*slotPtr);
}
#if JAVA_SPEC_VERSION >= 24
void
MM_CompactSchemeFixupObject::doContinuationSlot(MM_EnvironmentBase *env, omrobjectptr_t fromObject, omrobjectptr_t *slotPtr, GC_ContinuationSlotIterator *continuationSlotIterator)
{
if (isHeapObject(*slotPtr) && !_extensions->heap->objectIsInGap(*slotPtr)) {
doSlot(env, fromObject, slotPtr);
} else if (NULL != *slotPtr) {
Assert_MM_true(GC_ContinuationSlotIterator::state_monitor_records == continuationSlotIterator->getState());
}
}
#endif /* JAVA_SPEC_VERSION >= 24 */
void
MM_CompactSchemeFixupObject::doStackSlot(MM_EnvironmentBase *env, omrobjectptr_t fromObject, omrobjectptr_t *slotPtr, J9StackWalkState *walkState, const void *stackLocation)
{
if (isHeapObject(*slotPtr) && !_extensions->heap->objectIsInGap(*slotPtr)) {
doSlot(env, fromObject, slotPtr);
}
}
/**
* @todo Provide function documentation
*/
void
stackSlotIteratorForCompactScheme(J9JavaVM *javaVM, J9Object **slotPtr, void *localData, J9StackWalkState *walkState, const void *stackLocation)
{
StackIteratorData4CompactSchemeFixupObject *data = (StackIteratorData4CompactSchemeFixupObject *)localData;
data->compactSchemeFixupObject->doStackSlot(data->env, data->fromObject, slotPtr, walkState, stackLocation);
}
void
MM_CompactSchemeFixupObject::fixupContinuationNativeSlots(MM_EnvironmentStandard *env, omrobjectptr_t objectPtr)
{
/* fixup Java Stacks in J9VMContinuation */
J9VMThread *currentThread = (J9VMThread *)env->getLanguageVMThread();
/* In sliding compaction we must fix slots exactly once. Since we will fixup stack slots of
* mounted Virtual threads later during root fixup, we will skip it during this heap fixup pass
* (hence passing true for scanOnlyUnmounted parameter).
*/
const bool isConcurrentGC = false;
const bool isGlobalGC = true;
const bool beingMounted = false;
if (MM_GCExtensions::needScanStacksForContinuationObject(currentThread, objectPtr, isConcurrentGC, isGlobalGC, beingMounted)) {
StackIteratorData4CompactSchemeFixupObject localData;
localData.compactSchemeFixupObject = this;
localData.env = env;
localData.fromObject = objectPtr;
GC_VMThreadStackSlotIterator::scanContinuationSlots(currentThread, objectPtr, (void *)&localData, stackSlotIteratorForCompactScheme, false, false);
#if JAVA_SPEC_VERSION >= 24
J9VMContinuation *continuation = J9VMJDKINTERNALVMCONTINUATION_VMREF(currentThread, objectPtr);
GC_ContinuationSlotIterator continuationSlotIterator(currentThread, continuation);
while (J9Object **slotPtr = continuationSlotIterator.nextSlot()) {
doContinuationSlot(env, objectPtr, slotPtr, &continuationSlotIterator);
}
#endif /* JAVA_SPEC_VERSION >= 24 */
}
}
void
MM_CompactSchemeFixupObject::fixupContinuationObject(MM_EnvironmentStandard *env, omrobjectptr_t objectPtr)
{
/* fixup continuation java stack first and then fixup the Object itself, fixup order shouldn't matter. */
fixupContinuationNativeSlots(env, objectPtr);
fixupMixedObject(objectPtr);
}
void
MM_CompactSchemeFixupObject::fixupArrayObject(omrobjectptr_t objectPtr)
{
GC_PointerContiguousArrayIterator it(_omrVM, objectPtr);
GC_SlotObject *slotObject;
while (NULL != (slotObject = it.nextSlot())) {
_compactScheme->fixupObjectSlot(slotObject);
}
}
void
MM_CompactSchemeFixupObject::fixupFlattenedArrayObject(omrobjectptr_t objectPtr)
{
GC_FlattenedContiguousArrayIterator it(_omrVM, objectPtr);
GC_SlotObject *slotObject;
while (NULL != (slotObject = it.nextSlot())) {
_compactScheme->fixupObjectSlot(slotObject);
}
}
MMINLINE void
MM_CompactSchemeFixupObject::addOwnableSynchronizerObjectInList(MM_EnvironmentBase *env, omrobjectptr_t objectPtr)
{
/* if isObjectInOwnableSynchronizerList() return NULL, it means the object isn't in OwnableSynchronizerList,
* it could be the constructing object which would be added in the list after the construction finish later. ignore the object to avoid duplicated reference in the list. */
if (NULL != _extensions->accessBarrier->isObjectInOwnableSynchronizerList(objectPtr)) {
env->getGCEnvironment()->_ownableSynchronizerObjectBuffer->add(env, objectPtr);
}
}
void
MM_CompactSchemeFixupObject::fixupObject(MM_EnvironmentStandard *env, omrobjectptr_t objectPtr)
{
switch(env->getExtensions()->objectModel.getScanType(objectPtr)) {
case GC_ObjectModel::SCAN_MIXED_OBJECT_LINKED:
case GC_ObjectModel::SCAN_ATOMIC_MARKABLE_REFERENCE_OBJECT:
case GC_ObjectModel::SCAN_MIXED_OBJECT:
case GC_ObjectModel::SCAN_CLASS_OBJECT:
case GC_ObjectModel::SCAN_CLASSLOADER_OBJECT:
case GC_ObjectModel::SCAN_REFERENCE_MIXED_OBJECT:
fixupMixedObject(objectPtr);
break;
case GC_ObjectModel::SCAN_POINTER_ARRAY_OBJECT:
fixupArrayObject(objectPtr);
break;
case GC_ObjectModel::SCAN_PRIMITIVE_ARRAY_OBJECT:
/* nothing to do */
break;
case GC_ObjectModel::SCAN_OWNABLESYNCHRONIZER_OBJECT:
addOwnableSynchronizerObjectInList(env, objectPtr);
fixupMixedObject(objectPtr);
break;
case GC_ObjectModel::SCAN_CONTINUATION_OBJECT:
fixupContinuationObject(env, objectPtr);
break;
case GC_ObjectModel::SCAN_FLATTENED_ARRAY_OBJECT:
fixupFlattenedArrayObject(objectPtr);
break;
default:
Assert_MM_unreachable();
}
}
void
MM_CompactSchemeFixupObject::verifyForwardingPtr(omrobjectptr_t objectPtr, omrobjectptr_t forwardingPtr)
{
assume0(forwardingPtr <= objectPtr);
assume0(J9GC_J9OBJECT_CLAZZ(forwardingPtr, _extensions) && ((uintptr_t)J9GC_J9OBJECT_CLAZZ(forwardingPtr, _extensions) & 0x3) == 0);
}