-
Notifications
You must be signed in to change notification settings - Fork 751
/
Copy pathROMClassResourceManager.cpp
557 lines (474 loc) · 16.7 KB
/
ROMClassResourceManager.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
/*******************************************************************************
* Copyright (c) 2001, 2019 IBM Corp. and others
*
* 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] http://openjdk.java.net/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
*******************************************************************************/
/**
* @file
* @ingroup Shared_Common
*/
#include "ROMClassResourceManager.hpp"
#include "ut_j9shr.h"
#include "j9shrnls.h"
#include "j9consts.h"
#include <string.h>
SH_ROMClassResourceManager::SH_ROMClassResourceManager() :
_accessPermitted(false), _dataBytes(0)
{
_htMutexName = "rrmTableMutex";
}
SH_ROMClassResourceManager::~SH_ROMClassResourceManager()
{
}
/* Creates a new hashtable. Pre-req: portLibrary must be initialized */
J9HashTable*
SH_ROMClassResourceManager::localHashTableCreate(J9VMThread* currentThread, U_32 initialEntries)
{
J9HashTable* returnVal;
Trc_SHR_RRM_localHashTableCreate_Entry(currentThread, initialEntries);
returnVal = hashTableNew(OMRPORT_FROM_J9PORT(_portlib), (char*)_rrmHashTableName, initialEntries, sizeof(HashTableEntry), sizeof(char*), 0, J9MEM_CATEGORY_CLASSES, SH_ROMClassResourceManager::rrmHashFn, SH_ROMClassResourceManager::rrmHashEqualFn, NULL, (void*)currentThread->javaVM->internalVMFunctions);
_hashTableGetNumItemsDoFn = SH_ROMClassResourceManager::customCountItemsInList;
Trc_SHR_RRM_localHashTableCreate_Exit(currentThread, returnVal);
return returnVal;
}
/* Hash function for hashtable */
UDATA
SH_ROMClassResourceManager::rrmHashFn(void* item, void *userData)
{
HashTableEntry* itemValue = (HashTableEntry*)item;
UDATA hashValue = UDATA(itemValue->key());
return hashValue;
}
/* HashEqual function for hashtable */
UDATA
SH_ROMClassResourceManager::rrmHashEqualFn(void* left, void* right, void *userData)
{
HashTableEntry* leftItem = (HashTableEntry*)left;
HashTableEntry* rightItem = (HashTableEntry*)right;
/* No need to check cachelet as key is guaranteed to be unique */
UDATA result = (leftItem->key() == rightItem->key());
return result;
}
SH_ROMClassResourceManager::HashTableEntry::HashTableEntry(UDATA key, const ShcItem* item, SH_CompositeCache* cachelet)
: _key(key),
_item(item)
#if defined(J9SHR_CACHELET_SUPPORT)
,_cachelet(cachelet)
#endif
{
}
SH_ROMClassResourceManager::HashTableEntry::~HashTableEntry()
{
/* Nothing to do */
}
SH_ROMClassResourceManager::HashTableEntry*
SH_ROMClassResourceManager::rrmTableAddHelper(J9VMThread* currentThread, HashTableEntry* newEntry, SH_CompositeCache* cachelet)
{
HashTableEntry* rc = NULL;
Trc_SHR_RRM_rrmTableAdd_Entry(currentThread, newEntry->key(), newEntry->item());
if ((rc = (HashTableEntry*)hashTableAdd(_hashTable, newEntry)) == NULL) {
Trc_SHR_RRM_rrmTableAdd_Exception1(currentThread);
PORT_ACCESS_FROM_PORT(_portlib);
M_ERR_TRACE(J9NLS_SHRC_RRM_FAILED_CREATE_HASHTABLE_ENTRY);
}
Trc_SHR_RRM_rrmTableAdd_HashtableAdd(currentThread, rc);
Trc_SHR_RRM_rrmTableAdd_Exit2(currentThread, rc);
return rc;
}
SH_ROMClassResourceManager::HashTableEntry*
SH_ROMClassResourceManager::rrmTableAdd(J9VMThread* currentThread, const ShcItem* item, SH_CompositeCache* cachelet)
{
UDATA key = getKeyForItem(item);
HashTableEntry newItem(key, item, cachelet);
HashTableEntry* rc = NULL;
if (lockHashTable(currentThread, _rrmAddFnName)) {
rc = rrmTableAddHelper(currentThread, &newItem, cachelet);
/* if the item was primed, fill in its value */
if (rc->item() == NULL) {
rc->setItem(item);
}
unlockHashTable(currentThread, _rrmAddFnName);
} else {
PORT_ACCESS_FROM_PORT(_portlib);
M_ERR_TRACE(J9NLS_SHRC_RRM_FAILED_ENTER_RRMMUTEX);
Trc_SHR_RRM_rrmTableAdd_Exit1(currentThread, MONITOR_ENTER_RETRY_TIMES);
return NULL;
}
return rc;
}
#if defined(J9SHR_CACHELET_SUPPORT)
/**
* Adds a primed entry.
* This assumes the hash is the key, and all keys are unique.
*/
SH_ROMClassResourceManager::HashTableEntry*
SH_ROMClassResourceManager::rrmTableAddPrime(J9VMThread* currentThread, UDATA key, SH_CompositeCache* cachelet)
{
HashTableEntry newItem(key, NULL, cachelet);
HashTableEntry* rc = NULL;
if (lockHashTable(currentThread, _rrmAddFnName)) {
rc = rrmTableAddHelper(currentThread, &newItem, cachelet);
unlockHashTable(currentThread, _rrmAddFnName);
} else {
PORT_ACCESS_FROM_PORT(_portlib);
M_ERR_TRACE(J9NLS_SHRC_RRM_FAILED_ENTER_RRMMUTEX);
Trc_SHR_RRM_rrmTableAdd_Exit1(currentThread, MONITOR_ENTER_RETRY_TIMES);
return NULL;
}
return rc;
}
#endif /* J9SHR_CACHELET_SUPPORT */
/* Hashtable lookup function. Returns value if found, otherwise returns NULL */
SH_ROMClassResourceManager::HashTableEntry*
SH_ROMClassResourceManager::rrmTableLookup(J9VMThread* currentThread, UDATA key)
{
HashTableEntry searchKey(key, 0, NULL);
HashTableEntry* returnVal = NULL;
Trc_SHR_RRM_rrmTableLookup_Entry(currentThread, key);
if (lockHashTable(currentThread, _rrmLookupFnName)) {
returnVal = (HashTableEntry*)hashTableFind(_hashTable, (void*)&searchKey);
Trc_SHR_RRM_rrmTableLookup_HashtableFind(currentThread, returnVal);
#if defined(J9SHR_CACHELET_SUPPORT)
if (_isRunningNested && returnVal && (returnVal->item() == NULL)) {
IDATA rc;
SH_CompositeCacheImpl* cachelet = (SH_CompositeCacheImpl*)returnVal->cachelet();
/* Make sure the cachelet is started */
unlockHashTable(currentThread, _rrmLookupFnName);
/**
* @bug _startupMonitor IS A HORRIBLE HACK FOR CMVC 141328.
* THIS WILL NOT WORK FOR NON-READONLY CACHES.
* @see SH_CompositeCacheImpl::_startupMonitor
*/
if (0 == (rc = cachelet->lockStartupMonitor(currentThread))) {
if (!cachelet->isStarted()) {
_cache->startupCachelet(currentThread, cachelet);
}
cachelet->unlockStartupMonitor(currentThread);
} else {
/* Don't return the unpopulated item. */
Trc_SHR_RRM_rrmTableLookup_lockStartupMonitorFailed(currentThread, rc, cachelet, returnVal->key());
returnVal = NULL;
}
} else {
unlockHashTable(currentThread, _rrmLookupFnName);
if (_isRunningNested && returnVal) {
Trc_SHR_Assert_True(returnVal->cachelet()->isStarted());
}
}
#else
unlockHashTable(currentThread, _rrmLookupFnName);
#endif
} else {
PORT_ACCESS_FROM_PORT(_portlib);
M_ERR_TRACE(J9NLS_SHRC_RRM_FAILED_ENTER_RRMMUTEX);
Trc_SHR_RRM_rrmTableLookup_Exit1(currentThread, MONITOR_ENTER_RETRY_TIMES);
return NULL;
}
if (returnVal) {
Trc_SHR_Assert_True(returnVal->item() != NULL);
}
Trc_SHR_RRM_rrmTableLookup_Exit2(currentThread, returnVal);
return returnVal;
}
/* Hashtable remove function. Returns value if found, otherwise returns NULL
* Returns 0 on success and 1 on failure */
UDATA
SH_ROMClassResourceManager::rrmTableRemove(J9VMThread* currentThread, UDATA key)
{
IDATA retryCount = 0;
HashTableEntry searchKey(key, 0, NULL);
UDATA returnVal = 1;
Trc_SHR_RRM_rrmTableRemove_Entry(currentThread, key);
while (retryCount < MONITOR_ENTER_RETRY_TIMES) {
if (_cache->enterLocalMutex(currentThread, _htMutex, _htMutexName, _rrmRemoveFnName)==0) {
returnVal = hashTableRemove(_hashTable, (void*)&searchKey);
Trc_SHR_RRM_rrmTableRemove_HashtableRemove(currentThread, returnVal);
_cache->exitLocalMutex(currentThread, _htMutex, _htMutexName, _rrmRemoveFnName);
break;
}
retryCount++;
}
if (retryCount==MONITOR_ENTER_RETRY_TIMES) {
PORT_ACCESS_FROM_PORT(_portlib);
M_ERR_TRACE(J9NLS_SHRC_RRM_FAILED_ENTER_RRMMUTEX);
Trc_SHR_RRM_rrmTableRemove_Exit1(currentThread, retryCount);
return 1;
}
Trc_SHR_RRM_rrmTableRemove_Exit2(currentThread, returnVal);
return returnVal;
}
/**
* Registers a new resource with the SH_ROMClassResourceManager
*
* Called when a new resource has been identified in the cache
*
* @see Manager.hpp
* @param[in] currentThread The current thread
* @param[in] itemInCache The address of the item found in the cache
*
* @return true if successful, false otherwise
*/
bool
SH_ROMClassResourceManager::storeNew(J9VMThread* currentThread, const ShcItem* itemInCache, SH_CompositeCache* cachelet)
{
HashTableEntry* entry = NULL;
/* Need to allow storeNew to work even if accessPermitted == false.
* This is because we need to keep the hashtables up to date incase accessPermitted becomes true */
if (getState() != MANAGER_STATE_STARTED) {
return false;
}
Trc_SHR_RRM_storeNew_Entry(currentThread, itemInCache);
if (!_cache->isStale(itemInCache)) {
entry = rrmTableAdd(currentThread, itemInCache, cachelet);
/* If there was an existing entry, remove it */
_dataBytes += ITEMDATALEN(itemInCache);
const ShcItem* itemInHashTable = NULL;
if (NULL != entry) {
itemInHashTable = entry->item();
if (NULL != itemInHashTable) {
if (itemInCache != itemInHashTable) {
/* found an existing item under the same key, remove it from the hashTable */
UDATA key = getKeyForItem(itemInHashTable);
rrmTableRemove(currentThread, key);
Trc_SHR_RRM_storeNew_existingEntryRemoved(currentThread, itemInHashTable);
entry = rrmTableAdd(currentThread, itemInCache, cachelet);
}
}
}
if (!entry) {
Trc_SHR_RRM_storeNew_ExitFalse(currentThread);
return false;
}
}
Trc_SHR_RRM_storeNew_ExitTrue(currentThread);
return true;
}
/**
* Look for a resource for the given ROM address
*
* @param[in] currentThread The current thread
* @param[in] resourceKey An address in the ROMClass which a resource might be associated with
*
* @return The resource data if found, or null
*/
const void*
SH_ROMClassResourceManager::findResource(J9VMThread* currentThread, UDATA resourceKey)
{
const void* returnVal = NULL;
HashTableEntry* entry = NULL;
if (!_accessPermitted) {
return NULL;
}
Trc_SHR_RRM_find_Entry_V2(currentThread, resourceKey);
if ((entry = rrmTableLookup(currentThread, resourceKey))) {
const ShcItem* item = entry->item();
returnVal = (const void*)ITEMDATA(item);
}
Trc_SHR_RRM_find_Exit(currentThread, returnVal);
return returnVal;
}
UDATA
SH_ROMClassResourceManager::markStale(J9VMThread* currentThread, UDATA resourceKey, const ShcItem* itemInCache)
{
UDATA returnVal = 1;
if (!_accessPermitted) {
return 0;
}
Trc_SHR_RRM_markStale_Entry(currentThread, resourceKey, itemInCache);
if ((returnVal = rrmTableRemove(currentThread, resourceKey))==0) {
_cache->markItemStale(currentThread, itemInCache, false);
}
Trc_SHR_RRM_markStale_Exit(currentThread, returnVal);
return returnVal;
}
bool
SH_ROMClassResourceManager::permitAccessToResource(J9VMThread* currentThread)
{
return _accessPermitted;
}
UDATA
SH_ROMClassResourceManager::customCountItemsInList(void* entry, void* opaque)
{
HashTableEntry* node = (HashTableEntry*)entry;
SH_Manager::CountData* countData = (SH_Manager::CountData*)opaque;
if (countData->_cache->isStale(node->item())) {
++(countData->_staleItems);
} else {
++(countData->_nonStaleItems);
}
return 0;
}
void
SH_ROMClassResourceManager::getKeyAndItemForHashtableEntry(void* entry, UDATA* key, const ShcItem** item)
{
HashTableEntry* found = (HashTableEntry*)entry;
*key = found->key();
*item = found->item();
}
UDATA
SH_ROMClassResourceManager::getDataBytes()
{
return _dataBytes;
}
#if defined(J9SHR_CACHELET_SUPPORT)
bool
SH_ROMClassResourceManager::canCreateHints()
{
return false;
}
/**
* A hash table do function. Count number of entries in a cachelet.
*/
UDATA
SH_ROMClassResourceManager::rrmCountCacheletHashes(void* entry, void* userData)
{
HashTableEntry* node = (HashTableEntry*)entry;
CacheletHintCountData* data = (CacheletHintCountData*)userData;
if (data->cachelet == node->cachelet()) {
data->hashCount++;
}
return FALSE; /* don't remove entry */
}
/**
* A hash table do function
*/
UDATA
SH_ROMClassResourceManager::rrmCollectHashOfEntry(void* entry, void* userData)
{
HashTableEntry* node = (HashTableEntry*)entry;
CacheletHintHashData* data = (CacheletHintHashData*)userData;
if (data->cachelet == node->cachelet()) {
*data->hashSlot++ = rrmHashFn(entry, NULL);
}
return FALSE; /* don't remove entry */
}
/**
* Collect the hash entry hashes into a cachelet hint.
*/
IDATA
SH_ROMClassResourceManager::rrmCollectHashes(J9VMThread* currentThread, SH_CompositeCache* cachelet, CacheletHints* hints)
{
PORT_ACCESS_FROM_VMC(currentThread);
CacheletHintHashData hashes;
CacheletHintCountData counts;
/* count hashes in this cachelet */
counts.cachelet = cachelet;
counts.hashCount = 0;
hashTableForEachDo(_hashTable, rrmCountCacheletHashes, (void*)&counts);
/* allocate hash array */
hints->length = counts.hashCount * sizeof(UDATA);
if (hints->length == 0) {
hints->data = NULL;
return 0;
}
hints->data = (U_8*)j9mem_allocate_memory(hints->length, J9MEM_CATEGORY_CLASSES);
if (!hints->data) {
/* TODO trace alloc failure */
hints->length = 0;
return -1;
}
/* collect hashes */
hashes.cachelet = cachelet;
hashes.hashSlot = (UDATA*)hints->data;
hashTableForEachDo(_hashTable, rrmCollectHashOfEntry, (void*)&hashes);
/* TODO trace hints written */
return 0;
}
void
SH_ROMClassResourceManager::fixupHintsForSerialization(J9VMThread* vmthread,
UDATA dataType, UDATA dataLen, U_8* data,
IDATA deployedOffset, void* serializedROMClassStartAddress)
{
UDATA *hashSlot = (UDATA*)data;
UDATA hintCount = dataLen / sizeof(UDATA);
Trc_SHR_Assert_True(dataType == _dataTypesRepresented[0]);
while (hintCount-- > 0) {
UDATA temp = *hashSlot; /* this is an absolute address in the original supercache */
/* The address may be in a different cachelet, but
* all cachelets in a supercache get the same deployed offset.
*/
temp += deployedOffset; /* convert to absolute address in the deployed supercache */
temp -= (UDATA)serializedROMClassStartAddress; /* convert to offset from deployed supercache start */
#ifdef DEBUG
fprintf(stderr, "\torig=%p, new abs=%p rel=%p\n", *hashSlot, *hashSlot + deployedOffset, temp);
#endif
*hashSlot = temp;
++hashSlot;
}
}
/**
* Walk the managed items hashtable in this cachelet. Allocate and populate an array
* of hints, one for each hash entry.
*
* @param[in] self a data type manager
* @param[in] vmthread the current VMThread
* @param[out] hints a CacheletHints structure. This function fills in its
* contents.
*
* @retval 0 success
* @retval -1 failure
*/
IDATA
SH_ROMClassResourceManager::createHintsForCachelet(J9VMThread* vmthread, SH_CompositeCache* cachelet, CacheletHints* hints)
{
Trc_SHR_Assert_True(hints != NULL);
/* hints->dataType should have been set by the caller */
Trc_SHR_Assert_True(hints->dataType == _dataTypesRepresented[0]);
return rrmCollectHashes(vmthread, cachelet, hints);
}
/**
* add a (_hashValue, cachelet) entry to the hash table
* only called with hints of the right data type
*/
IDATA
SH_ROMClassResourceManager::primeHashtables(J9VMThread* vmthread, SH_CompositeCache* cachelet, U_8* hintsData, UDATA dataLength)
{
UDATA* hashSlot = (UDATA*)hintsData;
UDATA hintCount = 0;
UDATA segmentBase = 0;
if ((dataLength == 0) || (hintsData == NULL)) {
return 0;
}
#ifdef DEBUG
fprintf(stderr, "primeFromHints: supercache start=%p end=%p\n",
((SH_CompositeCacheImpl*)cachelet)->getParent()->getFirstROMClassAddress(true),
((SH_CompositeCacheImpl*)cachelet)->getParent()->getCacheEndAddress());
#endif
/* The hint is supposed to be an absolute cache address. It's stored in
* the cache as an offset. Need to relocate the hint when priming the hashtable.
*/
/* TODO: remove the entire function when J9SHR_CACHELET_SUPPORT is not defined */
segmentBase = (UDATA)((SH_CompositeCacheImpl*)cachelet)->getParent()->getFirstROMClassAddress(true);
hintCount = dataLength / sizeof(UDATA);
while (hintCount-- > 0) {
UDATA temp = *hashSlot;
temp += segmentBase;
Trc_SHR_RRM_primeHashtables_addingHint(vmthread, cachelet, temp);
if (NULL == rrmTableAddPrime(vmthread, temp, cachelet)) {
/* If we failed to finish priming the hints, just give up.
* Stuff should still work, just suboptimally.
*/
Trc_SHR_RRM_primeHashtables_failedToPrimeHint(vmthread, this, cachelet, *hashSlot);
break;
}
++hashSlot;
}
return 0;
}
#endif /* J9SHR_CACHELET_SUPPORT */