@@ -94,6 +94,17 @@ void AbstractWorkGang::threads_do(ThreadClosure* tc) const {
94
94
}
95
95
}
96
96
97
+ static void run_foreground_task_if_needed (AbstractGangTask* task, uint num_workers,
98
+ bool add_foreground_work) {
99
+ if (add_foreground_work) {
100
+ log_develop_trace (gc, workgang)(" Running work gang: %s task: %s worker: foreground" ,
101
+ Thread::current ()->name (), task->name ());
102
+ task->work (num_workers);
103
+ log_develop_trace (gc, workgang)(" Finished work gang: %s task: %s worker: foreground "
104
+ " thread: " PTR_FORMAT, Thread::current ()->name (), task->name (), p2i (Thread::current ()));
105
+ }
106
+ }
107
+
97
108
// WorkGang dispatcher implemented with semaphores.
98
109
//
99
110
// Semaphores don't require the worker threads to re-claim the lock when they wake up.
@@ -124,14 +135,16 @@ class SemaphoreGangTaskDispatcher : public GangTaskDispatcher {
124
135
delete _end_semaphore;
125
136
}
126
137
127
- void coordinator_execute_on_workers (AbstractGangTask* task, uint num_workers) {
138
+ void coordinator_execute_on_workers (AbstractGangTask* task, uint num_workers, bool add_foreground_work ) {
128
139
// No workers are allowed to read the state variables until they have been signaled.
129
140
_task = task;
130
141
_not_finished = num_workers;
131
142
132
143
// Dispatch 'num_workers' number of tasks.
133
144
_start_semaphore->signal (num_workers);
134
145
146
+ run_foreground_task_if_needed (task, num_workers, add_foreground_work);
147
+
135
148
// Wait for the last worker to signal the coordinator.
136
149
_end_semaphore->wait ();
137
150
@@ -188,7 +201,7 @@ class MutexGangTaskDispatcher : public GangTaskDispatcher {
188
201
delete _monitor;
189
202
}
190
203
191
- void coordinator_execute_on_workers (AbstractGangTask* task, uint num_workers) {
204
+ void coordinator_execute_on_workers (AbstractGangTask* task, uint num_workers, bool add_foreground_work ) {
192
205
MonitorLocker ml (_monitor, Mutex::_no_safepoint_check_flag);
193
206
194
207
_task = task;
@@ -197,6 +210,8 @@ class MutexGangTaskDispatcher : public GangTaskDispatcher {
197
210
// Tell the workers to get to work.
198
211
_monitor->notify_all ();
199
212
213
+ run_foreground_task_if_needed (task, num_workers, add_foreground_work);
214
+
200
215
// Wait for them to finish.
201
216
while (_finished < _num_workers) {
202
217
ml.wait ();
@@ -263,14 +278,14 @@ void WorkGang::run_task(AbstractGangTask* task) {
263
278
run_task (task, active_workers ());
264
279
}
265
280
266
- void WorkGang::run_task (AbstractGangTask* task, uint num_workers) {
281
+ void WorkGang::run_task (AbstractGangTask* task, uint num_workers, bool add_foreground_work ) {
267
282
guarantee (num_workers <= total_workers (),
268
283
" Trying to execute task %s with %u workers which is more than the amount of total workers %u." ,
269
284
task->name (), num_workers, total_workers ());
270
285
guarantee (num_workers > 0 , " Trying to execute task %s with zero workers" , task->name ());
271
286
uint old_num_workers = _active_workers;
272
287
update_active_workers (num_workers);
273
- _dispatcher->coordinator_execute_on_workers (task, num_workers);
288
+ _dispatcher->coordinator_execute_on_workers (task, num_workers, add_foreground_work );
274
289
update_active_workers (old_num_workers);
275
290
}
276
291
0 commit comments