annotate src/share/vm/utilities/workgroup.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 37f87013dfd8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_workgroup.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Definitions of WorkGang methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 AbstractWorkGang::AbstractWorkGang(const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
31 bool are_GC_threads) :
a61af66fc99e Initial load
duke
parents:
diff changeset
32 _name(name),
a61af66fc99e Initial load
duke
parents:
diff changeset
33 _are_GC_threads(are_GC_threads) {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Other initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _monitor = new Monitor(/* priority */ Mutex::leaf,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 /* name */ "WorkGroup monitor",
a61af66fc99e Initial load
duke
parents:
diff changeset
37 /* allow_vm_block */ are_GC_threads);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 assert(monitor() != NULL, "Failed to allocate monitor");
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _terminate = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _task = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _sequence_number = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _started_workers = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _finished_workers = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 WorkGang::WorkGang(const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 int workers,
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool are_GC_threads) :
a61af66fc99e Initial load
duke
parents:
diff changeset
49 AbstractWorkGang(name, are_GC_threads) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Save arguments.
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _total_workers = workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 tty->print_cr("Constructing work gang %s with %d threads", name, workers);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _gang_workers = NEW_C_HEAP_ARRAY(GangWorker*, workers);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert(gang_workers() != NULL, "Failed to allocate gang workers");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 for (int worker = 0; worker < total_workers(); worker += 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 GangWorker* new_worker = new GangWorker(this, worker);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 assert(new_worker != NULL, "Failed to allocate GangWorker");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _gang_workers[worker] = new_worker;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (new_worker == NULL || !os::create_thread(new_worker, os::pgc_thread))
a61af66fc99e Initial load
duke
parents:
diff changeset
62 vm_exit_out_of_memory(0, "Cannot create worker GC thread. Out of system resources.");
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (!DisableStartThread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 os::start_thread(new_worker);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 AbstractWorkGang::~AbstractWorkGang() {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 tty->print_cr("Destructing work gang %s", name());
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 stop(); // stop all the workers
a61af66fc99e Initial load
duke
parents:
diff changeset
74 for (int worker = 0; worker < total_workers(); worker += 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 delete gang_worker(worker);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 delete gang_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 delete monitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 GangWorker* AbstractWorkGang::gang_worker(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Array index bounds checking.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 GangWorker* result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(gang_workers() != NULL, "No workers for indexing");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(((i >= 0) && (i < total_workers())), "Worker index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
86 result = _gang_workers[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
87 assert(result != NULL, "Indexing to null worker");
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 void WorkGang::run_task(AbstractGangTask* task) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // This thread is executed by the VM thread which does not block
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // on ordinary MutexLocker's.
a61af66fc99e Initial load
duke
parents:
diff changeset
94 MutexLockerEx ml(monitor(), Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 tty->print_cr("Running work gang %s task %s", name(), task->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Tell all the workers to run a task.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 assert(task != NULL, "Running a null task");
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Initialize.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _task = task;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 _sequence_number += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 _started_workers = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 _finished_workers = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Tell the workers to get to work.
a61af66fc99e Initial load
duke
parents:
diff changeset
106 monitor()->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Wait for them to be finished
a61af66fc99e Initial load
duke
parents:
diff changeset
108 while (finished_workers() < total_workers()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 tty->print_cr("Waiting in work gang %s: %d/%d finished sequence %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
111 name(), finished_workers(), total_workers(),
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _sequence_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 monitor()->wait(/* no_safepoint_check */ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 _task = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 tty->print_cr("/nFinished work gang %s: %d/%d sequence %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
119 name(), finished_workers(), total_workers(),
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _sequence_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void AbstractWorkGang::stop() {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Tell all workers to terminate, then wait for them to become inactive.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 MutexLockerEx ml(monitor(), Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 tty->print_cr("Stopping work gang %s task %s", name(), task()->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _task = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _terminate = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 monitor()->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 while (finished_workers() < total_workers()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 tty->print_cr("Waiting in work gang %s: %d/%d finished",
a61af66fc99e Initial load
duke
parents:
diff changeset
136 name(), finished_workers(), total_workers());
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 monitor()->wait(/* no_safepoint_check */ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void AbstractWorkGang::internal_worker_poll(WorkData* data) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 assert(monitor()->owned_by_self(), "worker_poll is an internal method");
a61af66fc99e Initial load
duke
parents:
diff changeset
144 assert(data != NULL, "worker data is null");
a61af66fc99e Initial load
duke
parents:
diff changeset
145 data->set_terminate(terminate());
a61af66fc99e Initial load
duke
parents:
diff changeset
146 data->set_task(task());
a61af66fc99e Initial load
duke
parents:
diff changeset
147 data->set_sequence_number(sequence_number());
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void AbstractWorkGang::internal_note_start() {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 assert(monitor()->owned_by_self(), "note_finish is an internal method");
a61af66fc99e Initial load
duke
parents:
diff changeset
152 _started_workers += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 void AbstractWorkGang::internal_note_finish() {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert(monitor()->owned_by_self(), "note_finish is an internal method");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 _finished_workers += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void AbstractWorkGang::print_worker_threads_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 uint num_thr = total_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 for (uint i = 0; i < num_thr; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 gang_worker(i)->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void AbstractWorkGang::threads_do(ThreadClosure* tc) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 assert(tc != NULL, "Null ThreadClosure");
a61af66fc99e Initial load
duke
parents:
diff changeset
170 uint num_thr = total_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
171 for (uint i = 0; i < num_thr; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 tc->do_thread(gang_worker(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // GangWorker methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 GangWorker::GangWorker(AbstractWorkGang* gang, uint id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 _gang = gang;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 set_id(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 set_name("Gang worker#%d (%s)", id, gang->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void GangWorker::run() {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 loop();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void GangWorker::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 this->initialize_thread_local_storage();
a61af66fc99e Initial load
duke
parents:
diff changeset
191 assert(_gang != NULL, "No gang to run in");
a61af66fc99e Initial load
duke
parents:
diff changeset
192 os::set_priority(this, NearMaxPriority);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 tty->print_cr("Running gang worker for gang %s id %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
195 gang()->name(), id());
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // The VM thread should not execute here because MutexLocker's are used
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // as (opposed to MutexLockerEx's).
a61af66fc99e Initial load
duke
parents:
diff changeset
199 assert(!Thread::current()->is_VM_thread(), "VM thread should not be part"
a61af66fc99e Initial load
duke
parents:
diff changeset
200 " of a work gang");
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void GangWorker::loop() {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 int previous_sequence_number = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 Monitor* gang_monitor = gang()->monitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 for ( ; /* !terminate() */; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 WorkData data;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 int part; // Initialized below.
a61af66fc99e Initial load
duke
parents:
diff changeset
209 {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // Grab the gang mutex.
a61af66fc99e Initial load
duke
parents:
diff changeset
211 MutexLocker ml(gang_monitor);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Wait for something to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Polling outside the while { wait } avoids missed notifies
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // in the outer loop.
a61af66fc99e Initial load
duke
parents:
diff changeset
215 gang()->internal_worker_poll(&data);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 tty->print("Polled outside for work in gang %s worker %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
218 gang()->name(), id());
a61af66fc99e Initial load
duke
parents:
diff changeset
219 tty->print(" terminate: %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
220 data.terminate() ? "true" : "false");
a61af66fc99e Initial load
duke
parents:
diff changeset
221 tty->print(" sequence: %d (prev: %d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
222 data.sequence_number(), previous_sequence_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 if (data.task() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 tty->print(" task: %s", data.task()->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
225 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 tty->print(" task: NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 for ( ; /* break or return */; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // Terminate if requested.
a61af66fc99e Initial load
duke
parents:
diff changeset
232 if (data.terminate()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 gang()->internal_note_finish();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 gang_monitor->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
235 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Check for new work.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 if ((data.task() != NULL) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
239 (data.sequence_number() != previous_sequence_number)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 gang()->internal_note_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
241 gang_monitor->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
242 part = gang()->started_workers() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
246 gang_monitor->wait(/* no_safepoint_check */ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 gang()->internal_worker_poll(&data);
a61af66fc99e Initial load
duke
parents:
diff changeset
248 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 tty->print("Polled inside for work in gang %s worker %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
250 gang()->name(), id());
a61af66fc99e Initial load
duke
parents:
diff changeset
251 tty->print(" terminate: %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
252 data.terminate() ? "true" : "false");
a61af66fc99e Initial load
duke
parents:
diff changeset
253 tty->print(" sequence: %d (prev: %d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
254 data.sequence_number(), previous_sequence_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (data.task() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 tty->print(" task: %s", data.task()->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
257 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 tty->print(" task: NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // Drop gang mutex.
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 tty->print("Work for work gang %s id %d task %s part %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
267 gang()->name(), id(), data.task()->name(), part);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 assert(data.task() != NULL, "Got null task");
a61af66fc99e Initial load
duke
parents:
diff changeset
270 data.task()->work(part);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 if (TraceWorkGang) {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 tty->print("Finish for work gang %s id %d task %s part %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
274 gang()->name(), id(), data.task()->name(), part);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // Grab the gang mutex.
a61af66fc99e Initial load
duke
parents:
diff changeset
277 MutexLocker ml(gang_monitor);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 gang()->internal_note_finish();
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // Tell the gang you are done.
a61af66fc99e Initial load
duke
parents:
diff changeset
280 gang_monitor->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Drop the gang mutex.
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 previous_sequence_number = data.sequence_number();
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 bool GangWorker::is_GC_task_thread() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 return gang()->are_GC_threads();
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 void GangWorker::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 st->print("\"%s\" ", name());
a61af66fc99e Initial load
duke
parents:
diff changeset
293 Thread::print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // Printing methods
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 const char* AbstractWorkGang::name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 return _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 const char* AbstractGangTask::name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 return _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // *** WorkGangBarrierSync
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 WorkGangBarrierSync::WorkGangBarrierSync()
a61af66fc99e Initial load
duke
parents:
diff changeset
314 : _monitor(Mutex::safepoint, "work gang barrier sync", true),
a61af66fc99e Initial load
duke
parents:
diff changeset
315 _n_workers(0), _n_completed(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 WorkGangBarrierSync::WorkGangBarrierSync(int n_workers, const char* name)
a61af66fc99e Initial load
duke
parents:
diff changeset
319 : _monitor(Mutex::safepoint, name, true),
a61af66fc99e Initial load
duke
parents:
diff changeset
320 _n_workers(n_workers), _n_completed(0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 void WorkGangBarrierSync::set_n_workers(int n_workers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 _n_workers = n_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 _n_completed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 void WorkGangBarrierSync::enter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 MutexLockerEx x(monitor(), Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 inc_completed();
a61af66fc99e Initial load
duke
parents:
diff changeset
331 if (n_completed() == n_workers()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 monitor()->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 while (n_completed() != n_workers()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 monitor()->wait(/* no_safepoint_check */ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // SubTasksDone functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 SubTasksDone::SubTasksDone(int n) :
a61af66fc99e Initial load
duke
parents:
diff changeset
344 _n_tasks(n), _n_threads(1), _tasks(NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 _tasks = NEW_C_HEAP_ARRAY(jint, n);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 guarantee(_tasks != NULL, "alloc failure");
a61af66fc99e Initial load
duke
parents:
diff changeset
347 clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 bool SubTasksDone::valid() {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 return _tasks != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 void SubTasksDone::set_par_threads(int t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
356 assert(_claimed == 0 || _threads_completed == _n_threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
357 "should not be called while tasks are being processed!");
a61af66fc99e Initial load
duke
parents:
diff changeset
358 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
359 _n_threads = (t == 0 ? 1 : t);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
361
a61af66fc99e Initial load
duke
parents:
diff changeset
362 void SubTasksDone::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 for (int i = 0; i < _n_tasks; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 _tasks[i] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 _threads_completed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
368 _claimed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 bool SubTasksDone::is_task_claimed(int t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 assert(0 <= t && t < _n_tasks, "bad task id.");
a61af66fc99e Initial load
duke
parents:
diff changeset
374 jint old = _tasks[t];
a61af66fc99e Initial load
duke
parents:
diff changeset
375 if (old == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 old = Atomic::cmpxchg(1, &_tasks[t], 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378 assert(_tasks[t] == 1, "What else?");
a61af66fc99e Initial load
duke
parents:
diff changeset
379 bool res = old != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
381 if (!res) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 assert(_claimed < _n_tasks, "Too many tasks claimed; missing clear?");
a61af66fc99e Initial load
duke
parents:
diff changeset
383 Atomic::inc(&_claimed);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
385 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
386 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 void SubTasksDone::all_tasks_completed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 jint observed = _threads_completed;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 jint old;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 old = observed;
a61af66fc99e Initial load
duke
parents:
diff changeset
394 observed = Atomic::cmpxchg(old+1, &_threads_completed, old);
a61af66fc99e Initial load
duke
parents:
diff changeset
395 } while (observed != old);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // If this was the last thread checking in, clear the tasks.
a61af66fc99e Initial load
duke
parents:
diff changeset
397 if (observed+1 == _n_threads) clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 SubTasksDone::~SubTasksDone() {
a61af66fc99e Initial load
duke
parents:
diff changeset
402 if (_tasks != NULL) FREE_C_HEAP_ARRAY(jint, _tasks);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // *** SequentialSubTasksDone
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 void SequentialSubTasksDone::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 _n_tasks = _n_claimed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 _n_threads = _n_completed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 bool SequentialSubTasksDone::valid() {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 return _n_threads > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 bool SequentialSubTasksDone::is_task_claimed(int& t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 jint* n_claimed_ptr = &_n_claimed;
a61af66fc99e Initial load
duke
parents:
diff changeset
418 t = *n_claimed_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 while (t < _n_tasks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 jint res = Atomic::cmpxchg(t+1, n_claimed_ptr, t);
a61af66fc99e Initial load
duke
parents:
diff changeset
421 if (res == t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424 t = *n_claimed_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
426 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 bool SequentialSubTasksDone::all_tasks_completed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
430 jint* n_completed_ptr = &_n_completed;
a61af66fc99e Initial load
duke
parents:
diff changeset
431 jint complete = *n_completed_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
432 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 jint res = Atomic::cmpxchg(complete+1, n_completed_ptr, complete);
a61af66fc99e Initial load
duke
parents:
diff changeset
434 if (res == complete) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 complete = res;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 if (complete+1 == _n_threads) {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
441 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }