-
Notifications
You must be signed in to change notification settings - Fork 751
/
Copy pathScheduler.hpp
291 lines (240 loc) · 10.6 KB
/
Scheduler.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
/*******************************************************************************
* 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
*******************************************************************************/
/**
* @file
* @ingroup GC_Metronome
*/
#if !defined(SCHEDULER_HPP_)
#define SCHEDULER_HPP_
#include "omr.h"
#include "omrcfg.h"
#include "Base.hpp"
#include "GCCode.hpp"
#include "GCExtensionsBase.hpp"
#include "Metronome.hpp"
#include "ParallelDispatcher.hpp"
#include "YieldCollaborator.hpp"
class MM_OSInterface;
class MM_EnvironmentBase;
class MM_EnvironmentRealtime;
class MM_MemorySubSpaceMetronome;
class MM_Metronome;
class MM_RealtimeGC;
class MM_MetronomeAlarmThread;
class MM_Timer;
class MM_UtilizationTracker;
#define METRONOME_GC_ON 1
#define METRONOME_GC_OFF 0
/**
* @todo Provide class documentation
* @ingroup GC_Metronome
*/
class MM_Scheduler : public MM_ParallelDispatcher
{
/*
* Data members
*/
private:
uint64_t _mutatorStartTimeInNanos; /**< Time in nanoseconds when the mutator slice started. This is updated at increment end and when a GC quantum is skipped due to shouldMutatorDoubleBeat */
uint64_t _incrementStartTimeInNanos; /**< Time in nanoseconds when the last gc increment started */
MM_GCCode _gcCode; /**< The gc code that will be used for the next GC cycle. If this is modified during a collect it will be unused. This variable is reset at the end of every cycle to the default collection type */
protected:
public:
bool _isInitialized; /**< Set to true when all threads have been started */
volatile uintptr_t _sharedBarrierState;
MM_YieldCollaborator *_yieldCollaborator;
volatile bool _shouldGCYield; /**< Cached value for shouldGCYield() */
/* When utilization is over 50%, multiple consecutive GC beats is not allowed.
* Double-beating is allowed between 33% and 50% utilization and so on.
* We must keep track of the number of consecutive beats dynamically to ensure this.
*/
int32_t _currentConsecutiveBeats;
bool *_threadResumedTable; /**< Used to keep track of threads taken out of the suspended state when wakeUpThreads is called */
bool _mainThreadMustShutDown; /**< Set when the main thread must shutdown */
bool _exclusiveVMAccessRequired; /**< This flag is used by the main thread to see if it needs to get exclusive vm access */
MM_MetronomeAlarmThread *_alarmThread;
MM_EnvironmentRealtime *_threadWaitingOnMainThreadMonitor;
uintptr_t _mutatorCount;
MM_RealtimeGC *_gc;
OMR_VM *_vm;
MM_GCExtensionsBase *_extensions;
bool _doSchedulingBarrierEvents;
uint32_t _gcOn; /**< Are we in some long GC cycle? */
typedef enum {
MUTATOR = 0, /* main blocked on a monitor, mutators running */
WAKING_GC,
STOP_MUTATOR, /* main thread awake - waiting for mut threads to reach safe point */
AWAIT_GC, /* waiting for other gc threads to reach initial barrier */
RUNNING_GC,
WAKING_MUTATOR, /* main thread still awake, mutators running */
NUM_MODES
} Mode;
Mode _mode;
uintptr_t _gcPhaseSet;
bool _completeCurrentGCSynchronously; /**< Requests (typically by a mutator) to complete GC synchronously */
bool _completeCurrentGCSynchronouslyMainThreadCopy; /**< Copy of the request made by Main Thread at the beginning of very next GC increment */
GCReason _completeCurrentGCSynchronouslyReason;
uintptr_t _completeCurrentGCSynchronouslyReasonParameter;
/* monitor used to suspend/resume main thread,
* but also to ensure atomic access/change of _completeCurrentGCSynchronously/_mode
*/
omrthread_monitor_t _mainThreadMonitor;
MM_OSInterface *_osInterface;
/* Params generated from command-line options from mmparse */
double _window;
double _beat;
uint64_t _beatNanos;
double _staticTargetUtilization;
MM_UtilizationTracker* _utilTracker;
/*
* Function members
*/
private:
protected:
/**
* Overrides of functionality in MM_ParallelDispatcher
* @{
*/
virtual uintptr_t getThreadPriority();
/**
* @copydoc MM_ParallelDispatcher::useSeparateMainThread()
* Because Metronome requires all GC threads to begin an increment
* at the same location where they left off, it uses a separate
* thread as the GC main thread, instead of using one of the
* mutator threads.
*/
virtual bool useSeparateMainThread() { return true; }
virtual void wakeUpThreads(uintptr_t count);
void wakeUpWorkerThreads(uintptr_t count);
virtual void workerEntryPoint(MM_EnvironmentBase *env);
virtual void mainEntryPoint(MM_EnvironmentBase *env);
bool internalShouldGCYield(MM_EnvironmentRealtime *env, uint64_t timeSlack);
/** @} */
public:
void pushYieldCollaborator(MM_YieldCollaborator *yieldCollaborator) {
_yieldCollaborator = yieldCollaborator->push(_yieldCollaborator);
}
void popYieldCollaborator() {
_yieldCollaborator = _yieldCollaborator->pop();
}
void shutDownWorkerThreads();
void shutDownMainThread();
void startGCIfTimeExpired(MM_EnvironmentBase *env);
virtual bool condYieldFromGCWrapper(MM_EnvironmentBase *env, uint64_t timeSlack = 0);
uintptr_t incrementMutatorCount();
uintptr_t getParameter(uintptr_t which, char *keyBuffer, int32_t keyBufferSize, char *valueBuffer, int32_t valueBufferSize);
void showParameters(MM_EnvironmentBase *env);
/**
* Set scheduling parameters on argument extensions object to
* simulate Stop-The-World GC. We simulate STW by running time-based,
* with MMU, etc. parameters chosen so that the GC will not yield to the
* mutator until an entire GC cycle has completed.
*/
static void initializeForVirtualSTW(MM_GCExtensionsBase *ext);
bool isInitialized() { return _isInitialized; }
static MM_Scheduler *newInstance(MM_EnvironmentBase *env, omrsig_handler_fn handler, void *handler_arg, uintptr_t defaultOSStackSize);
bool initialize(MM_EnvironmentBase *env);
virtual void kill(MM_EnvironmentBase *env);
void tearDown(MM_EnvironmentBase *env);
virtual bool startUpThreads();
virtual void shutDownThreads();
virtual void prepareThreadsForTask(MM_EnvironmentBase *env, MM_Task *task, uintptr_t threadCount);
virtual void completeTask(MM_EnvironmentBase *env);
void checkStartGC(MM_EnvironmentRealtime *env);
void startGC(MM_EnvironmentBase *env); /**< Call when some space threshold is triggered. */
void stopGC(MM_EnvironmentBase *env);
bool isGCOn();
bool shouldGCDoubleBeat(MM_EnvironmentRealtime *env);
bool shouldMutatorDoubleBeat(MM_EnvironmentRealtime *env, MM_Timer *timer);
void reportStartGCIncrement(MM_EnvironmentRealtime *env);
void reportStopGCIncrement(MM_EnvironmentRealtime *env, bool isCycleEnd = false);
void restartMutatorsAndWait(MM_EnvironmentRealtime *env);
bool shouldGCYield(MM_EnvironmentRealtime *env, uint64_t timeSlack);
bool condYieldFromGC(MM_EnvironmentBase *env, uint64_t timeSlack = 0);
/* Low-level yielding from inside the Scheduler */
void yieldFromGC(MM_EnvironmentRealtime *env, bool distanceChecked = false);
void waitForMutatorsToStop(MM_EnvironmentRealtime *env);
void startMutators(MM_EnvironmentRealtime *env);
/* Non-blocking and typicallly called by an alarm handler. Returns 1 if we did resume GC (non-recursive). */
bool continueGC(MM_EnvironmentRealtime *, GCReason reason, uintptr_t reasonParameter, OMR_VMThread *_vmThread, bool doRequestExclusiveVMAccess);
void setGCPriority(MM_EnvironmentBase *env, uintptr_t priority); /**< Sets the priority for all gc threads */
void completeCurrentGCSynchronously(MM_EnvironmentRealtime *env = NULL);
uintptr_t verbose() { return _extensions->verbose; }
uintptr_t debug() { return _extensions->debug; }
virtual void recomputeActiveThreadCount(MM_EnvironmentBase *env);
/* Time and Work Statistics */
void startGCTime(MM_EnvironmentRealtime *env, bool isDoubleBeat);
void stopGCTime(MM_EnvironmentRealtime *env);
uint64_t getStartTimeOfCurrentMutatorSlice() { return _mutatorStartTimeInNanos; }
void setStartTimeOfCurrentMutatorSlice(uint64_t time) { _mutatorStartTimeInNanos = time; }
uint64_t getStartTimeOfCurrentGCSlice() { return _incrementStartTimeInNanos; }
void setStartTimeOfCurrentGCSlice(uint64_t time) { _incrementStartTimeInNanos = time; }
uintptr_t getActiveThreadCount() { return _activeThreadCount; }
uintptr_t getTaskThreadCount(MM_EnvironmentBase *env);
void setGCCode(MM_GCCode gcCode) { _gcCode = gcCode; }
void collectorInitialized(MM_RealtimeGC *gc);
#if defined(J9VM_OPT_CRIU_SUPPORT)
virtual bool reinitializeForRestore(MM_EnvironmentBase *env) { return true; }
virtual void prepareForCheckpoint(MM_EnvironmentBase *env, uintptr_t newThreadCount) {};
#endif /* defined(J9VM_OPT_CRIU_SUPPORT) */
MM_Scheduler(MM_EnvironmentBase *env, omrsig_handler_fn handler, void *handler_arg, uintptr_t defaultOSStackSize) :
MM_ParallelDispatcher(env, handler, handler_arg, defaultOSStackSize),
_mutatorStartTimeInNanos(J9CONST64(0)),
_incrementStartTimeInNanos(J9CONST64(0)),
_gcCode(J9MMCONSTANT_IMPLICIT_GC_DEFAULT),
_isInitialized(false),
_yieldCollaborator(NULL),
_shouldGCYield(false),
_currentConsecutiveBeats(0),
_threadResumedTable(NULL),
_mainThreadMustShutDown(false),
_exclusiveVMAccessRequired(true),
_alarmThread(NULL),
_threadWaitingOnMainThreadMonitor(NULL),
_mutatorCount(0),
_gc(NULL),
_vm(env->getOmrVM()),
_extensions(MM_GCExtensionsBase::getExtensions(_vm)),
_doSchedulingBarrierEvents(false),
_gcOn(METRONOME_GC_OFF),
_mode(MUTATOR),
_gcPhaseSet(GC_PHASE_IDLE),
_completeCurrentGCSynchronously(false),
_completeCurrentGCSynchronouslyMainThreadCopy(false),
_completeCurrentGCSynchronouslyReason(UNKOWN_REASON),
_completeCurrentGCSynchronouslyReasonParameter(0),
_mainThreadMonitor(NULL),
_osInterface(NULL),
_window(),
_beat(),
_beatNanos(),
_staticTargetUtilization(),
_utilTracker(NULL)
{
_typeId = __FUNCTION__;
}
/*
* Friends
*/
friend class MM_EnvironmentRealtime;
};
#endif /* SCHEDULER_HPP_ */