forked from eclipse-openj9/openj9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectAllocationAPI.hpp
473 lines (415 loc) · 17.4 KB
/
ObjectAllocationAPI.hpp
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
/*******************************************************************************
* 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
*******************************************************************************/
#if !defined(OBJECTALLOCATIONAPI_HPP_)
#define OBJECTALLOCATIONAPI_HPP_
#include "j9cfg.h"
#if defined(OMR_OVERRIDE_COMPRESS_OBJECT_REFERENCES)
#if OMR_OVERRIDE_COMPRESS_OBJECT_REFERENCES
#define MM_ObjectAllocationAPI MM_ObjectAllocationAPICompressed
#else /* OMR_OVERRIDE_COMPRESS_OBJECT_REFERENCES */
#define MM_ObjectAllocationAPI MM_ObjectAllocationAPIFull
#endif /* OMR_OVERRIDE_COMPRESS_OBJECT_REFERENCES */
#endif /* OMR_OVERRIDE_COMPRESS_OBJECT_REFERENCES */
#include "j9.h"
#include "j9consts.h"
#include "j9generated.h"
#include "j9protos.h"
#include "omrgcconsts.h"
#include "AtomicSupport.hpp"
#include "ObjectMonitor.hpp"
#include "ObjectAccessBarrierAPI.hpp"
class MM_ObjectAllocationAPI
{
/*
* Data members
*/
private:
const uintptr_t _gcAllocationType;
uintptr_t _contiguousIndexableHeaderSize;
#if defined(J9VM_ENV_DATA64)
bool _isIndexableDataAddrPresent;
#endif /* defined(J9VM_ENV_DATA64) */
#if defined(J9VM_GC_BATCH_CLEAR_TLH)
const uintptr_t _initializeSlotsOnTLHAllocate;
#endif /* J9VM_GC_BATCH_CLEAR_TLH */
const uintptr_t _objectAlignmentInBytes;
#if defined (J9VM_GC_SEGREGATED_HEAP)
const J9VMGCSizeClasses *_sizeClasses;
#endif /* J9VM_GC_SEGREGATED_HEAP */
const MM_ObjectAccessBarrierAPI _objectAccessBarrierAPI;
VMINLINE void
initializeIndexableSlots(bool initializeSlots, uintptr_t dataSize, void *dataAddr)
{
if (initializeSlots) {
memset(dataAddr, 0, dataSize);
}
}
VMINLINE void
initializeContiguousIndexableObject(J9VMThread *currentThread, bool initializeSlots, J9Class *arrayClass, uint32_t size, uintptr_t dataSize, j9object_t objectHeader)
{
void *dataAddr = (void *)((uintptr_t)objectHeader + _contiguousIndexableHeaderSize);
bool isCompressedReferences = J9VMTHREAD_COMPRESS_OBJECT_REFERENCES(currentThread);
if (isCompressedReferences) {
J9IndexableObjectContiguousCompressed *header = (J9IndexableObjectContiguousCompressed *)objectHeader;
header->clazz = (uint32_t)(uintptr_t)arrayClass;
header->size = size;
#if defined(J9VM_ENV_DATA64)
if (_isIndexableDataAddrPresent) {
((J9IndexableObjectWithDataAddressContiguousCompressed *)header)->dataAddr = dataAddr;
}
#endif /* defined(J9VM_ENV_DATA64) */
} else {
J9IndexableObjectContiguousFull *header = (J9IndexableObjectContiguousFull *)objectHeader;
header->clazz = (uintptr_t)arrayClass;
header->size = size;
#if defined(J9VM_ENV_DATA64)
if (_isIndexableDataAddrPresent) {
((J9IndexableObjectWithDataAddressContiguousFull *)header)->dataAddr = dataAddr;
}
#endif /* defined(J9VM_ENV_DATA64) */
}
initializeIndexableSlots(initializeSlots, dataSize, dataAddr);
}
VMINLINE void
initializeDiscontiguousIndexableObject(J9VMThread *currentThread, J9Class *arrayClass, j9object_t objectHeader)
{
bool isCompressedReferences = J9VMTHREAD_COMPRESS_OBJECT_REFERENCES(currentThread);
if (isCompressedReferences) {
J9IndexableObjectDiscontiguousCompressed *header = (J9IndexableObjectDiscontiguousCompressed *)objectHeader;
header->clazz = (uint32_t)(uintptr_t)arrayClass;
header->mustBeZero = 0;
header->size = 0;
#if defined(J9VM_ENV_DATA64)
if (_isIndexableDataAddrPresent) {
((J9IndexableObjectWithDataAddressDiscontiguousCompressed *)header)->dataAddr = NULL;
}
#endif /* defined(J9VM_ENV_DATA64) */
} else {
J9IndexableObjectDiscontiguousFull *header = (J9IndexableObjectDiscontiguousFull *)objectHeader;
header->clazz = (uintptr_t)arrayClass;
header->mustBeZero = 0;
header->size = 0;
#if defined(J9VM_ENV_DATA64)
if (_isIndexableDataAddrPresent) {
((J9IndexableObjectWithDataAddressDiscontiguousFull *)header)->dataAddr = NULL;
}
#endif /* defined(J9VM_ENV_DATA64) */
}
}
protected:
public:
/*
* Function members
*/
private:
VMINLINE j9object_t
inlineAllocateIndexableObjectImpl(J9VMThread *currentThread, J9Class *arrayClass, uint32_t size, uintptr_t dataSize, bool validSize, bool initializeSlots = true, bool memoryBarrier = true)
{
j9object_t instance = NULL;
#if defined(J9VM_GC_THREAD_LOCAL_HEAP) || defined(J9VM_GC_SEGREGATED_HEAP)
if (0 != size) {
/* Contiguous Array */
#if !defined(J9VM_ENV_DATA64)
if (validSize)
#endif /* !defined(J9VM_ENV_DATA64) */
{
/* Calculate the size of the object */
uintptr_t const headerSize = J9VMTHREAD_CONTIGUOUS_INDEXABLE_HEADER_SIZE(currentThread);
uintptr_t const dataSize = ((uintptr_t)size) * J9ARRAYCLASS_GET_STRIDE(arrayClass);
uintptr_t allocateSize = ROUND_UP_TO_POWEROF2(dataSize + headerSize, _objectAlignmentInBytes);
if (allocateSize < J9_GC_MINIMUM_OBJECT_SIZE) {
allocateSize = J9_GC_MINIMUM_OBJECT_SIZE;
}
/* Allocate the memory */
j9object_t objectHeader = NULL;
switch(_gcAllocationType) {
#if defined(J9VM_GC_THREAD_LOCAL_HEAP)
case OMR_GC_ALLOCATION_TYPE_TLH:
if (allocateSize <= ((uintptr_t) currentThread->heapTop - (uintptr_t) currentThread->heapAlloc)) {
uint8_t *heapAlloc = currentThread->heapAlloc;
uint8_t *afterAlloc = heapAlloc + allocateSize;
objectHeader = (j9object_t)heapAlloc;
currentThread->heapAlloc = afterAlloc;
#if defined(J9VM_GC_TLH_PREFETCH_FTA)
currentThread->tlhPrefetchFTA -= allocateSize;
#endif /* J9VM_GC_TLH_PREFETCH_FTA */
#if defined(J9VM_GC_BATCH_CLEAR_TLH)
/* Do not zero the TLH if it is already zero's */
initializeSlots = initializeSlots && _initializeSlotsOnTLHAllocate;
#endif /* J9VM_GC_BATCH_CLEAR_TLH */
#if defined(J9VM_GC_REALTIME)
initializeSlots = initializeSlots || _objectAccessBarrierAPI.isSATBBarrierEnabled(currentThread);
#endif /* J9VM_GC_REALTIME */
} else {
return NULL;
}
break;
#endif /* J9VM_GC_THREAD_LOCAL_HEAP */
#if defined(J9VM_GC_SEGREGATED_HEAP)
case OMR_GC_ALLOCATION_TYPE_SEGREGATED:
/* Metronome requires that slots are always initialized */
/* ensure the allocation will fit in a small size */
if (allocateSize <= J9VMGC_SIZECLASSES_MAX_SMALL_SIZE_BYTES) {
/* fetch the size class based on the allocation size */
uintptr_t slotsRequested = allocateSize / sizeof(uintptr_t);
uintptr_t sizeClassIndex = _sizeClasses->sizeClassIndex[slotsRequested];
/* Ensure the cache for the current size class is not empty. */
J9VMGCSegregatedAllocationCacheEntry *cacheEntry =
(J9VMGCSegregatedAllocationCacheEntry *)((uintptr_t)currentThread + J9_VMTHREAD_SEGREGATED_ALLOCATION_CACHE_OFFSET
+ (sizeClassIndex * sizeof(J9VMGCSegregatedAllocationCacheEntry)));
uintptr_t cellSize = _sizeClasses->smallCellSizes[sizeClassIndex];
if (cellSize <= ((uintptr_t) cacheEntry->top - (uintptr_t) cacheEntry->current)) {
objectHeader = (j9object_t)cacheEntry->current;
cacheEntry->current = (uintptr_t *) ((uintptr_t) cacheEntry->current + cellSize);
/* The metronome pre write barrier might scan this object - always zero it */
initializeSlots = true;
} else {
return NULL;
}
} else {
return NULL;
}
break;
#endif /* J9VM_GC_SEGREGATED_HEAP */
default:
/* Inline allocation not supported */
return NULL;
}
/* Initialize the object */
initializeContiguousIndexableObject(currentThread, initializeSlots, arrayClass, size, dataSize, objectHeader);
if (memoryBarrier) {
VM_AtomicSupport::writeBarrier();
}
instance = objectHeader;
}
} else {
#if defined(J9VM_ENV_DATA64)
/* Calculate size of indexable object */
uintptr_t const headerSize = J9VMTHREAD_DISCONTIGUOUS_INDEXABLE_HEADER_SIZE(currentThread);
uintptr_t allocateSize = ROUND_UP_TO_POWEROF2(headerSize, _objectAlignmentInBytes);
/* Discontiguous header size is always equal or greater than J9_GC_MINIMUM_OBJECT_SIZE; therefore,
* there's no need to check if allocateSize is less than J9_GC_MINIMUM_OBJECT_SIZE
*/
#else
/* Zero-length array is discontiguous - assume minimum object size */
uintptr_t allocateSize = J9_GC_MINIMUM_OBJECT_SIZE;
#endif /* J9VM_ENV_DATA64 */
/* Allocate the memory */
j9object_t objectHeader = NULL;
switch(_gcAllocationType) {
#if defined(J9VM_GC_THREAD_LOCAL_HEAP)
case OMR_GC_ALLOCATION_TYPE_TLH:
if (allocateSize <= ((uintptr_t) currentThread->heapTop - (uintptr_t) currentThread->heapAlloc)) {
uint8_t *heapAlloc = currentThread->heapAlloc;
uint8_t *afterAlloc = heapAlloc + allocateSize;
objectHeader = (j9object_t) heapAlloc;
currentThread->heapAlloc = afterAlloc;
#if defined(J9VM_GC_TLH_PREFETCH_FTA)
currentThread->tlhPrefetchFTA -= allocateSize;
#endif /* J9VM_GC_TLH_PREFETCH_FTA */
} else {
return NULL;
}
break;
#endif /* J9VM_GC_THREAD_LOCAL_HEAP */
#if defined(J9VM_GC_SEGREGATED_HEAP)
case OMR_GC_ALLOCATION_TYPE_SEGREGATED:
/* ensure the allocation will fit in a small size */
if (allocateSize <= J9VMGC_SIZECLASSES_MAX_SMALL_SIZE_BYTES) {
/* fetch the size class based on the allocation size */
uintptr_t slotsRequested = allocateSize / sizeof(uintptr_t);
uintptr_t sizeClassIndex = _sizeClasses->sizeClassIndex[slotsRequested];
/* Ensure the cache for the current size class is not empty. */
J9VMGCSegregatedAllocationCacheEntry *cacheEntry =
(J9VMGCSegregatedAllocationCacheEntry *)((uintptr_t)currentThread + J9_VMTHREAD_SEGREGATED_ALLOCATION_CACHE_OFFSET
+ (sizeClassIndex * sizeof(J9VMGCSegregatedAllocationCacheEntry)));
uintptr_t cellSize = _sizeClasses->smallCellSizes[sizeClassIndex];
if (cellSize <= ((uintptr_t) cacheEntry->top - (uintptr_t) cacheEntry->current)) {
objectHeader = (j9object_t) cacheEntry->current;
cacheEntry->current = (uintptr_t *) ((uintptr_t) cacheEntry->current + cellSize);
} else {
return NULL;
}
} else {
return NULL;
}
break;
#endif /* J9VM_GC_SEGREGATED_HEAP */
default:
return NULL;
break;
}
/* Initialize the object */
initializeDiscontiguousIndexableObject(currentThread, arrayClass, objectHeader);
if (memoryBarrier) {
VM_AtomicSupport::writeBarrier();
}
instance = objectHeader;
#endif /* defined(J9VM_GC_THREAD_LOCAL_HEAP) || defined(J9VM_GC_SEGREGATED_HEAP) */
}
return instance;
}
protected:
public:
/**
* Create an instance.
*/
MM_ObjectAllocationAPI(J9VMThread *currentThread)
: _gcAllocationType(currentThread->javaVM->gcAllocationType)
, _contiguousIndexableHeaderSize(currentThread->contiguousIndexableHeaderSize)
#if defined(J9VM_ENV_DATA64)
, _isIndexableDataAddrPresent(currentThread->javaVM->isIndexableDataAddrPresent)
#endif /* defined(J9VM_ENV_DATA64) */
#if defined(J9VM_GC_BATCH_CLEAR_TLH)
, _initializeSlotsOnTLHAllocate(currentThread->javaVM->initializeSlotsOnTLHAllocate)
#endif /* J9VM_GC_BATCH_CLEAR_TLH */
, _objectAlignmentInBytes(currentThread->omrVMThread->_vm->_objectAlignmentInBytes)
#if defined (J9VM_GC_SEGREGATED_HEAP)
, _sizeClasses(currentThread->javaVM->realtimeSizeClasses)
#endif /* J9VM_GC_SEGREGATED_HEAP */
, _objectAccessBarrierAPI(currentThread)
{}
VMINLINE j9object_t
inlineAllocateObject(J9VMThread *currentThread, J9Class *clazz, bool initializeSlots = true, bool memoryBarrier = true)
{
j9object_t instance = NULL;
#if defined(J9VM_GC_THREAD_LOCAL_HEAP) || defined(J9VM_GC_SEGREGATED_HEAP)
/* Calculate the size of the object */
uintptr_t const headerSize = J9VMTHREAD_OBJECT_HEADER_SIZE(currentThread);
uintptr_t dataSize = clazz->totalInstanceSize;
uintptr_t allocateSize = ROUND_UP_TO_POWEROF2(dataSize + headerSize, _objectAlignmentInBytes);
if (allocateSize < J9_GC_MINIMUM_OBJECT_SIZE) {
allocateSize = J9_GC_MINIMUM_OBJECT_SIZE;
}
/* Allocate the object */
switch(_gcAllocationType) {
#if defined(J9VM_GC_THREAD_LOCAL_HEAP)
case OMR_GC_ALLOCATION_TYPE_TLH:
if (allocateSize <= ((uintptr_t) currentThread->heapTop - (uintptr_t) currentThread->heapAlloc)) {
uint8_t *heapAlloc = currentThread->heapAlloc;
uint8_t *afterAlloc = heapAlloc + allocateSize;
currentThread->heapAlloc = afterAlloc;
#if defined(J9VM_GC_TLH_PREFETCH_FTA)
currentThread->tlhPrefetchFTA -= allocateSize;
#endif /* J9VM_GC_TLH_PREFETCH_FTA */
instance = (j9object_t) heapAlloc;
#if defined(J9VM_GC_BATCH_CLEAR_TLH)
/* Do not zero the TLH if it is already zero'd */
initializeSlots = initializeSlots && _initializeSlotsOnTLHAllocate;
#endif /* J9VM_GC_BATCH_CLEAR_TLH */
#if defined(J9VM_GC_REALTIME)
initializeSlots = initializeSlots || _objectAccessBarrierAPI.isSATBBarrierEnabled(currentThread);
#endif /* J9VM_GC_REALTIME */
} else {
return NULL;
}
break;
#endif /* J9VM_GC_THREAD_LOCAL_HEAP */
#if defined(J9VM_GC_SEGREGATED_HEAP)
case OMR_GC_ALLOCATION_TYPE_SEGREGATED:
/* ensure the allocation will fit in a small size */
if (allocateSize <= J9VMGC_SIZECLASSES_MAX_SMALL_SIZE_BYTES) {
/* fetch the size class based on the allocation size */
uintptr_t slotsRequested = allocateSize / sizeof(uintptr_t);
uintptr_t sizeClassIndex = _sizeClasses->sizeClassIndex[slotsRequested];
/* Ensure the cache for the current size class is not empty. */
J9VMGCSegregatedAllocationCacheEntry *cacheEntry =
(J9VMGCSegregatedAllocationCacheEntry *)((uintptr_t)currentThread + J9_VMTHREAD_SEGREGATED_ALLOCATION_CACHE_OFFSET
+ (sizeClassIndex * sizeof(J9VMGCSegregatedAllocationCacheEntry)));
uintptr_t cellSize = _sizeClasses->smallCellSizes[sizeClassIndex];
if (cellSize <= ((uintptr_t) cacheEntry->top - (uintptr_t) cacheEntry->current)) {
instance = (j9object_t) cacheEntry->current;
cacheEntry->current = (uintptr_t *) ((uintptr_t) cacheEntry->current + cellSize);
/* The metronome pre write barrier might scan this object - always zero it */
initializeSlots = true;
} else {
return NULL;
}
} else {
return NULL;
}
break;
#endif /* J9VM_GC_SEGREGATED_HEAP */
default:
return NULL;
}
/* Initialize the object */
if (J9VMTHREAD_COMPRESS_OBJECT_REFERENCES(currentThread)) {
J9ObjectCompressed *objectHeader = (J9ObjectCompressed*) instance;
if (J9CLASS_IS_ENSUREHASHED(clazz)) {
objectHeader->clazz = (uint32_t)(uintptr_t)clazz | (uint32_t)OBJECT_HEADER_HAS_BEEN_HASHED_IN_CLASS;
} else {
objectHeader->clazz = (uint32_t)(uintptr_t)clazz;
}
if (initializeSlots) {
memset(objectHeader + 1, 0, dataSize);
}
} else {
J9ObjectFull *objectHeader = (J9ObjectFull*) instance;
if (J9CLASS_IS_ENSUREHASHED(clazz)) {
objectHeader->clazz = (uintptr_t)clazz | (uintptr_t)OBJECT_HEADER_HAS_BEEN_HASHED_IN_CLASS;
} else {
objectHeader->clazz = (uintptr_t)clazz;
}
if (initializeSlots) {
memset(objectHeader + 1, 0, dataSize);
}
}
if (initializeSlots) {
if (LN_HAS_LOCKWORD(currentThread, instance)) {
j9objectmonitor_t initialLockword = VM_ObjectMonitor::getInitialLockword(currentThread->javaVM, clazz);
if (0 != initialLockword) {
j9objectmonitor_t *lockEA = J9OBJECT_MONITOR_EA(currentThread, instance);
J9_STORE_LOCKWORD(currentThread, lockEA, initialLockword);
}
}
}
if (memoryBarrier) {
VM_AtomicSupport::writeBarrier();
}
#endif /* J9VM_GC_THREAD_LOCAL_HEAP || J9VM_GC_SEGREGATED_HEAP */
return instance;
}
VMINLINE j9object_t
inlineAllocateIndexableValueTypeObject(J9VMThread *currentThread, J9Class *arrayClass, uint32_t size, bool initializeSlots = true, bool memoryBarrier = true, bool sizeCheck = true)
{
uintptr_t stride = J9ARRAYCLASS_GET_STRIDE(arrayClass);
uintptr_t dataSize = ((uintptr_t)size) * stride;
bool validSize = true;
#if !defined(J9VM_ENV_DATA64)
validSize = (!sizeCheck) || (0 == stride) || (size < ((uint32_t)J9_MAXIMUM_INDEXABLE_DATA_SIZE / stride));
#endif /* J9VM_ENV_DATA64 */
return inlineAllocateIndexableObjectImpl(currentThread, arrayClass, size, dataSize, validSize, initializeSlots, memoryBarrier);
}
VMINLINE j9object_t
inlineAllocateIndexableObject(J9VMThread *currentThread, J9Class *arrayClass, uint32_t size, bool initializeSlots = true, bool memoryBarrier = true, bool sizeCheck = true)
{
uintptr_t scale = ((J9ROMArrayClass*)(arrayClass->romClass))->arrayShape;
uintptr_t dataSize = ((uintptr_t)size) << scale;
bool validSize = true;
#if !defined(J9VM_ENV_DATA64)
validSize = !sizeCheck || (size < ((uint32_t)J9_MAXIMUM_INDEXABLE_DATA_SIZE >> scale));
#endif /* J9VM_ENV_DATA64 */
return inlineAllocateIndexableObjectImpl(currentThread, arrayClass, size, dataSize, validSize, initializeSlots, memoryBarrier);
}
};
#endif /* OBJECTALLOCATIONAPI_HPP_ */