-
Notifications
You must be signed in to change notification settings - Fork 746
/
Copy pathSharedCache.hpp
127 lines (85 loc) · 5.48 KB
/
SharedCache.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
/*******************************************************************************
* Copyright IBM Corp. and others 2001
*
* 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
*******************************************************************************/
/**
* @file
* @ingroup Shared_Common
*/
#if !defined(SHAREDCACHE_HPP_INCLUDED)
#define SHAREDCACHE_HPP_INCLUDED
/* @ddr_namespace: default */
#include "ClasspathItem.hpp"
#include "Manager.hpp"
#include "CompositeCache.hpp"
#include "sharedconsts.h"
#include "ut_j9shr.h"
/**
* Interface to shared cache subsystem.
*
* @see SH_SharedClassCache.hpp
* @ingroup Shared_Common
*/
class SH_SharedCache
{
public:
typedef char* BlockPtr;
virtual const J9ROMClass* findROMClass(J9VMThread* currentThread, const char* path, ClasspathItem* classpath, const J9UTF8* partition, const J9UTF8* modContext, IDATA confirmedEntries, IDATA* foundAtIndex) = 0;
virtual const U_8* storeCompiledMethod(J9VMThread* currentThread, const J9ROMMethod* romMethod, const U_8* dataStart, UDATA dataSize, const U_8* codeStart, UDATA codeSize, UDATA forceReplace) = 0;
virtual const U_8* findCompiledMethod(J9VMThread* currentThread, const J9ROMMethod* romMethod, UDATA* flags) = 0;
virtual IDATA findSharedData(J9VMThread* currentThread, const char* key, UDATA keylen, UDATA limitDataType, UDATA includePrivateData, J9SharedDataDescriptor* firstItem, const J9Pool* descriptorPool) = 0;
virtual const U_8* storeSharedData(J9VMThread* currentThread, const char* key, UDATA keylen, const J9SharedDataDescriptor* data) = 0;
virtual const U_8* findAttachedDataAPI(J9VMThread* currentThread, const void* addressInCache, J9SharedDataDescriptor* data, IDATA *corruptOffset) = 0;
virtual UDATA storeAttachedData(J9VMThread* currentThread, const void* addressInCache, const J9SharedDataDescriptor* data, UDATA forceReplace) = 0;
virtual UDATA updateAttachedData(J9VMThread* currentThread, const void* addressInCache, I_32 updateAtOffset, const J9SharedDataDescriptor* data) = 0;
virtual UDATA updateAttachedUDATA(J9VMThread* currentThread, const void* addressInCache, UDATA type, I_32 updateAtOffset, UDATA value) = 0;
virtual UDATA acquirePrivateSharedData(J9VMThread* currentThread, const J9SharedDataDescriptor* data) = 0;
virtual UDATA releasePrivateSharedData(J9VMThread* currentThread, const J9SharedDataDescriptor* data) = 0;
virtual IDATA markStale(J9VMThread* currentThread, ClasspathEntryItem* cpei, bool hasWriteMutex) = 0;
virtual IDATA isStale(const ShcItem* item) = 0;
virtual void markItemStale(J9VMThread* currentThread, const ShcItem* item, bool isCacheLocked) = 0;
virtual void markItemStaleCheckMutex(J9VMThread* currentThread, const ShcItem* item, bool isCacheLocked) = 0;
virtual void destroy(J9VMThread* currentThread) = 0;
virtual IDATA printCacheStats(J9VMThread* currentThread, UDATA showFlags, U_64 runtimeFlags) = 0;
virtual void printShutdownStats(void) = 0;
virtual void runExitCode(J9VMThread* currentThread) = 0;
virtual void cleanup(J9VMThread* currentThread) = 0;
virtual bool isBytecodeAgentInstalled(void) = 0;
virtual IDATA enterLocalMutex(J9VMThread* currentThread, omrthread_monitor_t monitor, const char* name, const char* caller) = 0;
virtual IDATA exitLocalMutex(J9VMThread* currentThread, omrthread_monitor_t monitor, const char* name, const char* caller) = 0;
virtual IDATA enterStringTableMutex(J9VMThread* currentThread, BOOLEAN readOnly, UDATA* doRebuildLocalData, UDATA* doRebuildCacheData) = 0;
virtual IDATA exitStringTableMutex(J9VMThread* currentThread, UDATA resetReason) = 0;
virtual void notifyClasspathEntryStateChange(J9VMThread* currentThread, const char* path, UDATA newState) = 0;
virtual SH_CompositeCache* getCompositeCacheAPI() = 0;
virtual IDATA getAndStartManagerForType(J9VMThread* currentThread, UDATA dataType, SH_Manager** startedManager) = 0;
virtual void getRomClassAreaBounds(void ** romClassAreaStart, void ** romClassAreaEnd) = 0;
virtual SH_Managers * managers() = 0;
virtual J9SharedClassConfig* getSharedClassConfig() = 0;
virtual IDATA aotMethodOperation(J9VMThread* currentThread, char* methodSpecs, UDATA reason) = 0;
virtual void* getAddressFromJ9ShrOffset(const J9ShrOffset* offset) = 0;
virtual U_8* getDataFromByteDataWrapper(const ByteDataWrapper* bdw) = 0;
protected:
/* - Virtual destructor has been added to avoid compile warnings.
* - Delete operator added to avoid linkage with C++ runtime libs
*/
void operator delete(void *) { return; }
virtual ~SH_SharedCache() { Trc_SHR_Assert_ShouldNeverHappen(); };
};
#endif /* !defined(SHAREDCACHE_HPP_INCLUDED) */