Skip to content

Commit dfdae15

Browse files
committed
Add Disable Global Continuation Lists option
The Continuation Buffers/Lists keep all of "live" Continuation Objects and be maintained by GC in order to free up the related native structure and java stacks in case the Continuation Object has not been terminated normally. currently the global Virtual Thread List will keep all of unterminated Continuation Objects traceable, so Continuation Buffers/Lists are not useful for current case, can disable it by XXgc:disableContinuationList for saving extra scan. cycle. - new XXgc options disableContinuationList, enaleContinuationList, verifyContinuationList -- (default) verify if there is an exceptional case. Signed-off-by: Lin Hu <linhu@ca.ibm.com>
1 parent 7cafd4b commit dfdae15

10 files changed

+53
-17
lines changed

runtime/gc_base/GCExtensions.cpp

+16
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "j9memcategories.h"
2929
#include "j9nongenerated.h"
3030
#include "j9port.h"
31+
#include "ModronAssertions.h"
3132
#include "util_api.h"
3233

3334
#include "EnvironmentBase.hpp"
@@ -295,3 +296,18 @@ MM_GCExtensions::registerScavenger(MM_Scavenger *scavenger)
295296
Assert_MM_true(isScavengerEnabled());
296297
((MM_StandardAccessBarrier *)accessBarrier)->registerScavenger(scavenger);
297298
}
299+
300+
void
301+
MM_GCExtensions::releaseNativesForContinuationObject(MM_EnvironmentBase* env, j9object_t objectPtr)
302+
{
303+
#if JAVA_SPEC_VERSION >= 19
304+
J9VMThread *vmThread = (J9VMThread *)env->getLanguageVMThread();
305+
306+
if (verify_continuation_list == continuationListOption) {
307+
J9VMContinuation *continuation = J9VMJDKINTERNALVMCONTINUATION_VMREF(vmThread, objectPtr);
308+
Assert_MM_true(NULL == continuation);
309+
} else {
310+
getJavaVM()->internalVMFunctions->freeContinuation(vmThread, objectPtr);
311+
}
312+
#endif /* JAVA_SPEC_VERSION >= 19 */
313+
}

runtime/gc_base/GCExtensions.hpp

+10
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,13 @@ class MM_GCExtensions : public MM_GCExtensionsBase {
197197
UDATA freeSizeThresholdForSurvivor; /**< if average freeSize(freeSize/freeCount) of the region is smaller than the Threshold, the region would not be reused by collector as survivor, for balanced GC only */
198198
bool recycleRemainders; /**< true if need to recycle TLHRemainders at the end of PGC, for balanced GC only */
199199

200+
enum ContinuationListOption {
201+
disable_continuation_list = 0,
202+
enable_continuation_list = 1,
203+
verify_continuation_list = 2,
204+
};
205+
ContinuationListOption continuationListOption;
206+
200207
protected:
201208
private:
202209
protected:
@@ -290,6 +297,8 @@ class MM_GCExtensions : public MM_GCExtensionsBase {
290297
MMINLINE MM_ContinuationObjectList* getContinuationObjectLists() { return continuationObjectLists; }
291298
MMINLINE void setContinuationObjectLists(MM_ContinuationObjectList* newContinuationObjectLists) { continuationObjectLists = newContinuationObjectLists; }
292299

300+
void releaseNativesForContinuationObject(MM_EnvironmentBase* env, j9object_t objectPtr);
301+
293302
/**
294303
* Create a GCExtensions object
295304
*/
@@ -337,6 +346,7 @@ class MM_GCExtensions : public MM_GCExtensionsBase {
337346
, minimumFreeSizeForSurvivor(DEFAULT_SURVIVOR_MINIMUM_FREESIZE)
338347
, freeSizeThresholdForSurvivor(DEFAULT_SURVIVOR_THRESHOLD)
339348
, recycleRemainders(true)
349+
, continuationListOption(verify_continuation_list)
340350
{
341351
_typeId = __FUNCTION__;
342352
}

runtime/gc_base/modronapi.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -1036,10 +1036,14 @@ continuationObjectCreated(J9VMThread *vmThread, j9object_t object)
10361036
Assert_MM_true(NULL != object);
10371037
MM_EnvironmentBase *env = MM_EnvironmentBase::getEnvironment(vmThread->omrVMThread);
10381038

1039-
env->getGCEnvironment()->_continuationObjectBuffer->add(env, object);
1040-
MM_ObjectAllocationInterface *objectAllocation = env->_objectAllocationInterface;
1041-
if (NULL != objectAllocation) {
1042-
objectAllocation->getAllocationStats()->_continuationObjectCount += 1;
1039+
if (MM_GCExtensions::disable_continuation_list != MM_GCExtensions::getExtensions(env)->continuationListOption) {
1040+
1041+
env->getGCEnvironment()->_continuationObjectBuffer->add(env, object);
1042+
MM_ObjectAllocationInterface *objectAllocation = env->_objectAllocationInterface;
1043+
1044+
if (NULL != objectAllocation) {
1045+
objectAllocation->getAllocationStats()->_continuationObjectCount += 1;
1046+
}
10431047
}
10441048
return 0;
10451049
}

runtime/gc_glue_java/MarkingSchemeRootClearer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ MM_MarkingSchemeRootClearer::scanContinuationObjects(MM_EnvironmentBase *env)
331331
} else {
332332
/* object was not previously marked */
333333
gcEnv->_markJavaStats._continuationCleared += 1;
334-
VM_VMHelpers::cleanupContinuationObject((J9VMThread *)env->getLanguageVMThread(), object);
334+
_extensions->releaseNativesForContinuationObject(env, object);
335335
}
336336
object = next;
337337
}

runtime/gc_glue_java/MetronomeDelegate.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ MM_MetronomeDelegate::scanContinuationObjects(MM_EnvironmentRealtime *env)
13421342
buffer->add(env, object);
13431343
} else {
13441344
gcEnv->_markJavaStats._continuationCleared += 1;
1345-
VM_VMHelpers::cleanupContinuationObject((J9VMThread *)env->getLanguageVMThread(), object);
1345+
_extensions->releaseNativesForContinuationObject(env, object);
13461346
}
13471347
object = next;
13481348

