src/share/vm/runtime/safepoint.cpp

Tue, 22 Sep 2009 21:12:37 -0600

author
dcubed
date
Tue, 22 Sep 2009 21:12:37 -0600
changeset 1414
87770dcf831b
parent 1280
df6caf649ff7
child 1438
528d98fe1037
permissions
-rw-r--r--

6876794: 4/4 sp07t002 hangs very intermittently
Summary: remove over locking by VMThread on "is thread suspended?" check
Reviewed-by: dholmes, acorn, andrew

duke@435 1 /*
xdono@1014 2 * Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_safepoint.cpp.incl"
duke@435 27
duke@435 28 // --------------------------------------------------------------------------------------------------
duke@435 29 // Implementation of Safepoint begin/end
duke@435 30
duke@435 31 SafepointSynchronize::SynchronizeState volatile SafepointSynchronize::_state = SafepointSynchronize::_not_synchronized;
duke@435 32 volatile int SafepointSynchronize::_waiting_to_block = 0;
duke@435 33 jlong SafepointSynchronize::_last_safepoint = 0;
duke@435 34 volatile int SafepointSynchronize::_safepoint_counter = 0;
duke@435 35 static volatile int PageArmed = 0 ; // safepoint polling page is RO|RW vs PROT_NONE
duke@435 36 static volatile int TryingToBlock = 0 ; // proximate value -- for advisory use only
duke@435 37 static bool timeout_error_printed = false;
duke@435 38
duke@435 39 // Roll all threads forward to a safepoint and suspend them all
duke@435 40 void SafepointSynchronize::begin() {
duke@435 41
duke@435 42 Thread* myThread = Thread::current();
duke@435 43 assert(myThread->is_VM_thread(), "Only VM thread may execute a safepoint");
duke@435 44
duke@435 45 _last_safepoint = os::javaTimeNanos();
duke@435 46
duke@435 47 #ifndef SERIALGC
duke@435 48 if (UseConcMarkSweepGC) {
duke@435 49 // In the future we should investigate whether CMS can use the
duke@435 50 // more-general mechanism below. DLD (01/05).
duke@435 51 ConcurrentMarkSweepThread::synchronize(false);
ysr@1280 52 } else if (UseG1GC) {
duke@435 53 ConcurrentGCThread::safepoint_synchronize();
duke@435 54 }
duke@435 55 #endif // SERIALGC
duke@435 56
duke@435 57 // By getting the Threads_lock, we assure that no threads are about to start or
duke@435 58 // exit. It is released again in SafepointSynchronize::end().
duke@435 59 Threads_lock->lock();
duke@435 60
duke@435 61 assert( _state == _not_synchronized, "trying to safepoint synchronize with wrong state");
duke@435 62
duke@435 63 int nof_threads = Threads::number_of_threads();
duke@435 64
duke@435 65 if (TraceSafepoint) {
duke@435 66 tty->print_cr("Safepoint synchronization initiated. (%d)", nof_threads);
duke@435 67 }
duke@435 68
duke@435 69 RuntimeService::record_safepoint_begin();
duke@435 70
duke@435 71 {
duke@435 72 MutexLocker mu(Safepoint_lock);
duke@435 73
duke@435 74 // Set number of threads to wait for, before we initiate the callbacks
duke@435 75 _waiting_to_block = nof_threads;
duke@435 76 TryingToBlock = 0 ;
duke@435 77 int still_running = nof_threads;
duke@435 78
duke@435 79 // Save the starting time, so that it can be compared to see if this has taken
duke@435 80 // too long to complete.
duke@435 81 jlong safepoint_limit_time;
duke@435 82 timeout_error_printed = false;
duke@435 83
duke@435 84 // Begin the process of bringing the system to a safepoint.
duke@435 85 // Java threads can be in several different states and are
duke@435 86 // stopped by different mechanisms:
duke@435 87 //
duke@435 88 // 1. Running interpreted
duke@435 89 // The interpeter dispatch table is changed to force it to
duke@435 90 // check for a safepoint condition between bytecodes.
duke@435 91 // 2. Running in native code
duke@435 92 // When returning from the native code, a Java thread must check
duke@435 93 // the safepoint _state to see if we must block. If the
duke@435 94 // VM thread sees a Java thread in native, it does
duke@435 95 // not wait for this thread to block. The order of the memory
duke@435 96 // writes and reads of both the safepoint state and the Java
duke@435 97 // threads state is critical. In order to guarantee that the
duke@435 98 // memory writes are serialized with respect to each other,
duke@435 99 // the VM thread issues a memory barrier instruction
duke@435 100 // (on MP systems). In order to avoid the overhead of issuing
duke@435 101 // a memory barrier for each Java thread making native calls, each Java
duke@435 102 // thread performs a write to a single memory page after changing
duke@435 103 // the thread state. The VM thread performs a sequence of
duke@435 104 // mprotect OS calls which forces all previous writes from all
duke@435 105 // Java threads to be serialized. This is done in the
duke@435 106 // os::serialize_thread_states() call. This has proven to be
duke@435 107 // much more efficient than executing a membar instruction
duke@435 108 // on every call to native code.
duke@435 109 // 3. Running compiled Code
duke@435 110 // Compiled code reads a global (Safepoint Polling) page that
duke@435 111 // is set to fault if we are trying to get to a safepoint.
duke@435 112 // 4. Blocked
duke@435 113 // A thread which is blocked will not be allowed to return from the
duke@435 114 // block condition until the safepoint operation is complete.
duke@435 115 // 5. In VM or Transitioning between states
duke@435 116 // If a Java thread is currently running in the VM or transitioning
duke@435 117 // between states, the safepointing code will wait for the thread to
duke@435 118 // block itself when it attempts transitions to a new state.
duke@435 119 //
duke@435 120 _state = _synchronizing;
duke@435 121 OrderAccess::fence();
duke@435 122
duke@435 123 // Flush all thread states to memory
duke@435 124 if (!UseMembar) {
duke@435 125 os::serialize_thread_states();
duke@435 126 }
duke@435 127
duke@435 128 // Make interpreter safepoint aware
duke@435 129 Interpreter::notice_safepoints();
duke@435 130
duke@435 131 if (UseCompilerSafepoints && DeferPollingPageLoopCount < 0) {
duke@435 132 // Make polling safepoint aware
duke@435 133 guarantee (PageArmed == 0, "invariant") ;
duke@435 134 PageArmed = 1 ;
duke@435 135 os::make_polling_page_unreadable();
duke@435 136 }
duke@435 137
duke@435 138 // Consider using active_processor_count() ... but that call is expensive.
duke@435 139 int ncpus = os::processor_count() ;
duke@435 140
duke@435 141 #ifdef ASSERT
duke@435 142 for (JavaThread *cur = Threads::first(); cur != NULL; cur = cur->next()) {
duke@435 143 assert(cur->safepoint_state()->is_running(), "Illegal initial state");
duke@435 144 }
duke@435 145 #endif // ASSERT
duke@435 146
duke@435 147 if (SafepointTimeout)
duke@435 148 safepoint_limit_time = os::javaTimeNanos() + (jlong)SafepointTimeoutDelay * MICROUNITS;
duke@435 149
duke@435 150 // Iterate through all threads until it have been determined how to stop them all at a safepoint
duke@435 151 unsigned int iterations = 0;
duke@435 152 int steps = 0 ;
duke@435 153 while(still_running > 0) {
duke@435 154 for (JavaThread *cur = Threads::first(); cur != NULL; cur = cur->next()) {
duke@435 155 assert(!cur->is_ConcurrentGC_thread(), "A concurrent GC thread is unexpectly being suspended");
duke@435 156 ThreadSafepointState *cur_state = cur->safepoint_state();
duke@435 157 if (cur_state->is_running()) {
duke@435 158 cur_state->examine_state_of_thread();
duke@435 159 if (!cur_state->is_running()) {
duke@435 160 still_running--;
duke@435 161 // consider adjusting steps downward:
duke@435 162 // steps = 0
duke@435 163 // steps -= NNN
duke@435 164 // steps >>= 1
duke@435 165 // steps = MIN(steps, 2000-100)
duke@435 166 // if (iterations != 0) steps -= NNN
duke@435 167 }
duke@435 168 if (TraceSafepoint && Verbose) cur_state->print();
duke@435 169 }
duke@435 170 }
duke@435 171
duke@435 172 if ( (PrintSafepointStatistics || (PrintSafepointStatisticsTimeout > 0))
duke@435 173 && iterations == 0) {
duke@435 174 begin_statistics(nof_threads, still_running);
duke@435 175 }
duke@435 176
duke@435 177 if (still_running > 0) {
duke@435 178 // Check for if it takes to long
duke@435 179 if (SafepointTimeout && safepoint_limit_time < os::javaTimeNanos()) {
duke@435 180 print_safepoint_timeout(_spinning_timeout);
duke@435 181 }
duke@435 182
duke@435 183 // Spin to avoid context switching.
duke@435 184 // There's a tension between allowing the mutators to run (and rendezvous)
duke@435 185 // vs spinning. As the VM thread spins, wasting cycles, it consumes CPU that
duke@435 186 // a mutator might otherwise use profitably to reach a safepoint. Excessive
duke@435 187 // spinning by the VM thread on a saturated system can increase rendezvous latency.
duke@435 188 // Blocking or yielding incur their own penalties in the form of context switching
duke@435 189 // and the resultant loss of $ residency.
duke@435 190 //
duke@435 191 // Further complicating matters is that yield() does not work as naively expected
duke@435 192 // on many platforms -- yield() does not guarantee that any other ready threads
duke@435 193 // will run. As such we revert yield_all() after some number of iterations.
duke@435 194 // Yield_all() is implemented as a short unconditional sleep on some platforms.
duke@435 195 // Typical operating systems round a "short" sleep period up to 10 msecs, so sleeping
duke@435 196 // can actually increase the time it takes the VM thread to detect that a system-wide
duke@435 197 // stop-the-world safepoint has been reached. In a pathological scenario such as that
duke@435 198 // described in CR6415670 the VMthread may sleep just before the mutator(s) become safe.
duke@435 199 // In that case the mutators will be stalled waiting for the safepoint to complete and the
duke@435 200 // the VMthread will be sleeping, waiting for the mutators to rendezvous. The VMthread
duke@435 201 // will eventually wake up and detect that all mutators are safe, at which point
duke@435 202 // we'll again make progress.
duke@435 203 //
duke@435 204 // Beware too that that the VMThread typically runs at elevated priority.
duke@435 205 // Its default priority is higher than the default mutator priority.
duke@435 206 // Obviously, this complicates spinning.
duke@435 207 //
duke@435 208 // Note too that on Windows XP SwitchThreadTo() has quite different behavior than Sleep(0).
duke@435 209 // Sleep(0) will _not yield to lower priority threads, while SwitchThreadTo() will.
duke@435 210 //
duke@435 211 // See the comments in synchronizer.cpp for additional remarks on spinning.
duke@435 212 //
duke@435 213 // In the future we might:
duke@435 214 // 1. Modify the safepoint scheme to avoid potentally unbounded spinning.
duke@435 215 // This is tricky as the path used by a thread exiting the JVM (say on
duke@435 216 // on JNI call-out) simply stores into its state field. The burden
duke@435 217 // is placed on the VM thread, which must poll (spin).
duke@435 218 // 2. Find something useful to do while spinning. If the safepoint is GC-related
duke@435 219 // we might aggressively scan the stacks of threads that are already safe.
duke@435 220 // 3. Use Solaris schedctl to examine the state of the still-running mutators.
duke@435 221 // If all the mutators are ONPROC there's no reason to sleep or yield.
duke@435 222 // 4. YieldTo() any still-running mutators that are ready but OFFPROC.
duke@435 223 // 5. Check system saturation. If the system is not fully saturated then
duke@435 224 // simply spin and avoid sleep/yield.
duke@435 225 // 6. As still-running mutators rendezvous they could unpark the sleeping
duke@435 226 // VMthread. This works well for still-running mutators that become
duke@435 227 // safe. The VMthread must still poll for mutators that call-out.
duke@435 228 // 7. Drive the policy on time-since-begin instead of iterations.
duke@435 229 // 8. Consider making the spin duration a function of the # of CPUs:
duke@435 230 // Spin = (((ncpus-1) * M) + K) + F(still_running)
duke@435 231 // Alternately, instead of counting iterations of the outer loop
duke@435 232 // we could count the # of threads visited in the inner loop, above.
duke@435 233 // 9. On windows consider using the return value from SwitchThreadTo()
duke@435 234 // to drive subsequent spin/SwitchThreadTo()/Sleep(N) decisions.
duke@435 235
duke@435 236 if (UseCompilerSafepoints && int(iterations) == DeferPollingPageLoopCount) {
duke@435 237 guarantee (PageArmed == 0, "invariant") ;
duke@435 238 PageArmed = 1 ;
duke@435 239 os::make_polling_page_unreadable();
duke@435 240 }
duke@435 241
duke@435 242 // Instead of (ncpus > 1) consider either (still_running < (ncpus + EPSILON)) or
duke@435 243 // ((still_running + _waiting_to_block - TryingToBlock)) < ncpus)
duke@435 244 ++steps ;
duke@435 245 if (ncpus > 1 && steps < SafepointSpinBeforeYield) {
duke@435 246 SpinPause() ; // MP-Polite spin
duke@435 247 } else
duke@435 248 if (steps < DeferThrSuspendLoopCount) {
duke@435 249 os::NakedYield() ;
duke@435 250 } else {
duke@435 251 os::yield_all(steps) ;
duke@435 252 // Alternately, the VM thread could transiently depress its scheduling priority or
duke@435 253 // transiently increase the priority of the tardy mutator(s).
duke@435 254 }
duke@435 255
duke@435 256 iterations ++ ;
duke@435 257 }
duke@435 258 assert(iterations < (uint)max_jint, "We have been iterating in the safepoint loop too long");
duke@435 259 }
duke@435 260 assert(still_running == 0, "sanity check");
duke@435 261
duke@435 262 if (PrintSafepointStatistics) {
duke@435 263 update_statistics_on_spin_end();
duke@435 264 }
duke@435 265
duke@435 266 // wait until all threads are stopped
duke@435 267 while (_waiting_to_block > 0) {
duke@435 268 if (TraceSafepoint) tty->print_cr("Waiting for %d thread(s) to block", _waiting_to_block);
duke@435 269 if (!SafepointTimeout || timeout_error_printed) {
duke@435 270 Safepoint_lock->wait(true); // true, means with no safepoint checks
duke@435 271 } else {
duke@435 272 // Compute remaining time
duke@435 273 jlong remaining_time = safepoint_limit_time - os::javaTimeNanos();
duke@435 274
duke@435 275 // If there is no remaining time, then there is an error
duke@435 276 if (remaining_time < 0 || Safepoint_lock->wait(true, remaining_time / MICROUNITS)) {
duke@435 277 print_safepoint_timeout(_blocking_timeout);
duke@435 278 }
duke@435 279 }
duke@435 280 }
duke@435 281 assert(_waiting_to_block == 0, "sanity check");
duke@435 282
duke@435 283 #ifndef PRODUCT
duke@435 284 if (SafepointTimeout) {
duke@435 285 jlong current_time = os::javaTimeNanos();
duke@435 286 if (safepoint_limit_time < current_time) {
duke@435 287 tty->print_cr("# SafepointSynchronize: Finished after "
duke@435 288 INT64_FORMAT_W(6) " ms",
duke@435 289 ((current_time - safepoint_limit_time) / MICROUNITS +
duke@435 290 SafepointTimeoutDelay));
duke@435 291 }
duke@435 292 }
duke@435 293 #endif
duke@435 294
duke@435 295 assert((_safepoint_counter & 0x1) == 0, "must be even");
duke@435 296 assert(Threads_lock->owned_by_self(), "must hold Threads_lock");
duke@435 297 _safepoint_counter ++;
duke@435 298
duke@435 299 // Record state
duke@435 300 _state = _synchronized;
duke@435 301
duke@435 302 OrderAccess::fence();
duke@435 303
duke@435 304 if (TraceSafepoint) {
duke@435 305 VM_Operation *op = VMThread::vm_operation();
duke@435 306 tty->print_cr("Entering safepoint region: %s", (op != NULL) ? op->name() : "no vm operation");
duke@435 307 }
duke@435 308
duke@435 309 RuntimeService::record_safepoint_synchronized();
duke@435 310 if (PrintSafepointStatistics) {
duke@435 311 update_statistics_on_sync_end(os::javaTimeNanos());
duke@435 312 }
duke@435 313
duke@435 314 // Call stuff that needs to be run when a safepoint is just about to be completed
duke@435 315 do_cleanup_tasks();
duke@435 316 }
duke@435 317 }
duke@435 318
duke@435 319 // Wake up all threads, so they are ready to resume execution after the safepoint
duke@435 320 // operation has been carried out
duke@435 321 void SafepointSynchronize::end() {
duke@435 322
duke@435 323 assert(Threads_lock->owned_by_self(), "must hold Threads_lock");
duke@435 324 assert((_safepoint_counter & 0x1) == 1, "must be odd");
duke@435 325 _safepoint_counter ++;
duke@435 326 // memory fence isn't required here since an odd _safepoint_counter
duke@435 327 // value can do no harm and a fence is issued below anyway.
duke@435 328
duke@435 329 DEBUG_ONLY(Thread* myThread = Thread::current();)
duke@435 330 assert(myThread->is_VM_thread(), "Only VM thread can execute a safepoint");
duke@435 331
duke@435 332 if (PrintSafepointStatistics) {
duke@435 333 end_statistics(os::javaTimeNanos());
duke@435 334 }
duke@435 335
duke@435 336 #ifdef ASSERT
duke@435 337 // A pending_exception cannot be installed during a safepoint. The threads
duke@435 338 // may install an async exception after they come back from a safepoint into
duke@435 339 // pending_exception after they unblock. But that should happen later.
duke@435 340 for(JavaThread *cur = Threads::first(); cur; cur = cur->next()) {
duke@435 341 assert (!(cur->has_pending_exception() &&
duke@435 342 cur->safepoint_state()->is_at_poll_safepoint()),
duke@435 343 "safepoint installed a pending exception");
duke@435 344 }
duke@435 345 #endif // ASSERT
duke@435 346
duke@435 347 if (PageArmed) {
duke@435 348 // Make polling safepoint aware
duke@435 349 os::make_polling_page_readable();
duke@435 350 PageArmed = 0 ;
duke@435 351 }
duke@435 352
duke@435 353 // Remove safepoint check from interpreter
duke@435 354 Interpreter::ignore_safepoints();
duke@435 355
duke@435 356 {
duke@435 357 MutexLocker mu(Safepoint_lock);
duke@435 358
duke@435 359 assert(_state == _synchronized, "must be synchronized before ending safepoint synchronization");
duke@435 360
duke@435 361 // Set to not synchronized, so the threads will not go into the signal_thread_blocked method
duke@435 362 // when they get restarted.
duke@435 363 _state = _not_synchronized;
duke@435 364 OrderAccess::fence();
duke@435 365
duke@435 366 if (TraceSafepoint) {
duke@435 367 tty->print_cr("Leaving safepoint region");
duke@435 368 }
duke@435 369
duke@435 370 // Start suspended threads
duke@435 371 for(JavaThread *current = Threads::first(); current; current = current->next()) {
twisti@1040 372 // A problem occurring on Solaris is when attempting to restart threads
duke@435 373 // the first #cpus - 1 go well, but then the VMThread is preempted when we get
duke@435 374 // to the next one (since it has been running the longest). We then have
duke@435 375 // to wait for a cpu to become available before we can continue restarting
duke@435 376 // threads.
duke@435 377 // FIXME: This causes the performance of the VM to degrade when active and with
duke@435 378 // large numbers of threads. Apparently this is due to the synchronous nature
duke@435 379 // of suspending threads.
duke@435 380 //
duke@435 381 // TODO-FIXME: the comments above are vestigial and no longer apply.
duke@435 382 // Furthermore, using solaris' schedctl in this particular context confers no benefit
duke@435 383 if (VMThreadHintNoPreempt) {
duke@435 384 os::hint_no_preempt();
duke@435 385 }
duke@435 386 ThreadSafepointState* cur_state = current->safepoint_state();
duke@435 387 assert(cur_state->type() != ThreadSafepointState::_running, "Thread not suspended at safepoint");
duke@435 388 cur_state->restart();
duke@435 389 assert(cur_state->is_running(), "safepoint state has not been reset");
duke@435 390 }
duke@435 391
duke@435 392 RuntimeService::record_safepoint_end();
duke@435 393
duke@435 394 // Release threads lock, so threads can be created/destroyed again. It will also starts all threads
duke@435 395 // blocked in signal_thread_blocked
duke@435 396 Threads_lock->unlock();
duke@435 397
duke@435 398 }
duke@435 399 #ifndef SERIALGC
duke@435 400 // If there are any concurrent GC threads resume them.
duke@435 401 if (UseConcMarkSweepGC) {
duke@435 402 ConcurrentMarkSweepThread::desynchronize(false);
ysr@1280 403 } else if (UseG1GC) {
duke@435 404 ConcurrentGCThread::safepoint_desynchronize();
duke@435 405 }
duke@435 406 #endif // SERIALGC
duke@435 407 }
duke@435 408
duke@435 409 bool SafepointSynchronize::is_cleanup_needed() {
duke@435 410 // Need a safepoint if some inline cache buffers is non-empty
duke@435 411 if (!InlineCacheBuffer::is_empty()) return true;
duke@435 412 return false;
duke@435 413 }
duke@435 414
duke@435 415 jlong CounterDecay::_last_timestamp = 0;
duke@435 416
duke@435 417 static void do_method(methodOop m) {
duke@435 418 m->invocation_counter()->decay();
duke@435 419 }
duke@435 420
duke@435 421 void CounterDecay::decay() {
duke@435 422 _last_timestamp = os::javaTimeMillis();
duke@435 423
duke@435 424 // This operation is going to be performed only at the end of a safepoint
duke@435 425 // and hence GC's will not be going on, all Java mutators are suspended
duke@435 426 // at this point and hence SystemDictionary_lock is also not needed.
duke@435 427 assert(SafepointSynchronize::is_at_safepoint(), "can only be executed at a safepoint");
duke@435 428 int nclasses = SystemDictionary::number_of_classes();
duke@435 429 double classes_per_tick = nclasses * (CounterDecayMinIntervalLength * 1e-3 /
duke@435 430 CounterHalfLifeTime);
duke@435 431 for (int i = 0; i < classes_per_tick; i++) {
duke@435 432 klassOop k = SystemDictionary::try_get_next_class();
duke@435 433 if (k != NULL && k->klass_part()->oop_is_instance()) {
duke@435 434 instanceKlass::cast(k)->methods_do(do_method);
duke@435 435 }
duke@435 436 }
duke@435 437 }
duke@435 438
duke@435 439 // Various cleaning tasks that should be done periodically at safepoints
duke@435 440 void SafepointSynchronize::do_cleanup_tasks() {
duke@435 441 jlong cleanup_time;
duke@435 442
duke@435 443 // Update fat-monitor pool, since this is a safepoint.
duke@435 444 if (TraceSafepoint) {
duke@435 445 cleanup_time = os::javaTimeNanos();
duke@435 446 }
duke@435 447
duke@435 448 ObjectSynchronizer::deflate_idle_monitors();
duke@435 449 InlineCacheBuffer::update_inline_caches();
duke@435 450 if(UseCounterDecay && CounterDecay::is_decay_needed()) {
duke@435 451 CounterDecay::decay();
duke@435 452 }
duke@435 453 NMethodSweeper::sweep();
duke@435 454
duke@435 455 if (TraceSafepoint) {
duke@435 456 tty->print_cr("do_cleanup_tasks takes "INT64_FORMAT_W(6) "ms",
duke@435 457 (os::javaTimeNanos() - cleanup_time) / MICROUNITS);
duke@435 458 }
duke@435 459 }
duke@435 460
duke@435 461
duke@435 462 bool SafepointSynchronize::safepoint_safe(JavaThread *thread, JavaThreadState state) {
duke@435 463 switch(state) {
duke@435 464 case _thread_in_native:
duke@435 465 // native threads are safe if they have no java stack or have walkable stack
duke@435 466 return !thread->has_last_Java_frame() || thread->frame_anchor()->walkable();
duke@435 467
duke@435 468 // blocked threads should have already have walkable stack
duke@435 469 case _thread_blocked:
duke@435 470 assert(!thread->has_last_Java_frame() || thread->frame_anchor()->walkable(), "blocked and not walkable");
duke@435 471 return true;
duke@435 472
duke@435 473 default:
duke@435 474 return false;
duke@435 475 }
duke@435 476 }
duke@435 477
duke@435 478
duke@435 479 // -------------------------------------------------------------------------------------------------------
duke@435 480 // Implementation of Safepoint callback point
duke@435 481
duke@435 482 void SafepointSynchronize::block(JavaThread *thread) {
duke@435 483 assert(thread != NULL, "thread must be set");
duke@435 484 assert(thread->is_Java_thread(), "not a Java thread");
duke@435 485
duke@435 486 // Threads shouldn't block if they are in the middle of printing, but...
duke@435 487 ttyLocker::break_tty_lock_for_safepoint(os::current_thread_id());
duke@435 488
duke@435 489 // Only bail from the block() call if the thread is gone from the
duke@435 490 // thread list; starting to exit should still block.
duke@435 491 if (thread->is_terminated()) {
duke@435 492 // block current thread if we come here from native code when VM is gone
duke@435 493 thread->block_if_vm_exited();
duke@435 494
duke@435 495 // otherwise do nothing
duke@435 496 return;
duke@435 497 }
duke@435 498
duke@435 499 JavaThreadState state = thread->thread_state();
duke@435 500 thread->frame_anchor()->make_walkable(thread);
duke@435 501
duke@435 502 // Check that we have a valid thread_state at this point
duke@435 503 switch(state) {
duke@435 504 case _thread_in_vm_trans:
duke@435 505 case _thread_in_Java: // From compiled code
duke@435 506
duke@435 507 // We are highly likely to block on the Safepoint_lock. In order to avoid blocking in this case,
duke@435 508 // we pretend we are still in the VM.
duke@435 509 thread->set_thread_state(_thread_in_vm);
duke@435 510
duke@435 511 if (is_synchronizing()) {
duke@435 512 Atomic::inc (&TryingToBlock) ;
duke@435 513 }
duke@435 514
duke@435 515 // We will always be holding the Safepoint_lock when we are examine the state
duke@435 516 // of a thread. Hence, the instructions between the Safepoint_lock->lock() and
duke@435 517 // Safepoint_lock->unlock() are happening atomic with regards to the safepoint code
duke@435 518 Safepoint_lock->lock_without_safepoint_check();
duke@435 519 if (is_synchronizing()) {
duke@435 520 // Decrement the number of threads to wait for and signal vm thread
duke@435 521 assert(_waiting_to_block > 0, "sanity check");
duke@435 522 _waiting_to_block--;
duke@435 523 thread->safepoint_state()->set_has_called_back(true);
duke@435 524
duke@435 525 // Consider (_waiting_to_block < 2) to pipeline the wakeup of the VM thread
duke@435 526 if (_waiting_to_block == 0) {
duke@435 527 Safepoint_lock->notify_all();
duke@435 528 }
duke@435 529 }
duke@435 530
duke@435 531 // We transition the thread to state _thread_blocked here, but
duke@435 532 // we can't do our usual check for external suspension and then
duke@435 533 // self-suspend after the lock_without_safepoint_check() call
duke@435 534 // below because we are often called during transitions while
duke@435 535 // we hold different locks. That would leave us suspended while
duke@435 536 // holding a resource which results in deadlocks.
duke@435 537 thread->set_thread_state(_thread_blocked);
duke@435 538 Safepoint_lock->unlock();
duke@435 539
duke@435 540 // We now try to acquire the threads lock. Since this lock is hold by the VM thread during
duke@435 541 // the entire safepoint, the threads will all line up here during the safepoint.
duke@435 542 Threads_lock->lock_without_safepoint_check();
duke@435 543 // restore original state. This is important if the thread comes from compiled code, so it
duke@435 544 // will continue to execute with the _thread_in_Java state.
duke@435 545 thread->set_thread_state(state);
duke@435 546 Threads_lock->unlock();
duke@435 547 break;
duke@435 548
duke@435 549 case _thread_in_native_trans:
duke@435 550 case _thread_blocked_trans:
duke@435 551 case _thread_new_trans:
duke@435 552 if (thread->safepoint_state()->type() == ThreadSafepointState::_call_back) {
duke@435 553 thread->print_thread_state();
duke@435 554 fatal("Deadlock in safepoint code. "
duke@435 555 "Should have called back to the VM before blocking.");
duke@435 556 }
duke@435 557
duke@435 558 // We transition the thread to state _thread_blocked here, but
duke@435 559 // we can't do our usual check for external suspension and then
duke@435 560 // self-suspend after the lock_without_safepoint_check() call
duke@435 561 // below because we are often called during transitions while
duke@435 562 // we hold different locks. That would leave us suspended while
duke@435 563 // holding a resource which results in deadlocks.
duke@435 564 thread->set_thread_state(_thread_blocked);
duke@435 565
duke@435 566 // It is not safe to suspend a thread if we discover it is in _thread_in_native_trans. Hence,
duke@435 567 // the safepoint code might still be waiting for it to block. We need to change the state here,
duke@435 568 // so it can see that it is at a safepoint.
duke@435 569
duke@435 570 // Block until the safepoint operation is completed.
duke@435 571 Threads_lock->lock_without_safepoint_check();
duke@435 572
duke@435 573 // Restore state
duke@435 574 thread->set_thread_state(state);
duke@435 575
duke@435 576 Threads_lock->unlock();
duke@435 577 break;
duke@435 578
duke@435 579 default:
duke@435 580 fatal1("Illegal threadstate encountered: %d", state);
duke@435 581 }
duke@435 582
duke@435 583 // Check for pending. async. exceptions or suspends - except if the
duke@435 584 // thread was blocked inside the VM. has_special_runtime_exit_condition()
duke@435 585 // is called last since it grabs a lock and we only want to do that when
duke@435 586 // we must.
duke@435 587 //
duke@435 588 // Note: we never deliver an async exception at a polling point as the
duke@435 589 // compiler may not have an exception handler for it. The polling
duke@435 590 // code will notice the async and deoptimize and the exception will
duke@435 591 // be delivered. (Polling at a return point is ok though). Sure is
duke@435 592 // a lot of bother for a deprecated feature...
duke@435 593 //
duke@435 594 // We don't deliver an async exception if the thread state is
duke@435 595 // _thread_in_native_trans so JNI functions won't be called with
duke@435 596 // a surprising pending exception. If the thread state is going back to java,
duke@435 597 // async exception is checked in check_special_condition_for_native_trans().
duke@435 598
duke@435 599 if (state != _thread_blocked_trans &&
duke@435 600 state != _thread_in_vm_trans &&
duke@435 601 thread->has_special_runtime_exit_condition()) {
duke@435 602 thread->handle_special_runtime_exit_condition(
duke@435 603 !thread->is_at_poll_safepoint() && (state != _thread_in_native_trans));
duke@435 604 }
duke@435 605 }
duke@435 606
duke@435 607 // ------------------------------------------------------------------------------------------------------
duke@435 608 // Exception handlers
duke@435 609
duke@435 610 #ifndef PRODUCT
duke@435 611 #ifdef _LP64
duke@435 612 #define PTR_PAD ""
duke@435 613 #else
duke@435 614 #define PTR_PAD " "
duke@435 615 #endif
duke@435 616
duke@435 617 static void print_ptrs(intptr_t oldptr, intptr_t newptr, bool wasoop) {
duke@435 618 bool is_oop = newptr ? ((oop)newptr)->is_oop() : false;
duke@435 619 tty->print_cr(PTR_FORMAT PTR_PAD " %s %c " PTR_FORMAT PTR_PAD " %s %s",
duke@435 620 oldptr, wasoop?"oop":" ", oldptr == newptr ? ' ' : '!',
duke@435 621 newptr, is_oop?"oop":" ", (wasoop && !is_oop) ? "STALE" : ((wasoop==false&&is_oop==false&&oldptr !=newptr)?"STOMP":" "));
duke@435 622 }
duke@435 623
duke@435 624 static void print_longs(jlong oldptr, jlong newptr, bool wasoop) {
duke@435 625 bool is_oop = newptr ? ((oop)(intptr_t)newptr)->is_oop() : false;
duke@435 626 tty->print_cr(PTR64_FORMAT " %s %c " PTR64_FORMAT " %s %s",
duke@435 627 oldptr, wasoop?"oop":" ", oldptr == newptr ? ' ' : '!',
duke@435 628 newptr, is_oop?"oop":" ", (wasoop && !is_oop) ? "STALE" : ((wasoop==false&&is_oop==false&&oldptr !=newptr)?"STOMP":" "));
duke@435 629 }
duke@435 630
duke@435 631 #ifdef SPARC
duke@435 632 static void print_me(intptr_t *new_sp, intptr_t *old_sp, bool *was_oops) {
duke@435 633 #ifdef _LP64
duke@435 634 tty->print_cr("--------+------address-----+------before-----------+-------after----------+");
duke@435 635 const int incr = 1; // Increment to skip a long, in units of intptr_t
duke@435 636 #else
duke@435 637 tty->print_cr("--------+--address-+------before-----------+-------after----------+");
duke@435 638 const int incr = 2; // Increment to skip a long, in units of intptr_t
duke@435 639 #endif
duke@435 640 tty->print_cr("---SP---|");
duke@435 641 for( int i=0; i<16; i++ ) {
duke@435 642 tty->print("blob %c%d |"PTR_FORMAT" ","LO"[i>>3],i&7,new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++); }
duke@435 643 tty->print_cr("--------|");
duke@435 644 for( int i1=0; i1<frame::memory_parameter_word_sp_offset-16; i1++ ) {
duke@435 645 tty->print("argv pad|"PTR_FORMAT" ",new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++); }
duke@435 646 tty->print(" pad|"PTR_FORMAT" ",new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++);
duke@435 647 tty->print_cr("--------|");
duke@435 648 tty->print(" G1 |"PTR_FORMAT" ",new_sp); print_longs(*(jlong*)old_sp,*(jlong*)new_sp,was_oops[incr-1]); old_sp += incr; new_sp += incr; was_oops += incr;
duke@435 649 tty->print(" G3 |"PTR_FORMAT" ",new_sp); print_longs(*(jlong*)old_sp,*(jlong*)new_sp,was_oops[incr-1]); old_sp += incr; new_sp += incr; was_oops += incr;
duke@435 650 tty->print(" G4 |"PTR_FORMAT" ",new_sp); print_longs(*(jlong*)old_sp,*(jlong*)new_sp,was_oops[incr-1]); old_sp += incr; new_sp += incr; was_oops += incr;
duke@435 651 tty->print(" G5 |"PTR_FORMAT" ",new_sp); print_longs(*(jlong*)old_sp,*(jlong*)new_sp,was_oops[incr-1]); old_sp += incr; new_sp += incr; was_oops += incr;
duke@435 652 tty->print_cr(" FSR |"PTR_FORMAT" "PTR64_FORMAT" "PTR64_FORMAT,new_sp,*(jlong*)old_sp,*(jlong*)new_sp);
duke@435 653 old_sp += incr; new_sp += incr; was_oops += incr;
duke@435 654 // Skip the floats
duke@435 655 tty->print_cr("--Float-|"PTR_FORMAT,new_sp);
duke@435 656 tty->print_cr("---FP---|");
duke@435 657 old_sp += incr*32; new_sp += incr*32; was_oops += incr*32;
duke@435 658 for( int i2=0; i2<16; i2++ ) {
duke@435 659 tty->print("call %c%d |"PTR_FORMAT" ","LI"[i2>>3],i2&7,new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++); }
duke@435 660 tty->print_cr("");
duke@435 661 }
duke@435 662 #endif // SPARC
duke@435 663 #endif // PRODUCT
duke@435 664
duke@435 665
duke@435 666 void SafepointSynchronize::handle_polling_page_exception(JavaThread *thread) {
duke@435 667 assert(thread->is_Java_thread(), "polling reference encountered by VM thread");
duke@435 668 assert(thread->thread_state() == _thread_in_Java, "should come from Java code");
duke@435 669 assert(SafepointSynchronize::is_synchronizing(), "polling encountered outside safepoint synchronization");
duke@435 670
duke@435 671 // Uncomment this to get some serious before/after printing of the
duke@435 672 // Sparc safepoint-blob frame structure.
duke@435 673 /*
duke@435 674 intptr_t* sp = thread->last_Java_sp();
duke@435 675 intptr_t stack_copy[150];
duke@435 676 for( int i=0; i<150; i++ ) stack_copy[i] = sp[i];
duke@435 677 bool was_oops[150];
duke@435 678 for( int i=0; i<150; i++ )
duke@435 679 was_oops[i] = stack_copy[i] ? ((oop)stack_copy[i])->is_oop() : false;
duke@435 680 */
duke@435 681
duke@435 682 if (ShowSafepointMsgs) {
duke@435 683 tty->print("handle_polling_page_exception: ");
duke@435 684 }
duke@435 685
duke@435 686 if (PrintSafepointStatistics) {
duke@435 687 inc_page_trap_count();
duke@435 688 }
duke@435 689
duke@435 690 ThreadSafepointState* state = thread->safepoint_state();
duke@435 691
duke@435 692 state->handle_polling_page_exception();
duke@435 693 // print_me(sp,stack_copy,was_oops);
duke@435 694 }
duke@435 695
duke@435 696
duke@435 697 void SafepointSynchronize::print_safepoint_timeout(SafepointTimeoutReason reason) {
duke@435 698 if (!timeout_error_printed) {
duke@435 699 timeout_error_printed = true;
duke@435 700 // Print out the thread infor which didn't reach the safepoint for debugging
duke@435 701 // purposes (useful when there are lots of threads in the debugger).
duke@435 702 tty->print_cr("");
duke@435 703 tty->print_cr("# SafepointSynchronize::begin: Timeout detected:");
duke@435 704 if (reason == _spinning_timeout) {
duke@435 705 tty->print_cr("# SafepointSynchronize::begin: Timed out while spinning to reach a safepoint.");
duke@435 706 } else if (reason == _blocking_timeout) {
duke@435 707 tty->print_cr("# SafepointSynchronize::begin: Timed out while waiting for threads to stop.");
duke@435 708 }
duke@435 709
duke@435 710 tty->print_cr("# SafepointSynchronize::begin: Threads which did not reach the safepoint:");
duke@435 711 ThreadSafepointState *cur_state;
duke@435 712 ResourceMark rm;
duke@435 713 for(JavaThread *cur_thread = Threads::first(); cur_thread;
duke@435 714 cur_thread = cur_thread->next()) {
duke@435 715 cur_state = cur_thread->safepoint_state();
duke@435 716
duke@435 717 if (cur_thread->thread_state() != _thread_blocked &&
duke@435 718 ((reason == _spinning_timeout && cur_state->is_running()) ||
duke@435 719 (reason == _blocking_timeout && !cur_state->has_called_back()))) {
duke@435 720 tty->print("# ");
duke@435 721 cur_thread->print();
duke@435 722 tty->print_cr("");
duke@435 723 }
duke@435 724 }
duke@435 725 tty->print_cr("# SafepointSynchronize::begin: (End of list)");
duke@435 726 }
duke@435 727
duke@435 728 // To debug the long safepoint, specify both DieOnSafepointTimeout &
duke@435 729 // ShowMessageBoxOnError.
duke@435 730 if (DieOnSafepointTimeout) {
duke@435 731 char msg[1024];
duke@435 732 VM_Operation *op = VMThread::vm_operation();
xlu@948 733 sprintf(msg, "Safepoint sync time longer than " INTX_FORMAT "ms detected when executing %s.",
duke@435 734 SafepointTimeoutDelay,
duke@435 735 op != NULL ? op->name() : "no vm operation");
duke@435 736 fatal(msg);
duke@435 737 }
duke@435 738 }
duke@435 739
duke@435 740
duke@435 741 // -------------------------------------------------------------------------------------------------------
duke@435 742 // Implementation of ThreadSafepointState
duke@435 743
duke@435 744 ThreadSafepointState::ThreadSafepointState(JavaThread *thread) {
duke@435 745 _thread = thread;
duke@435 746 _type = _running;
duke@435 747 _has_called_back = false;
duke@435 748 _at_poll_safepoint = false;
duke@435 749 }
duke@435 750
duke@435 751 void ThreadSafepointState::create(JavaThread *thread) {
duke@435 752 ThreadSafepointState *state = new ThreadSafepointState(thread);
duke@435 753 thread->set_safepoint_state(state);
duke@435 754 }
duke@435 755
duke@435 756 void ThreadSafepointState::destroy(JavaThread *thread) {
duke@435 757 if (thread->safepoint_state()) {
duke@435 758 delete(thread->safepoint_state());
duke@435 759 thread->set_safepoint_state(NULL);
duke@435 760 }
duke@435 761 }
duke@435 762
duke@435 763 void ThreadSafepointState::examine_state_of_thread() {
duke@435 764 assert(is_running(), "better be running or just have hit safepoint poll");
duke@435 765
duke@435 766 JavaThreadState state = _thread->thread_state();
duke@435 767
duke@435 768 // Check for a thread that is suspended. Note that thread resume tries
duke@435 769 // to grab the Threads_lock which we own here, so a thread cannot be
duke@435 770 // resumed during safepoint synchronization.
duke@435 771
dcubed@1414 772 // We check to see if this thread is suspended without locking to
dcubed@1414 773 // avoid deadlocking with a third thread that is waiting for this
dcubed@1414 774 // thread to be suspended. The third thread can notice the safepoint
dcubed@1414 775 // that we're trying to start at the beginning of its SR_lock->wait()
dcubed@1414 776 // call. If that happens, then the third thread will block on the
dcubed@1414 777 // safepoint while still holding the underlying SR_lock. We won't be
dcubed@1414 778 // able to get the SR_lock and we'll deadlock.
dcubed@1414 779 //
dcubed@1414 780 // We don't need to grab the SR_lock here for two reasons:
dcubed@1414 781 // 1) The suspend flags are both volatile and are set with an
dcubed@1414 782 // Atomic::cmpxchg() call so we should see the suspended
dcubed@1414 783 // state right away.
dcubed@1414 784 // 2) We're being called from the safepoint polling loop; if
dcubed@1414 785 // we don't see the suspended state on this iteration, then
dcubed@1414 786 // we'll come around again.
dcubed@1414 787 //
dcubed@1414 788 bool is_suspended = _thread->is_ext_suspended();
duke@435 789 if (is_suspended) {
duke@435 790 roll_forward(_at_safepoint);
duke@435 791 return;
duke@435 792 }
duke@435 793
duke@435 794 // Some JavaThread states have an initial safepoint state of
duke@435 795 // running, but are actually at a safepoint. We will happily
duke@435 796 // agree and update the safepoint state here.
duke@435 797 if (SafepointSynchronize::safepoint_safe(_thread, state)) {
duke@435 798 roll_forward(_at_safepoint);
duke@435 799 return;
duke@435 800 }
duke@435 801
duke@435 802 if (state == _thread_in_vm) {
duke@435 803 roll_forward(_call_back);
duke@435 804 return;
duke@435 805 }
duke@435 806
duke@435 807 // All other thread states will continue to run until they
duke@435 808 // transition and self-block in state _blocked
duke@435 809 // Safepoint polling in compiled code causes the Java threads to do the same.
duke@435 810 // Note: new threads may require a malloc so they must be allowed to finish
duke@435 811
duke@435 812 assert(is_running(), "examine_state_of_thread on non-running thread");
duke@435 813 return;
duke@435 814 }
duke@435 815
duke@435 816 // Returns true is thread could not be rolled forward at present position.
duke@435 817 void ThreadSafepointState::roll_forward(suspend_type type) {
duke@435 818 _type = type;
duke@435 819
duke@435 820 switch(_type) {
duke@435 821 case _at_safepoint:
duke@435 822 SafepointSynchronize::signal_thread_at_safepoint();
duke@435 823 break;
duke@435 824
duke@435 825 case _call_back:
duke@435 826 set_has_called_back(false);
duke@435 827 break;
duke@435 828
duke@435 829 case _running:
duke@435 830 default:
duke@435 831 ShouldNotReachHere();
duke@435 832 }
duke@435 833 }
duke@435 834
duke@435 835 void ThreadSafepointState::restart() {
duke@435 836 switch(type()) {
duke@435 837 case _at_safepoint:
duke@435 838 case _call_back:
duke@435 839 break;
duke@435 840
duke@435 841 case _running:
duke@435 842 default:
duke@435 843 tty->print_cr("restart thread "INTPTR_FORMAT" with state %d",
duke@435 844 _thread, _type);
duke@435 845 _thread->print();
duke@435 846 ShouldNotReachHere();
duke@435 847 }
duke@435 848 _type = _running;
duke@435 849 set_has_called_back(false);
duke@435 850 }
duke@435 851
duke@435 852
duke@435 853 void ThreadSafepointState::print_on(outputStream *st) const {
duke@435 854 const char *s;
duke@435 855
duke@435 856 switch(_type) {
duke@435 857 case _running : s = "_running"; break;
duke@435 858 case _at_safepoint : s = "_at_safepoint"; break;
duke@435 859 case _call_back : s = "_call_back"; break;
duke@435 860 default:
duke@435 861 ShouldNotReachHere();
duke@435 862 }
duke@435 863
duke@435 864 st->print_cr("Thread: " INTPTR_FORMAT
duke@435 865 " [0x%2x] State: %s _has_called_back %d _at_poll_safepoint %d",
duke@435 866 _thread, _thread->osthread()->thread_id(), s, _has_called_back,
duke@435 867 _at_poll_safepoint);
duke@435 868
duke@435 869 _thread->print_thread_state_on(st);
duke@435 870 }
duke@435 871
duke@435 872
duke@435 873 // ---------------------------------------------------------------------------------------------------------------------
duke@435 874
duke@435 875 // Block the thread at the safepoint poll or poll return.
duke@435 876 void ThreadSafepointState::handle_polling_page_exception() {
duke@435 877
duke@435 878 // Check state. block() will set thread state to thread_in_vm which will
duke@435 879 // cause the safepoint state _type to become _call_back.
duke@435 880 assert(type() == ThreadSafepointState::_running,
duke@435 881 "polling page exception on thread not running state");
duke@435 882
duke@435 883 // Step 1: Find the nmethod from the return address
duke@435 884 if (ShowSafepointMsgs && Verbose) {
duke@435 885 tty->print_cr("Polling page exception at " INTPTR_FORMAT, thread()->saved_exception_pc());
duke@435 886 }
duke@435 887 address real_return_addr = thread()->saved_exception_pc();
duke@435 888
duke@435 889 CodeBlob *cb = CodeCache::find_blob(real_return_addr);
duke@435 890 assert(cb != NULL && cb->is_nmethod(), "return address should be in nmethod");
duke@435 891 nmethod* nm = (nmethod*)cb;
duke@435 892
duke@435 893 // Find frame of caller
duke@435 894 frame stub_fr = thread()->last_frame();
duke@435 895 CodeBlob* stub_cb = stub_fr.cb();
duke@435 896 assert(stub_cb->is_safepoint_stub(), "must be a safepoint stub");
duke@435 897 RegisterMap map(thread(), true);
duke@435 898 frame caller_fr = stub_fr.sender(&map);
duke@435 899
duke@435 900 // Should only be poll_return or poll
duke@435 901 assert( nm->is_at_poll_or_poll_return(real_return_addr), "should not be at call" );
duke@435 902
duke@435 903 // This is a poll immediately before a return. The exception handling code
duke@435 904 // has already had the effect of causing the return to occur, so the execution
duke@435 905 // will continue immediately after the call. In addition, the oopmap at the
duke@435 906 // return point does not mark the return value as an oop (if it is), so
duke@435 907 // it needs a handle here to be updated.
duke@435 908 if( nm->is_at_poll_return(real_return_addr) ) {
duke@435 909 // See if return type is an oop.
duke@435 910 bool return_oop = nm->method()->is_returning_oop();
duke@435 911 Handle return_value;
duke@435 912 if (return_oop) {
duke@435 913 // The oop result has been saved on the stack together with all
duke@435 914 // the other registers. In order to preserve it over GCs we need
duke@435 915 // to keep it in a handle.
duke@435 916 oop result = caller_fr.saved_oop_result(&map);
duke@435 917 assert(result == NULL || result->is_oop(), "must be oop");
duke@435 918 return_value = Handle(thread(), result);
duke@435 919 assert(Universe::heap()->is_in_or_null(result), "must be heap pointer");
duke@435 920 }
duke@435 921
duke@435 922 // Block the thread
duke@435 923 SafepointSynchronize::block(thread());
duke@435 924
duke@435 925 // restore oop result, if any
duke@435 926 if (return_oop) {
duke@435 927 caller_fr.set_saved_oop_result(&map, return_value());
duke@435 928 }
duke@435 929 }
duke@435 930
duke@435 931 // This is a safepoint poll. Verify the return address and block.
duke@435 932 else {
duke@435 933 set_at_poll_safepoint(true);
duke@435 934
duke@435 935 // verify the blob built the "return address" correctly
duke@435 936 assert(real_return_addr == caller_fr.pc(), "must match");
duke@435 937
duke@435 938 // Block the thread
duke@435 939 SafepointSynchronize::block(thread());
duke@435 940 set_at_poll_safepoint(false);
duke@435 941
duke@435 942 // If we have a pending async exception deoptimize the frame
duke@435 943 // as otherwise we may never deliver it.
duke@435 944 if (thread()->has_async_condition()) {
duke@435 945 ThreadInVMfromJavaNoAsyncException __tiv(thread());
duke@435 946 VM_DeoptimizeFrame deopt(thread(), caller_fr.id());
duke@435 947 VMThread::execute(&deopt);
duke@435 948 }
duke@435 949
duke@435 950 // If an exception has been installed we must check for a pending deoptimization
duke@435 951 // Deoptimize frame if exception has been thrown.
duke@435 952
duke@435 953 if (thread()->has_pending_exception() ) {
duke@435 954 RegisterMap map(thread(), true);
duke@435 955 frame caller_fr = stub_fr.sender(&map);
duke@435 956 if (caller_fr.is_deoptimized_frame()) {
duke@435 957 // The exception patch will destroy registers that are still
duke@435 958 // live and will be needed during deoptimization. Defer the
duke@435 959 // Async exception should have defered the exception until the
duke@435 960 // next safepoint which will be detected when we get into
duke@435 961 // the interpreter so if we have an exception now things
duke@435 962 // are messed up.
duke@435 963
duke@435 964 fatal("Exception installed and deoptimization is pending");
duke@435 965 }
duke@435 966 }
duke@435 967 }
duke@435 968 }
duke@435 969
duke@435 970
duke@435 971 //
duke@435 972 // Statistics & Instrumentations
duke@435 973 //
duke@435 974 SafepointSynchronize::SafepointStats* SafepointSynchronize::_safepoint_stats = NULL;
duke@435 975 int SafepointSynchronize::_cur_stat_index = 0;
duke@435 976 julong SafepointSynchronize::_safepoint_reasons[VM_Operation::VMOp_Terminating];
duke@435 977 julong SafepointSynchronize::_coalesced_vmop_count = 0;
duke@435 978 jlong SafepointSynchronize::_max_sync_time = 0;
duke@435 979
duke@435 980 // last_safepoint_start_time records the start time of last safepoint.
duke@435 981 static jlong last_safepoint_start_time = 0;
duke@435 982 static jlong sync_end_time = 0;
duke@435 983 static bool need_to_track_page_armed_status = false;
duke@435 984 static bool init_done = false;
duke@435 985
duke@435 986 void SafepointSynchronize::deferred_initialize_stat() {
duke@435 987 if (init_done) return;
duke@435 988
duke@435 989 if (PrintSafepointStatisticsCount <= 0) {
duke@435 990 fatal("Wrong PrintSafepointStatisticsCount");
duke@435 991 }
duke@435 992
duke@435 993 // If PrintSafepointStatisticsTimeout is specified, the statistics data will
duke@435 994 // be printed right away, in which case, _safepoint_stats will regress to
duke@435 995 // a single element array. Otherwise, it is a circular ring buffer with default
duke@435 996 // size of PrintSafepointStatisticsCount.
duke@435 997 int stats_array_size;
duke@435 998 if (PrintSafepointStatisticsTimeout > 0) {
duke@435 999 stats_array_size = 1;
duke@435 1000 PrintSafepointStatistics = true;
duke@435 1001 } else {
duke@435 1002 stats_array_size = PrintSafepointStatisticsCount;
duke@435 1003 }
duke@435 1004 _safepoint_stats = (SafepointStats*)os::malloc(stats_array_size
duke@435 1005 * sizeof(SafepointStats));
duke@435 1006 guarantee(_safepoint_stats != NULL,
duke@435 1007 "not enough memory for safepoint instrumentation data");
duke@435 1008
duke@435 1009 if (UseCompilerSafepoints && DeferPollingPageLoopCount >= 0) {
duke@435 1010 need_to_track_page_armed_status = true;
duke@435 1011 }
duke@435 1012
duke@435 1013 tty->print(" vmop_name "
duke@435 1014 "[threads: total initially_running wait_to_block] ");
duke@435 1015 tty->print("[time: spin block sync] "
duke@435 1016 "[vmop_time time_elapsed] ");
duke@435 1017
duke@435 1018 // no page armed status printed out if it is always armed.
duke@435 1019 if (need_to_track_page_armed_status) {
duke@435 1020 tty->print("page_armed ");
duke@435 1021 }
duke@435 1022
duke@435 1023 tty->print_cr("page_trap_count");
duke@435 1024
duke@435 1025 init_done = true;
duke@435 1026 }
duke@435 1027
duke@435 1028 void SafepointSynchronize::begin_statistics(int nof_threads, int nof_running) {
duke@435 1029 deferred_initialize_stat();
duke@435 1030
duke@435 1031 SafepointStats *spstat = &_safepoint_stats[_cur_stat_index];
duke@435 1032
duke@435 1033 VM_Operation *op = VMThread::vm_operation();
duke@435 1034 spstat->_vmop_type = (op != NULL ? op->type() : -1);
duke@435 1035 if (op != NULL) {
duke@435 1036 _safepoint_reasons[spstat->_vmop_type]++;
duke@435 1037 }
duke@435 1038
duke@435 1039 spstat->_nof_total_threads = nof_threads;
duke@435 1040 spstat->_nof_initial_running_threads = nof_running;
duke@435 1041 spstat->_nof_threads_hit_page_trap = 0;
duke@435 1042
duke@435 1043 // Records the start time of spinning. The real time spent on spinning
duke@435 1044 // will be adjusted when spin is done. Same trick is applied for time
duke@435 1045 // spent on waiting for threads to block.
duke@435 1046 if (nof_running != 0) {
duke@435 1047 spstat->_time_to_spin = os::javaTimeNanos();
duke@435 1048 } else {
duke@435 1049 spstat->_time_to_spin = 0;
duke@435 1050 }
duke@435 1051
duke@435 1052 if (last_safepoint_start_time == 0) {
duke@435 1053 spstat->_time_elapsed_since_last_safepoint = 0;
duke@435 1054 } else {
duke@435 1055 spstat->_time_elapsed_since_last_safepoint = _last_safepoint -
duke@435 1056 last_safepoint_start_time;
duke@435 1057 }
duke@435 1058 last_safepoint_start_time = _last_safepoint;
duke@435 1059 }
duke@435 1060
duke@435 1061 void SafepointSynchronize::update_statistics_on_spin_end() {
duke@435 1062 SafepointStats *spstat = &_safepoint_stats[_cur_stat_index];
duke@435 1063
duke@435 1064 jlong cur_time = os::javaTimeNanos();
duke@435 1065
duke@435 1066 spstat->_nof_threads_wait_to_block = _waiting_to_block;
duke@435 1067 if (spstat->_nof_initial_running_threads != 0) {
duke@435 1068 spstat->_time_to_spin = cur_time - spstat->_time_to_spin;
duke@435 1069 }
duke@435 1070
duke@435 1071 if (need_to_track_page_armed_status) {
duke@435 1072 spstat->_page_armed = (PageArmed == 1);
duke@435 1073 }
duke@435 1074
duke@435 1075 // Records the start time of waiting for to block. Updated when block is done.
duke@435 1076 if (_waiting_to_block != 0) {
duke@435 1077 spstat->_time_to_wait_to_block = cur_time;
duke@435 1078 } else {
duke@435 1079 spstat->_time_to_wait_to_block = 0;
duke@435 1080 }
duke@435 1081 }
duke@435 1082
duke@435 1083 void SafepointSynchronize::update_statistics_on_sync_end(jlong end_time) {
duke@435 1084 SafepointStats *spstat = &_safepoint_stats[_cur_stat_index];
duke@435 1085
duke@435 1086 if (spstat->_nof_threads_wait_to_block != 0) {
duke@435 1087 spstat->_time_to_wait_to_block = end_time -
duke@435 1088 spstat->_time_to_wait_to_block;
duke@435 1089 }
duke@435 1090
duke@435 1091 // Records the end time of sync which will be used to calculate the total
duke@435 1092 // vm operation time. Again, the real time spending in syncing will be deducted
duke@435 1093 // from the start of the sync time later when end_statistics is called.
duke@435 1094 spstat->_time_to_sync = end_time - _last_safepoint;
duke@435 1095 if (spstat->_time_to_sync > _max_sync_time) {
duke@435 1096 _max_sync_time = spstat->_time_to_sync;
duke@435 1097 }
duke@435 1098 sync_end_time = end_time;
duke@435 1099 }
duke@435 1100
duke@435 1101 void SafepointSynchronize::end_statistics(jlong vmop_end_time) {
duke@435 1102 SafepointStats *spstat = &_safepoint_stats[_cur_stat_index];
duke@435 1103
duke@435 1104 // Update the vm operation time.
duke@435 1105 spstat->_time_to_exec_vmop = vmop_end_time - sync_end_time;
duke@435 1106 // Only the sync time longer than the specified
duke@435 1107 // PrintSafepointStatisticsTimeout will be printed out right away.
duke@435 1108 // By default, it is -1 meaning all samples will be put into the list.
duke@435 1109 if ( PrintSafepointStatisticsTimeout > 0) {
duke@435 1110 if (spstat->_time_to_sync > PrintSafepointStatisticsTimeout * MICROUNITS) {
duke@435 1111 print_statistics();
duke@435 1112 }
duke@435 1113 } else {
duke@435 1114 // The safepoint statistics will be printed out when the _safepoin_stats
duke@435 1115 // array fills up.
duke@435 1116 if (_cur_stat_index != PrintSafepointStatisticsCount - 1) {
duke@435 1117 _cur_stat_index ++;
duke@435 1118 } else {
duke@435 1119 print_statistics();
duke@435 1120 _cur_stat_index = 0;
duke@435 1121 tty->print_cr("");
duke@435 1122 }
duke@435 1123 }
duke@435 1124 }
duke@435 1125
duke@435 1126 void SafepointSynchronize::print_statistics() {
duke@435 1127 int index;
duke@435 1128 SafepointStats* sstats = _safepoint_stats;
duke@435 1129
duke@435 1130 for (index = 0; index <= _cur_stat_index; index++) {
duke@435 1131 sstats = &_safepoint_stats[index];
duke@435 1132 tty->print("%-28s ["
duke@435 1133 INT32_FORMAT_W(8)INT32_FORMAT_W(11)INT32_FORMAT_W(15)
duke@435 1134 "] ",
duke@435 1135 sstats->_vmop_type == -1 ? "no vm operation" :
duke@435 1136 VM_Operation::name(sstats->_vmop_type),
duke@435 1137 sstats->_nof_total_threads,
duke@435 1138 sstats->_nof_initial_running_threads,
duke@435 1139 sstats->_nof_threads_wait_to_block);
duke@435 1140 // "/ MICROUNITS " is to convert the unit from nanos to millis.
duke@435 1141 tty->print(" ["
duke@435 1142 INT64_FORMAT_W(6)INT64_FORMAT_W(6)INT64_FORMAT_W(6)
duke@435 1143 "] "
duke@435 1144 "["INT64_FORMAT_W(6)INT64_FORMAT_W(9) "] ",
duke@435 1145 sstats->_time_to_spin / MICROUNITS,
duke@435 1146 sstats->_time_to_wait_to_block / MICROUNITS,
duke@435 1147 sstats->_time_to_sync / MICROUNITS,
duke@435 1148 sstats->_time_to_exec_vmop / MICROUNITS,
duke@435 1149 sstats->_time_elapsed_since_last_safepoint / MICROUNITS);
duke@435 1150
duke@435 1151 if (need_to_track_page_armed_status) {
duke@435 1152 tty->print(INT32_FORMAT" ", sstats->_page_armed);
duke@435 1153 }
duke@435 1154 tty->print_cr(INT32_FORMAT" ", sstats->_nof_threads_hit_page_trap);
duke@435 1155 }
duke@435 1156 }
duke@435 1157
duke@435 1158 // This method will be called when VM exits. It will first call
duke@435 1159 // print_statistics to print out the rest of the sampling. Then
duke@435 1160 // it tries to summarize the sampling.
duke@435 1161 void SafepointSynchronize::print_stat_on_exit() {
duke@435 1162 if (_safepoint_stats == NULL) return;
duke@435 1163
duke@435 1164 SafepointStats *spstat = &_safepoint_stats[_cur_stat_index];
duke@435 1165
duke@435 1166 // During VM exit, end_statistics may not get called and in that
duke@435 1167 // case, if the sync time is less than PrintSafepointStatisticsTimeout,
duke@435 1168 // don't print it out.
duke@435 1169 // Approximate the vm op time.
duke@435 1170 _safepoint_stats[_cur_stat_index]._time_to_exec_vmop =
duke@435 1171 os::javaTimeNanos() - sync_end_time;
duke@435 1172
duke@435 1173 if ( PrintSafepointStatisticsTimeout < 0 ||
duke@435 1174 spstat->_time_to_sync > PrintSafepointStatisticsTimeout * MICROUNITS) {
duke@435 1175 print_statistics();
duke@435 1176 }
duke@435 1177 tty->print_cr("");
duke@435 1178
duke@435 1179 // Print out polling page sampling status.
duke@435 1180 if (!need_to_track_page_armed_status) {
duke@435 1181 if (UseCompilerSafepoints) {
duke@435 1182 tty->print_cr("Polling page always armed");
duke@435 1183 }
duke@435 1184 } else {
duke@435 1185 tty->print_cr("Defer polling page loop count = %d\n",
duke@435 1186 DeferPollingPageLoopCount);
duke@435 1187 }
duke@435 1188
duke@435 1189 for (int index = 0; index < VM_Operation::VMOp_Terminating; index++) {
duke@435 1190 if (_safepoint_reasons[index] != 0) {
duke@435 1191 tty->print_cr("%-26s"UINT64_FORMAT_W(10), VM_Operation::name(index),
duke@435 1192 _safepoint_reasons[index]);
duke@435 1193 }
duke@435 1194 }
duke@435 1195
duke@435 1196 tty->print_cr(UINT64_FORMAT_W(5)" VM operations coalesced during safepoint",
duke@435 1197 _coalesced_vmop_count);
duke@435 1198 tty->print_cr("Maximum sync time "INT64_FORMAT_W(5)" ms",
duke@435 1199 _max_sync_time / MICROUNITS);
duke@435 1200 }
duke@435 1201
duke@435 1202 // ------------------------------------------------------------------------------------------------
duke@435 1203 // Non-product code
duke@435 1204
duke@435 1205 #ifndef PRODUCT
duke@435 1206
duke@435 1207 void SafepointSynchronize::print_state() {
duke@435 1208 if (_state == _not_synchronized) {
duke@435 1209 tty->print_cr("not synchronized");
duke@435 1210 } else if (_state == _synchronizing || _state == _synchronized) {
duke@435 1211 tty->print_cr("State: %s", (_state == _synchronizing) ? "synchronizing" :
duke@435 1212 "synchronized");
duke@435 1213
duke@435 1214 for(JavaThread *cur = Threads::first(); cur; cur = cur->next()) {
duke@435 1215 cur->safepoint_state()->print();
duke@435 1216 }
duke@435 1217 }
duke@435 1218 }
duke@435 1219
duke@435 1220 void SafepointSynchronize::safepoint_msg(const char* format, ...) {
duke@435 1221 if (ShowSafepointMsgs) {
duke@435 1222 va_list ap;
duke@435 1223 va_start(ap, format);
duke@435 1224 tty->vprint_cr(format, ap);
duke@435 1225 va_end(ap);
duke@435 1226 }
duke@435 1227 }
duke@435 1228
duke@435 1229 #endif // !PRODUCT

mercurial