@@ -73,7 +73,7 @@ MM_IndexableObjectAllocationModel::initializeAllocateDescription(MM_EnvironmentB
73
73
74
74
case GC_ArrayletObjectModel::InlineContiguous:
75
75
/* Check if we're dealing with a camouflaged discontiguous array - these arrays will require slow-path allocate */
76
- if (isVirtualLargeObjectHeapEnabled && (!extensions-> indexableObjectModel . shouldDataBeAdjacentToHeader (_dataSize) )) {
76
+ if (isVirtualLargeObjectHeapEnabled && (!_isDataAdjacent )) {
77
77
if (isGCAllowed ()) {
78
78
layoutSizeInBytes = _dataSize;
79
79
setAllocatable (true );
@@ -145,7 +145,6 @@ MM_IndexableObjectAllocationModel::initializeIndexableObject(MM_EnvironmentBase
145
145
GC_ArrayObjectModel *indexableObjectModel = &extensions->indexableObjectModel ;
146
146
J9IndexableObject *spine = (J9IndexableObject*)initializeJavaObject (env, allocatedBytes);
147
147
_allocateDescription.setSpine (spine);
148
- bool shouldDataBeAdjacentToHeader = false ;
149
148
bool isVirtualLargeObjectHeapEnabled = indexableObjectModel->isVirtualLargeObjectHeapEnabled ();
150
149
151
150
if (NULL != spine) {
@@ -163,8 +162,7 @@ MM_IndexableObjectAllocationModel::initializeIndexableObject(MM_EnvironmentBase
163
162
indexableObjectModel->setSizeInElementsForContiguous (spine, _numberOfIndexedFields);
164
163
#if defined(J9VM_ENV_DATA64)
165
164
if (((J9JavaVM *)env->getLanguageVM ())->isIndexableDataAddrPresent ) {
166
- shouldDataBeAdjacentToHeader = indexableObjectModel->shouldDataBeAdjacentToHeader (spine);
167
- if (shouldDataBeAdjacentToHeader) {
165
+ if (_isDataAdjacent) {
168
166
indexableObjectModel->setDataAddrForContiguous (spine);
169
167
} else {
170
168
/* Set NULL temporarily to avoid possible complication with GC occurring while the object is partially initialized. */
@@ -179,15 +177,15 @@ MM_IndexableObjectAllocationModel::initializeIndexableObject(MM_EnvironmentBase
179
177
switch (_layout) {
180
178
case GC_ArrayletObjectModel::InlineContiguous:
181
179
#if defined(J9VM_GC_SPARSE_HEAP_ALLOCATION)
182
- if (isVirtualLargeObjectHeapEnabled && !shouldDataBeAdjacentToHeader ) {
180
+ if (isVirtualLargeObjectHeapEnabled && !_isDataAdjacent ) {
183
181
/* We still need to create leaves for discontiguous arrays that will be allocated at off-heap. */
184
182
spine = getSparseAddressAndDecommitLeaves (env, spine);
185
183
if (NULL != spine) {
186
184
Assert_MM_true (1 <= _numberOfArraylets);
187
185
}
188
186
}
189
187
#endif /* defined (J9VM_GC_SPARSE_HEAP_ALLOCATION) */
190
- if (!isVirtualLargeObjectHeapEnabled || shouldDataBeAdjacentToHeader ) {
188
+ if (!isVirtualLargeObjectHeapEnabled || _isDataAdjacent ) {
191
189
Assert_MM_true (1 == _numberOfArraylets);
192
190
}
193
191
break ;
0 commit comments