runtime/gc_glue_java/ScavengerRootClearer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ MM_ScavengerRootClearer::scavengeContinuationObjects(MM_EnvironmentStandard *env
241241
if (!forwardedHeader.isForwardedPointer()) {
242242
Assert_GC_true_with_message2(env, _scavenger->isObjectInEvacuateMemory(object), "Continuation object %p should be a dead object, forwardedHeader=%p\n", object, &forwardedHeader);
243243
gcEnv->_scavengerJavaStats._continuationCleared += 1;
244-
VM_VMHelpers::cleanupContinuationObject((J9VMThread *)env->getLanguageVMThread(), object);
244+
_extensions->releaseNativesForContinuationObject(env, object);
245245
} else {
246246
omrobjectptr_t forwardedPtr = forwardedHeader.getForwardedObject();
247247
Assert_GC_true_with_message(env, NULL != forwardedPtr, "Continuation object %p should be forwarded\n", object);

runtime/gc_modron_startup/mmparseXXgc.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1515,6 +1515,20 @@ gcParseXXgcArguments(J9JavaVM *vm, char *optArg)
15151515
continue;
15161516
}
15171517

1518+
if (try_scan(&scan_start, "disableContinuationList")) {
1519+
extensions->continuationListOption = MM_GCExtensions::disable_continuation_list;
1520+
continue;
1521+
}
1522+
1523+
if (try_scan(&scan_start, "enableContinuationList")) {
1524+
extensions->continuationListOption = MM_GCExtensions::enable_continuation_list;
1525+
continue;
1526+
}
1527+
1528+
if (try_scan(&scan_start, "verifyContinuationList")) {
1529+
extensions->continuationListOption = MM_GCExtensions::verify_continuation_list;
1530+
continue;
1531+
}
15181532

15191533
/* Couldn't find a match for arguments */
15201534
j9nls_printf(PORTLIB, J9NLS_ERROR, J9NLS_GC_OPTION_UNKNOWN, error_scan);

runtime/gc_vlhgc/CopyForwardScheme.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3549,7 +3549,7 @@ MM_CopyForwardScheme::scanContinuationObjects(MM_EnvironmentVLHGC *env)
35493549
if (NULL == forwardedPtr) {
35503550
/* object was not previously marked, clean up */
35513551
env->_copyForwardStats._continuationCleared += 1;
3552-
VM_VMHelpers::cleanupContinuationObject((J9VMThread *)env->getLanguageVMThread(), pointer);
3552+
_extensions->releaseNativesForContinuationObject(env, pointer);
35533553
} else {
35543554
env->getGCEnvironment()->_continuationObjectBuffer->add(env, forwardedPtr);
35553555
}

runtime/gc_vlhgc/GlobalMarkingScheme.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1111,8 +1111,8 @@ MM_GlobalMarkingScheme::scanContinuationObjects(MM_EnvironmentVLHGC *env)
11111111
if (isMarked(object)) {
11121112
env->getGCEnvironment()->_continuationObjectBuffer->add(env, object);
11131113
} else {
1114-
VM_VMHelpers::cleanupContinuationObject((J9VMThread *)env->getLanguageVMThread(), object);
11151114
env->_markVLHGCStats._continuationCleared += 1;
1115+
_extensions->releaseNativesForContinuationObject(env, object);
11161116
}
11171117
object = next;
11181118
}

runtime/oti/VMHelpers.hpp

-8
Original file line numberDiff line numberDiff line change
@@ -2157,14 +2157,6 @@ class VM_VMHelpers
21572157
return needScan;
21582158
}
21592159

2160-
static VMINLINE void
2161-
cleanupContinuationObject(J9VMThread *vmThread, J9Object *objectPtr)
2162-
{
2163-
#if JAVA_SPEC_VERSION >= 19
2164-
vmThread->javaVM->internalVMFunctions->freeContinuation(vmThread, objectPtr);
2165-
#endif /* JAVA_SPEC_VERSION >= 19 */
2166-
}
2167-
21682160
static VMINLINE UDATA
21692161
setVMState(J9VMThread *currentThread, UDATA newState)
21702162
{

0 commit comments

Comments
 (0)