1 /*
   2  * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/classLoaderDataGraph.inline.hpp"
  27 #include "classfile/stringTable.hpp"
  28 #include "classfile/symbolTable.hpp"
  29 #include "classfile/systemDictionary.hpp"
  30 #include "code/codeCache.hpp"
  31 #include "code/icBuffer.hpp"
  32 #include "code/nmethod.hpp"
  33 #include "code/pcDesc.hpp"
  34 #include "code/scopeDesc.hpp"
  35 #include "gc/shared/collectedHeap.hpp"
  36 #include "gc/shared/gcLocker.hpp"
  37 #include "gc/shared/strongRootsScope.hpp"
  38 #include "gc/shared/workgroup.hpp"
  39 #include "interpreter/interpreter.hpp"
  40 #include "jfr/jfrEvents.hpp"
  41 #include "logging/log.hpp"
  42 #include "logging/logStream.hpp"
  43 #include "memory/resourceArea.hpp"
  44 #include "memory/universe.hpp"
  45 #include "oops/oop.inline.hpp"
  46 #include "oops/symbol.hpp"
  47 #include "runtime/atomic.hpp"
  48 #include "runtime/compilationPolicy.hpp"
  49 #include "runtime/deoptimization.hpp"
  50 #include "runtime/frame.inline.hpp"
  51 #include "runtime/handles.inline.hpp"
  52 #include "runtime/interfaceSupport.inline.hpp"
  53 #include "runtime/mutexLocker.hpp"
  54 #include "runtime/orderAccess.hpp"
  55 #include "runtime/osThread.hpp"
  56 #include "runtime/safepoint.hpp"
  57 #include "runtime/safepointMechanism.inline.hpp"
  58 #include "runtime/signature.hpp"
  59 #include "runtime/stubCodeGenerator.hpp"
  60 #include "runtime/stubRoutines.hpp"
  61 #include "runtime/sweeper.hpp"
  62 #include "runtime/synchronizer.hpp"
  63 #include "runtime/thread.inline.hpp"
  64 #include "runtime/threadSMR.hpp"
  65 #include "runtime/timerTrace.hpp"
  66 #include "services/runtimeService.hpp"
  67 #include "utilities/events.hpp"
  68 #include "utilities/macros.hpp"
  69 #ifdef COMPILER1
  70 #include "c1/c1_globals.hpp"
  71 #endif
  72 
  73 static void post_safepoint_begin_event(EventSafepointBegin& event,
  74                                        uint64_t safepoint_id,
  75                                        int thread_count,
  76                                        int critical_thread_count) {
  77   if (event.should_commit()) {
  78     event.set_safepointId(safepoint_id);
  79     event.set_totalThreadCount(thread_count);
  80     event.set_jniCriticalThreadCount(critical_thread_count);
  81     event.commit();
  82   }
  83 }
  84 
  85 static void post_safepoint_cleanup_event(EventSafepointCleanup& event, uint64_t safepoint_id) {
  86   if (event.should_commit()) {
  87     event.set_safepointId(safepoint_id);
  88     event.commit();
  89   }
  90 }
  91 
  92 static void post_safepoint_synchronize_event(EventSafepointStateSynchronization& event,
  93                                              uint64_t safepoint_id,
  94                                              int initial_number_of_threads,
  95                                              int threads_waiting_to_block,
  96                                              uint64_t iterations) {
  97   if (event.should_commit()) {
  98     event.set_safepointId(safepoint_id);
  99     event.set_initialThreadCount(initial_number_of_threads);
 100     event.set_runningThreadCount(threads_waiting_to_block);
 101     event.set_iterations(iterations);
 102     event.commit();
 103   }
 104 }
 105 
 106 static void post_safepoint_cleanup_task_event(EventSafepointCleanupTask& event,
 107                                               uint64_t safepoint_id,
 108                                               const char* name) {
 109   if (event.should_commit()) {
 110     event.set_safepointId(safepoint_id);
 111     event.set_name(name);
 112     event.commit();
 113   }
 114 }
 115 
 116 static void post_safepoint_end_event(EventSafepointEnd& event, uint64_t safepoint_id) {
 117   if (event.should_commit()) {
 118     event.set_safepointId(safepoint_id);
 119     event.commit();
 120   }
 121 }
 122 
 123 // --------------------------------------------------------------------------------------------------
 124 // Implementation of Safepoint begin/end
 125 
 126 SafepointSynchronize::SynchronizeState volatile SafepointSynchronize::_state = SafepointSynchronize::_not_synchronized;
 127 int SafepointSynchronize::_waiting_to_block = 0;
 128 volatile uint64_t SafepointSynchronize::_safepoint_counter = 0;
 129 const uint64_t SafepointSynchronize::InactiveSafepointCounter = 0;
 130 int SafepointSynchronize::_current_jni_active_count = 0;
 131 
 132 WaitBarrier* SafepointSynchronize::_wait_barrier;
 133 
 134 static volatile bool PageArmed = false;        // safepoint polling page is RO|RW vs PROT_NONE
 135 static bool timeout_error_printed = false;
 136 
 137 // Statistic related
 138 static jlong _safepoint_begin_time = 0;
 139 static volatile int _nof_threads_hit_polling_page = 0;
 140 
 141 void SafepointSynchronize::init(Thread* vmthread) {
 142   // WaitBarrier should never be destroyed since we will have
 143   // threads waiting on it while exiting.
 144   _wait_barrier = new WaitBarrier(vmthread);
 145   SafepointTracing::init();
 146 }
 147 
 148 void SafepointSynchronize::increment_jni_active_count() {
 149   assert(Thread::current()->is_VM_thread(), "Only VM thread may increment");
 150   ++_current_jni_active_count;
 151 }
 152 
 153 void SafepointSynchronize::decrement_waiting_to_block() {
 154   assert(_waiting_to_block > 0, "sanity check");
 155   assert(Thread::current()->is_VM_thread(), "Only VM thread may decrement");
 156   --_waiting_to_block;
 157 }
 158 
 159 static bool thread_not_running(ThreadSafepointState *cur_state) {
 160   if (!cur_state->is_running()) {
 161     return true;
 162   }
 163   cur_state->examine_state_of_thread(SafepointSynchronize::safepoint_counter());
 164   if (!cur_state->is_running()) {
 165     return true;
 166   }
 167   LogTarget(Trace, safepoint) lt;
 168   if (lt.is_enabled()) {
 169     ResourceMark rm;
 170     LogStream ls(lt);
 171     cur_state->print_on(&ls);
 172   }
 173   return false;
 174 }
 175 
 176 #ifdef ASSERT
 177 static void assert_list_is_valid(const ThreadSafepointState* tss_head, int still_running) {
 178   int a = 0;
 179   const ThreadSafepointState *tmp_tss = tss_head;
 180   while (tmp_tss != NULL) {
 181     ++a;
 182     assert(tmp_tss->is_running(), "Illegal initial state");
 183     tmp_tss = tmp_tss->get_next();
 184   }
 185   assert(a == still_running, "Must be the same");
 186 }
 187 #endif // ASSERT
 188 
 189 static void back_off(int iteration) {
 190   // iteration will be 1 the first time we enter this spin back-off.
 191   // naked_short_nanosleep takes tenths of micros which means that
 192   // number of nanoseconds is irrelevant if it's below that. We do
 193   // 20 1 ns sleeps with a total cost of ~1 ms, then we do 1 ms sleeps.
 194   jlong sleep_ns = 1;
 195   if (iteration > 20) {
 196     sleep_ns = NANOUNITS / MILLIUNITS;  // 1 ms
 197   }
 198   os::naked_short_nanosleep(sleep_ns);
 199 }
 200 
 201 int SafepointSynchronize::synchronize_threads(jlong safepoint_limit_time, int nof_threads, int* initial_running)
 202 {
 203   JavaThreadIteratorWithHandle jtiwh;
 204 
 205 #ifdef ASSERT
 206   for (; JavaThread *cur = jtiwh.next(); ) {
 207     assert(cur->safepoint_state()->is_running(), "Illegal initial state");
 208   }
 209   jtiwh.rewind();
 210 #endif // ASSERT
 211 
 212   // Iterate through all threads until it has been determined how to stop them all at a safepoint.
 213   int still_running = nof_threads;
 214   ThreadSafepointState *tss_head = NULL;
 215   ThreadSafepointState **p_prev = &tss_head;
 216   for (; JavaThread *cur = jtiwh.next(); ) {
 217     ThreadSafepointState *cur_tss = cur->safepoint_state();
 218     assert(cur_tss->get_next() == NULL, "Must be NULL");
 219     if (thread_not_running(cur_tss)) {
 220       --still_running;
 221     } else {
 222       *p_prev = cur_tss;
 223       p_prev = cur_tss->next_ptr();
 224     }
 225   }
 226   *p_prev = NULL;
 227 
 228   DEBUG_ONLY(assert_list_is_valid(tss_head, still_running);)
 229 
 230   *initial_running = still_running;
 231 
 232   int iterations = 1; // The first iteration is above.
 233 
 234   while (still_running > 0) {
 235     // Check if this has taken too long:
 236     if (SafepointTimeout && safepoint_limit_time < os::javaTimeNanos()) {
 237       print_safepoint_timeout();
 238     }
 239     if (int(iterations) == -1) { // overflow - something is wrong.
 240       // We can only overflow here when we are using global
 241       // polling pages. We keep this guarantee in its original
 242       // form so that searches of the bug database for this
 243       // failure mode find the right bugs.
 244       guarantee (!PageArmed, "invariant");
 245     }
 246 
 247     p_prev = &tss_head;
 248     ThreadSafepointState *cur_tss = tss_head;
 249     while (cur_tss != NULL) {
 250       assert(cur_tss->is_running(), "Illegal initial state");
 251       if (thread_not_running(cur_tss)) {
 252         --still_running;
 253         *p_prev = NULL;
 254         ThreadSafepointState *tmp = cur_tss;
 255         cur_tss = cur_tss->get_next();
 256         tmp->set_next(NULL);
 257       } else {
 258         *p_prev = cur_tss;
 259         p_prev = cur_tss->next_ptr();
 260         cur_tss = cur_tss->get_next();
 261       }
 262     }
 263 
 264     DEBUG_ONLY(assert_list_is_valid(tss_head, still_running);)
 265 
 266     if (still_running > 0) {
 267       back_off(iterations);
 268     }
 269 
 270     iterations++;
 271   }
 272 
 273   assert(tss_head == NULL, "Must be empty");
 274 
 275   return iterations;
 276 }
 277 
 278 void SafepointSynchronize::arm_safepoint() {
 279   // Begin the process of bringing the system to a safepoint.
 280   // Java threads can be in several different states and are
 281   // stopped by different mechanisms:
 282   //
 283   //  1. Running interpreted
 284   //     When executing branching/returning byte codes interpreter
 285   //     checks if the poll is armed, if so blocks in SS::block().
 286   //     When using global polling the interpreter dispatch table
 287   //     is changed to force it to check for a safepoint condition
 288   //     between bytecodes.
 289   //  2. Running in native code
 290   //     When returning from the native code, a Java thread must check
 291   //     the safepoint _state to see if we must block.  If the
 292   //     VM thread sees a Java thread in native, it does
 293   //     not wait for this thread to block.  The order of the memory
 294   //     writes and reads of both the safepoint state and the Java
 295   //     threads state is critical.  In order to guarantee that the
 296   //     memory writes are serialized with respect to each other,
 297   //     the VM thread issues a memory barrier instruction.
 298   //  3. Running compiled Code
 299   //     Compiled code reads the local polling page that
 300   //     is set to fault if we are trying to get to a safepoint.
 301   //  4. Blocked
 302   //     A thread which is blocked will not be allowed to return from the
 303   //     block condition until the safepoint operation is complete.
 304   //  5. In VM or Transitioning between states
 305   //     If a Java thread is currently running in the VM or transitioning
 306   //     between states, the safepointing code will poll the thread state
 307   //     until the thread blocks itself when it attempts transitions to a
 308   //     new state or locking a safepoint checked monitor.
 309 
 310   // We must never miss a thread with correct safepoint id, so we must make sure we arm
 311   // the wait barrier for the next safepoint id/counter.
 312   // Arming must be done after resetting _current_jni_active_count, _waiting_to_block.
 313   _wait_barrier->arm(static_cast<int>(_safepoint_counter + 1));
 314 
 315   assert((_safepoint_counter & 0x1) == 0, "must be even");
 316   // The store to _safepoint_counter must happen after any stores in arming.
 317   OrderAccess::release_store(&_safepoint_counter, _safepoint_counter + 1);
 318 
 319   // We are synchronizing
 320   OrderAccess::storestore(); // Ordered with _safepoint_counter
 321   _state = _synchronizing;
 322 
 323   if (SafepointMechanism::uses_thread_local_poll()) {
 324     // Arming the per thread poll while having _state != _not_synchronized means safepointing
 325     log_trace(safepoint)("Setting thread local yield flag for threads");
 326     OrderAccess::storestore(); // storestore, global state -> local state
 327     for (JavaThreadIteratorWithHandle jtiwh; JavaThread *cur = jtiwh.next(); ) {
 328       // Make sure the threads start polling, it is time to yield.
 329       SafepointMechanism::arm_local_poll(cur);
 330     }
 331   }
 332   OrderAccess::fence(); // storestore|storeload, global state -> local state
 333 
 334   if (SafepointMechanism::uses_global_page_poll()) {
 335     // Make interpreter safepoint aware
 336     Interpreter::notice_safepoints();
 337 
 338     // Make polling safepoint aware
 339     guarantee (!PageArmed, "invariant") ;
 340     PageArmed = true;
 341     os::make_polling_page_unreadable();
 342   }
 343 }
 344 
 345 // Roll all threads forward to a safepoint and suspend them all
 346 void SafepointSynchronize::begin() {
 347   assert(Thread::current()->is_VM_thread(), "Only VM thread may execute a safepoint");
 348 
 349   EventSafepointBegin begin_event;
 350   SafepointTracing::begin(VMThread::vm_op_type());
 351 
 352   Universe::heap()->safepoint_synchronize_begin();
 353 
 354   // By getting the Threads_lock, we assure that no threads are about to start or
 355   // exit. It is released again in SafepointSynchronize::end().
 356   Threads_lock->lock();
 357 
 358   assert( _state == _not_synchronized, "trying to safepoint synchronize with wrong state");
 359 
 360   int nof_threads = Threads::number_of_threads();
 361 
 362   _nof_threads_hit_polling_page = 0;
 363 
 364   log_debug(safepoint)("Safepoint synchronization initiated using %s wait barrier. (%d threads)", _wait_barrier->description(), nof_threads);
 365 
 366   // Reset the count of active JNI critical threads
 367   _current_jni_active_count = 0;
 368 
 369   // Set number of threads to wait for
 370   _waiting_to_block = nof_threads;
 371 
 372   jlong safepoint_limit_time = 0;
 373   if (SafepointTimeout) {
 374     // Set the limit time, so that it can be compared to see if this has taken
 375     // too long to complete.
 376     safepoint_limit_time = SafepointTracing::start_of_safepoint() + (jlong)SafepointTimeoutDelay * (NANOUNITS / MILLIUNITS);
 377     timeout_error_printed = false;
 378   }
 379 
 380   EventSafepointStateSynchronization sync_event;
 381   int initial_running = 0;
 382 
 383   // Arms the safepoint, _current_jni_active_count and _waiting_to_block must be set before.
 384   arm_safepoint();
 385 
 386   // Will spin until all threads are safe.
 387   int iterations = synchronize_threads(safepoint_limit_time, nof_threads, &initial_running);
 388   assert(_waiting_to_block == 0, "No thread should be running");
 389 
 390 #ifndef PRODUCT
 391   if (safepoint_limit_time != 0) {
 392     jlong current_time = os::javaTimeNanos();
 393     if (safepoint_limit_time < current_time) {
 394       log_warning(safepoint)("# SafepointSynchronize: Finished after "
 395                     INT64_FORMAT_W(6) " ms",
 396                     (int64_t)(current_time - SafepointTracing::start_of_safepoint()) / (NANOUNITS / MILLIUNITS));
 397     }
 398   }
 399 #endif
 400 
 401   assert(Threads_lock->owned_by_self(), "must hold Threads_lock");
 402 
 403   // Record state
 404   _state = _synchronized;
 405 
 406   OrderAccess::fence();
 407 
 408 #ifdef ASSERT
 409   // Make sure all the threads were visited.
 410   for (JavaThreadIteratorWithHandle jtiwh; JavaThread *cur = jtiwh.next(); ) {
 411     assert(cur->was_visited_for_critical_count(_safepoint_counter), "missed a thread");
 412   }
 413 #endif // ASSERT
 414 
 415   // Update the count of active JNI critical regions
 416   GCLocker::set_jni_lock_count(_current_jni_active_count);
 417 
 418   post_safepoint_synchronize_event(sync_event,
 419                                    _safepoint_counter,
 420                                    initial_running,
 421                                    _waiting_to_block, iterations);
 422 
 423   SafepointTracing::synchronized(nof_threads, initial_running, _nof_threads_hit_polling_page);
 424 
 425   // We do the safepoint cleanup first since a GC related safepoint
 426   // needs cleanup to be completed before running the GC op.
 427   EventSafepointCleanup cleanup_event;
 428   do_cleanup_tasks();
 429   post_safepoint_cleanup_event(cleanup_event, _safepoint_counter);
 430 
 431   post_safepoint_begin_event(begin_event, _safepoint_counter, nof_threads, _current_jni_active_count);
 432   SafepointTracing::cleanup();
 433 }
 434 
 435 void SafepointSynchronize::disarm_safepoint() {
 436   uint64_t safepoint_id = _safepoint_counter;
 437   {
 438     JavaThreadIteratorWithHandle jtiwh;
 439 #ifdef ASSERT
 440     // A pending_exception cannot be installed during a safepoint.  The threads
 441     // may install an async exception after they come back from a safepoint into
 442     // pending_exception after they unblock.  But that should happen later.
 443     for (; JavaThread *cur = jtiwh.next(); ) {
 444       assert (!(cur->has_pending_exception() &&
 445                 cur->safepoint_state()->is_at_poll_safepoint()),
 446               "safepoint installed a pending exception");
 447     }
 448 #endif // ASSERT
 449 
 450     if (SafepointMechanism::uses_global_page_poll()) {
 451       guarantee (PageArmed, "invariant");
 452       // Make polling safepoint aware
 453       os::make_polling_page_readable();
 454       PageArmed = false;
 455       // Remove safepoint check from interpreter
 456       Interpreter::ignore_safepoints();
 457     }
 458 
 459     OrderAccess::fence(); // keep read and write of _state from floating up
 460     assert(_state == _synchronized, "must be synchronized before ending safepoint synchronization");
 461 
 462     // Change state first to _not_synchronized.
 463     // No threads should see _synchronized when running.
 464     _state = _not_synchronized;
 465 
 466     // Set the next dormant (even) safepoint id.
 467     assert((_safepoint_counter & 0x1) == 1, "must be odd");
 468     OrderAccess::release_store(&_safepoint_counter, _safepoint_counter + 1);
 469 
 470     OrderAccess::fence(); // Keep the local state from floating up.
 471 
 472     jtiwh.rewind();
 473     for (; JavaThread *current = jtiwh.next(); ) {
 474       // Clear the visited flag to ensure that the critical counts are collected properly.
 475       DEBUG_ONLY(current->reset_visited_for_critical_count(safepoint_id);)
 476       ThreadSafepointState* cur_state = current->safepoint_state();
 477       assert(!cur_state->is_running(), "Thread not suspended at safepoint");
 478       cur_state->restart(); // TSS _running
 479       assert(cur_state->is_running(), "safepoint state has not been reset");
 480       SafepointMechanism::disarm_local_poll(current);
 481     }
 482   } // ~JavaThreadIteratorWithHandle
 483 
 484   // Release threads lock, so threads can be created/destroyed again.
 485   Threads_lock->unlock();
 486 
 487   // Wake threads after local state is correctly set.
 488   _wait_barrier->disarm();
 489 }
 490 
 491 // Wake up all threads, so they are ready to resume execution after the safepoint
 492 // operation has been carried out
 493 void SafepointSynchronize::end() {
 494   assert(Threads_lock->owned_by_self(), "must hold Threads_lock");
 495   EventSafepointEnd event;
 496   uint64_t safepoint_id = _safepoint_counter;
 497   assert(Thread::current()->is_VM_thread(), "Only VM thread can execute a safepoint");
 498 
 499   disarm_safepoint();
 500 
 501   Universe::heap()->safepoint_synchronize_end();
 502 
 503   SafepointTracing::end();
 504 
 505   post_safepoint_end_event(event, safepoint_id);
 506 }
 507 
 508 bool SafepointSynchronize::is_cleanup_needed() {
 509   // Need a safepoint if there are many monitors to deflate.
 510   if (ObjectSynchronizer::is_cleanup_needed()) return true;
 511   // Need a safepoint if some inline cache buffers is non-empty
 512   if (!InlineCacheBuffer::is_empty()) return true;
 513   return false;
 514 }
 515 
 516 class ParallelSPCleanupThreadClosure : public ThreadClosure {
 517 private:
 518   CodeBlobClosure* _nmethod_cl;
 519   DeflateMonitorCounters* _counters;
 520 
 521 public:
 522   ParallelSPCleanupThreadClosure(DeflateMonitorCounters* counters) :
 523     _nmethod_cl(UseCodeAging ? NMethodSweeper::prepare_reset_hotness_counters() : NULL),
 524     _counters(counters) {}
 525 
 526   void do_thread(Thread* thread) {
 527     ObjectSynchronizer::deflate_thread_local_monitors(thread, _counters);
 528     if (_nmethod_cl != NULL && thread->is_Java_thread() &&
 529         ! thread->is_Code_cache_sweeper_thread()) {
 530       JavaThread* jt = (JavaThread*) thread;
 531       jt->nmethods_do(_nmethod_cl);
 532     }
 533   }
 534 };
 535 
 536 class ParallelSPCleanupTask : public AbstractGangTask {
 537 private:
 538   SubTasksDone _subtasks;
 539   ParallelSPCleanupThreadClosure _cleanup_threads_cl;
 540   uint _num_workers;
 541   DeflateMonitorCounters* _counters;
 542 public:
 543   ParallelSPCleanupTask(uint num_workers, DeflateMonitorCounters* counters) :
 544     AbstractGangTask("Parallel Safepoint Cleanup"),
 545     _subtasks(SubTasksDone(SafepointSynchronize::SAFEPOINT_CLEANUP_NUM_TASKS)),
 546     _cleanup_threads_cl(ParallelSPCleanupThreadClosure(counters)),
 547     _num_workers(num_workers),
 548     _counters(counters) {}
 549 
 550   void work(uint worker_id) {
 551     uint64_t safepoint_id = SafepointSynchronize::safepoint_counter();
 552     // All threads deflate monitors and mark nmethods (if necessary).
 553     Threads::possibly_parallel_threads_do(true, &_cleanup_threads_cl);
 554 
 555     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_DEFLATE_MONITORS)) {
 556       const char* name = "deflating global idle monitors";
 557       EventSafepointCleanupTask event;
 558       TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 559       ObjectSynchronizer::deflate_idle_monitors(_counters);
 560 
 561       post_safepoint_cleanup_task_event(event, safepoint_id, name);
 562     }
 563 
 564     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_UPDATE_INLINE_CACHES)) {
 565       const char* name = "updating inline caches";
 566       EventSafepointCleanupTask event;
 567       TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 568       InlineCacheBuffer::update_inline_caches();
 569 
 570       post_safepoint_cleanup_task_event(event, safepoint_id, name);
 571     }
 572 
 573     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_COMPILATION_POLICY)) {
 574       const char* name = "compilation policy safepoint handler";
 575       EventSafepointCleanupTask event;
 576       TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 577       CompilationPolicy::policy()->do_safepoint_work();
 578 
 579       post_safepoint_cleanup_task_event(event, safepoint_id, name);
 580     }
 581 
 582     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_SYMBOL_TABLE_REHASH)) {
 583       if (SymbolTable::needs_rehashing()) {
 584         const char* name = "rehashing symbol table";
 585         EventSafepointCleanupTask event;
 586         TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 587         SymbolTable::rehash_table();
 588 
 589         post_safepoint_cleanup_task_event(event, safepoint_id, name);
 590       }
 591     }
 592 
 593     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_STRING_TABLE_REHASH)) {
 594       if (StringTable::needs_rehashing()) {
 595         const char* name = "rehashing string table";
 596         EventSafepointCleanupTask event;
 597         TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 598         StringTable::rehash_table();
 599 
 600         post_safepoint_cleanup_task_event(event, safepoint_id, name);
 601       }
 602     }
 603 
 604     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_CLD_PURGE)) {
 605       // CMS delays purging the CLDG until the beginning of the next safepoint and to
 606       // make sure concurrent sweep is done
 607       const char* name = "purging class loader data graph";
 608       EventSafepointCleanupTask event;
 609       TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 610       ClassLoaderDataGraph::purge_if_needed();
 611 
 612       post_safepoint_cleanup_task_event(event, safepoint_id, name);
 613     }
 614 
 615     if (_subtasks.try_claim_task(SafepointSynchronize::SAFEPOINT_CLEANUP_SYSTEM_DICTIONARY_RESIZE)) {
 616       const char* name = "resizing system dictionaries";
 617       EventSafepointCleanupTask event;
 618       TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 619       ClassLoaderDataGraph::resize_if_needed();
 620 
 621       post_safepoint_cleanup_task_event(event, safepoint_id, name);
 622     }
 623 
 624     _subtasks.all_tasks_completed(_num_workers);
 625   }
 626 };
 627 
 628 // Various cleaning tasks that should be done periodically at safepoints.
 629 void SafepointSynchronize::do_cleanup_tasks() {
 630 
 631   TraceTime timer("safepoint cleanup tasks", TRACETIME_LOG(Info, safepoint, cleanup));
 632 
 633   // Prepare for monitor deflation.
 634   DeflateMonitorCounters deflate_counters;
 635   ObjectSynchronizer::prepare_deflate_idle_monitors(&deflate_counters);
 636 
 637   CollectedHeap* heap = Universe::heap();
 638   assert(heap != NULL, "heap not initialized yet?");
 639   WorkGang* cleanup_workers = heap->get_safepoint_workers();
 640   if (cleanup_workers != NULL) {
 641     // Parallel cleanup using GC provided thread pool.
 642     uint num_cleanup_workers = cleanup_workers->active_workers();
 643     ParallelSPCleanupTask cleanup(num_cleanup_workers, &deflate_counters);
 644     StrongRootsScope srs(num_cleanup_workers);
 645     cleanup_workers->run_task(&cleanup);
 646   } else {
 647     // Serial cleanup using VMThread.
 648     ParallelSPCleanupTask cleanup(1, &deflate_counters);
 649     StrongRootsScope srs(1);
 650     cleanup.work(0);
 651   }
 652 
 653   // Needs to be done single threaded by the VMThread.  This walks
 654   // the thread stacks looking for references to metadata before
 655   // deciding to remove it from the metaspaces.
 656   if (ClassLoaderDataGraph::should_clean_metaspaces_and_reset()) {
 657     const char* name = "cleanup live ClassLoaderData metaspaces";
 658     TraceTime timer(name, TRACETIME_LOG(Info, safepoint, cleanup));
 659     ClassLoaderDataGraph::walk_metadata_and_clean_metaspaces();
 660   }
 661 
 662   // Finish monitor deflation.
 663   ObjectSynchronizer::finish_deflate_idle_monitors(&deflate_counters);
 664 
 665   assert(InlineCacheBuffer::is_empty(), "should have cleaned up ICBuffer");
 666 }
 667 
 668 // Methods for determining if a JavaThread is safepoint safe.
 669 
 670 // False means unsafe with undetermined state.
 671 // True means a determined state, but it may be an unsafe state.
 672 // If called from a non-safepoint context safepoint_count MUST be InactiveSafepointCounter.
 673 bool SafepointSynchronize::try_stable_load_state(JavaThreadState *state, JavaThread *thread, uint64_t safepoint_count) {
 674   assert((safepoint_count != InactiveSafepointCounter &&
 675           Thread::current() == (Thread*)VMThread::vm_thread() &&
 676           SafepointSynchronize::_state != _not_synchronized)
 677          || safepoint_count == InactiveSafepointCounter, "Invalid check");
 678 
 679   // To handle the thread_blocked state on the backedge of the WaitBarrier from
 680   // previous safepoint and reading the reset value (0/InactiveSafepointCounter) we
 681   // re-read state after we read thread safepoint id. The JavaThread changes its
 682   // thread state from thread_blocked before resetting safepoint id to 0.
 683   // This guarantees the second read will be from an updated thread state. It can
 684   // either be different state making this an unsafe state or it can see blocked
 685   // again. When we see blocked twice with a 0 safepoint id, either:
 686   // - It is normally blocked, e.g. on Mutex, TBIVM.
 687   // - It was in SS:block(), looped around to SS:block() and is blocked on the WaitBarrier.
 688   // - It was in SS:block() but now on a Mutex.
 689   // All of these cases are safe.
 690 
 691   *state = thread->thread_state();
 692   OrderAccess::loadload();
 693   uint64_t sid = thread->safepoint_state()->get_safepoint_id();  // Load acquire
 694   if (sid != InactiveSafepointCounter && sid != safepoint_count) {
 695     // In an old safepoint, state not relevant.
 696     return false;
 697   }
 698   return *state == thread->thread_state();
 699 }
 700 
 701 static bool safepoint_safe_with(JavaThread *thread, JavaThreadState state) {
 702   switch(state) {
 703   case _thread_in_native:
 704     // native threads are safe if they have no java stack or have walkable stack
 705     return !thread->has_last_Java_frame() || thread->frame_anchor()->walkable();
 706 
 707   case _thread_blocked:
 708     // On wait_barrier or blocked.
 709     // Blocked threads should already have walkable stack.
 710     assert(!thread->has_last_Java_frame() || thread->frame_anchor()->walkable(), "blocked and not walkable");
 711     return true;
 712 
 713   default:
 714     return false;
 715   }
 716 }
 717 
 718 bool SafepointSynchronize::handshake_safe(JavaThread *thread) {
 719   // The polls must be armed otherwise the safe state can change to unsafe at any time.
 720   assert(SafepointMechanism::should_block(thread), "Must be armed");
 721   // This function must be called with the Threads_lock held so an externally
 722   // suspended thread cannot be resumed thus it is safe.
 723   assert(Threads_lock->owned_by_self() && Thread::current()->is_VM_thread(),
 724          "Must hold Threads_lock and be VMThread");
 725   if (thread->is_ext_suspended() || thread->is_terminated()) {
 726     return true;
 727   }
 728   JavaThreadState stable_state;
 729   if (try_stable_load_state(&stable_state, thread, InactiveSafepointCounter)) {
 730     return safepoint_safe_with(thread, stable_state);
 731   }
 732   return false;
 733 }
 734 
 735 // See if the thread is running inside a lazy critical native and
 736 // update the thread critical count if so.  Also set a suspend flag to
 737 // cause the native wrapper to return into the JVM to do the unlock
 738 // once the native finishes.
 739 static void check_for_lazy_critical_native(JavaThread *thread, JavaThreadState state) {
 740   if (state == _thread_in_native &&
 741       thread->has_last_Java_frame() &&
 742       thread->frame_anchor()->walkable()) {
 743     // This thread might be in a critical native nmethod so look at
 744     // the top of the stack and increment the critical count if it
 745     // is.
 746     frame wrapper_frame = thread->last_frame();
 747     CodeBlob* stub_cb = wrapper_frame.cb();
 748     if (stub_cb != NULL &&
 749         stub_cb->is_nmethod() &&
 750         stub_cb->as_nmethod_or_null()->is_lazy_critical_native()) {
 751       // A thread could potentially be in a critical native across
 752       // more than one safepoint, so only update the critical state on
 753       // the first one.  When it returns it will perform the unlock.
 754       if (!thread->do_critical_native_unlock()) {
 755 #ifdef ASSERT
 756         if (!thread->in_critical()) {
 757           GCLocker::increment_debug_jni_lock_count();
 758         }
 759 #endif
 760         thread->enter_critical();
 761         // Make sure the native wrapper calls back on return to
 762         // perform the needed critical unlock.
 763         thread->set_critical_native_unlock();
 764       }
 765     }
 766   }
 767 }
 768 
 769 // -------------------------------------------------------------------------------------------------------
 770 // Implementation of Safepoint blocking point
 771 
 772 void SafepointSynchronize::block(JavaThread *thread) {
 773   assert(thread != NULL, "thread must be set");
 774   assert(thread->is_Java_thread(), "not a Java thread");
 775 
 776   // Threads shouldn't block if they are in the middle of printing, but...
 777   ttyLocker::break_tty_lock_for_safepoint(os::current_thread_id());
 778 
 779   // Only bail from the block() call if the thread is gone from the
 780   // thread list; starting to exit should still block.
 781   if (thread->is_terminated()) {
 782      // block current thread if we come here from native code when VM is gone
 783      thread->block_if_vm_exited();
 784 
 785      // otherwise do nothing
 786      return;
 787   }
 788 
 789   JavaThreadState state = thread->thread_state();
 790   thread->frame_anchor()->make_walkable(thread);
 791 
 792   uint64_t safepoint_id = SafepointSynchronize::safepoint_counter();
 793   // Check that we have a valid thread_state at this point
 794   switch(state) {
 795     case _thread_in_vm_trans:
 796     case _thread_in_Java:        // From compiled code
 797     case _thread_in_native_trans:
 798     case _thread_blocked_trans:
 799     case _thread_new_trans:
 800 
 801       // We have no idea where the VMThread is, it might even be at next safepoint.
 802       // So we can miss this poll, but stop at next.
 803 
 804       // Load dependent store, it must not pass loading of safepoint_id.
 805       thread->safepoint_state()->set_safepoint_id(safepoint_id); // Release store
 806 
 807       // This part we can skip if we notice we miss or are in a future safepoint.
 808       OrderAccess::storestore();
 809       thread->set_thread_state(_thread_blocked);
 810 
 811       OrderAccess::fence(); // Load in wait barrier should not float up
 812       _wait_barrier->wait(static_cast<int>(safepoint_id));
 813       assert(_state != _synchronized, "Can't be");
 814 
 815       // If barrier is disarmed stop store from floating above loads in barrier.
 816       OrderAccess::loadstore();
 817       thread->set_thread_state(state);
 818 
 819       // Then we reset the safepoint id to inactive.
 820       thread->safepoint_state()->reset_safepoint_id(); // Release store
 821 
 822       OrderAccess::fence();
 823 
 824       break;
 825 
 826     default:
 827      fatal("Illegal threadstate encountered: %d", state);
 828   }
 829   guarantee(thread->safepoint_state()->get_safepoint_id() == InactiveSafepointCounter,
 830             "The safepoint id should be set only in block path");
 831 
 832   // Check for pending. async. exceptions or suspends - except if the
 833   // thread was blocked inside the VM. has_special_runtime_exit_condition()
 834   // is called last since it grabs a lock and we only want to do that when
 835   // we must.
 836   //
 837   // Note: we never deliver an async exception at a polling point as the
 838   // compiler may not have an exception handler for it. The polling
 839   // code will notice the async and deoptimize and the exception will
 840   // be delivered. (Polling at a return point is ok though). Sure is
 841   // a lot of bother for a deprecated feature...
 842   //
 843   // We don't deliver an async exception if the thread state is
 844   // _thread_in_native_trans so JNI functions won't be called with
 845   // a surprising pending exception. If the thread state is going back to java,
 846   // async exception is checked in check_special_condition_for_native_trans().
 847 
 848   if (state != _thread_blocked_trans &&
 849       state != _thread_in_vm_trans &&
 850       thread->has_special_runtime_exit_condition()) {
 851     thread->handle_special_runtime_exit_condition(
 852       !thread->is_at_poll_safepoint() && (state != _thread_in_native_trans));
 853   }
 854 }
 855 
 856 // ------------------------------------------------------------------------------------------------------
 857 // Exception handlers
 858 
 859 
 860 void SafepointSynchronize::handle_polling_page_exception(JavaThread *thread) {
 861   assert(thread->is_Java_thread(), "polling reference encountered by VM thread");
 862   assert(thread->thread_state() == _thread_in_Java, "should come from Java code");
 863   if (!ThreadLocalHandshakes) {
 864     assert(SafepointSynchronize::is_synchronizing(), "polling encountered outside safepoint synchronization");
 865   }
 866 
 867   if (log_is_enabled(Info, safepoint, stats)) {
 868     Atomic::inc(&_nof_threads_hit_polling_page);
 869   }
 870 
 871   ThreadSafepointState* state = thread->safepoint_state();
 872 
 873   state->handle_polling_page_exception();
 874 }
 875 
 876 
 877 void SafepointSynchronize::print_safepoint_timeout() {
 878   if (!timeout_error_printed) {
 879     timeout_error_printed = true;
 880     // Print out the thread info which didn't reach the safepoint for debugging
 881     // purposes (useful when there are lots of threads in the debugger).
 882     LogTarget(Warning, safepoint) lt;
 883     if (lt.is_enabled()) {
 884       ResourceMark rm;
 885       LogStream ls(lt);
 886 
 887       ls.cr();
 888       ls.print_cr("# SafepointSynchronize::begin: Timeout detected:");
 889       ls.print_cr("# SafepointSynchronize::begin: Timed out while spinning to reach a safepoint.");
 890       ls.print_cr("# SafepointSynchronize::begin: Threads which did not reach the safepoint:");
 891       for (JavaThreadIteratorWithHandle jtiwh; JavaThread *cur_thread = jtiwh.next(); ) {
 892         if (cur_thread->safepoint_state()->is_running()) {
 893           ls.print("# ");
 894           cur_thread->print_on(&ls);
 895           ls.cr();
 896         }
 897       }
 898       ls.print_cr("# SafepointSynchronize::begin: (End of list)");
 899     }
 900   }
 901 
 902   // To debug the long safepoint, specify both AbortVMOnSafepointTimeout &
 903   // ShowMessageBoxOnError.
 904   if (AbortVMOnSafepointTimeout) {
 905     // Send the blocking thread a signal to terminate and write an error file.
 906     for (JavaThreadIteratorWithHandle jtiwh; JavaThread *cur_thread = jtiwh.next(); ) {
 907       if (cur_thread->safepoint_state()->is_running()) {
 908         if (!os::signal_thread(cur_thread, SIGILL, "blocking a safepoint")) {
 909           break; // Could not send signal. Report fatal error.
 910         }
 911         // Give cur_thread a chance to report the error and terminate the VM.
 912         os::sleep(Thread::current(), 3000, false);
 913       }
 914     }
 915     fatal("Safepoint sync time longer than " INTX_FORMAT "ms detected when executing %s.",
 916           SafepointTimeoutDelay, VMThread::vm_operation()->name());
 917   }
 918 }
 919 
 920 // -------------------------------------------------------------------------------------------------------
 921 // Implementation of ThreadSafepointState
 922 
 923 ThreadSafepointState::ThreadSafepointState(JavaThread *thread)
 924   : _at_poll_safepoint(false), _thread(thread), _safepoint_safe(false),
 925     _safepoint_id(SafepointSynchronize::InactiveSafepointCounter),
 926     _orig_thread_state(_thread_uninitialized), _next(NULL) {
 927 }
 928 
 929 void ThreadSafepointState::create(JavaThread *thread) {
 930   ThreadSafepointState *state = new ThreadSafepointState(thread);
 931   thread->set_safepoint_state(state);
 932 }
 933 
 934 void ThreadSafepointState::destroy(JavaThread *thread) {
 935   if (thread->safepoint_state()) {
 936     delete(thread->safepoint_state());
 937     thread->set_safepoint_state(NULL);
 938   }
 939 }
 940 
 941 uint64_t ThreadSafepointState::get_safepoint_id() const {
 942   return OrderAccess::load_acquire(&_safepoint_id);
 943 }
 944 
 945 void ThreadSafepointState::reset_safepoint_id() {
 946   OrderAccess::release_store(&_safepoint_id, SafepointSynchronize::InactiveSafepointCounter);
 947 }
 948 
 949 void ThreadSafepointState::set_safepoint_id(uint64_t safepoint_id) {
 950   OrderAccess::release_store(&_safepoint_id, safepoint_id);
 951 }
 952 
 953 void ThreadSafepointState::examine_state_of_thread(uint64_t safepoint_count) {
 954   assert(is_running(), "better be running or just have hit safepoint poll");
 955 
 956   JavaThreadState stable_state;
 957   if (!SafepointSynchronize::try_stable_load_state(&stable_state, _thread, safepoint_count)) {
 958     // We could not get stable state of the JavaThread.
 959     // Consider it running and just return.
 960     return;
 961   }
 962 
 963   // Save the state at the start of safepoint processing.
 964   _orig_thread_state = stable_state;
 965 
 966   // Check for a thread that is suspended. Note that thread resume tries
 967   // to grab the Threads_lock which we own here, so a thread cannot be
 968   // resumed during safepoint synchronization.
 969 
 970   // We check to see if this thread is suspended without locking to
 971   // avoid deadlocking with a third thread that is waiting for this
 972   // thread to be suspended. The third thread can notice the safepoint
 973   // that we're trying to start at the beginning of its SR_lock->wait()
 974   // call. If that happens, then the third thread will block on the
 975   // safepoint while still holding the underlying SR_lock. We won't be
 976   // able to get the SR_lock and we'll deadlock.
 977   //
 978   // We don't need to grab the SR_lock here for two reasons:
 979   // 1) The suspend flags are both volatile and are set with an
 980   //    Atomic::cmpxchg() call so we should see the suspended
 981   //    state right away.
 982   // 2) We're being called from the safepoint polling loop; if
 983   //    we don't see the suspended state on this iteration, then
 984   //    we'll come around again.
 985   //
 986   bool is_suspended = _thread->is_ext_suspended();
 987   if (is_suspended) {
 988     account_safe_thread();
 989     return;
 990   }
 991 
 992   if (safepoint_safe_with(_thread, stable_state)) {
 993     check_for_lazy_critical_native(_thread, stable_state);
 994     account_safe_thread();
 995     return;
 996   }
 997 
 998   // All other thread states will continue to run until they
 999   // transition and self-block in state _blocked
1000   // Safepoint polling in compiled code causes the Java threads to do the same.
1001   // Note: new threads may require a malloc so they must be allowed to finish
1002 
1003   assert(is_running(), "examine_state_of_thread on non-running thread");
1004   return;
1005 }
1006 
1007 void ThreadSafepointState::account_safe_thread() {
1008   SafepointSynchronize::decrement_waiting_to_block();
1009   if (_thread->in_critical()) {
1010     // Notice that this thread is in a critical section
1011     SafepointSynchronize::increment_jni_active_count();
1012   }
1013   DEBUG_ONLY(_thread->set_visited_for_critical_count(SafepointSynchronize::safepoint_counter());)
1014   assert(!_safepoint_safe, "Must be unsafe before safe");
1015   _safepoint_safe = true;
1016 }
1017 
1018 void ThreadSafepointState::restart() {
1019   assert(_safepoint_safe, "Must be safe before unsafe");
1020   _safepoint_safe = false;
1021 }
1022 
1023 void ThreadSafepointState::print_on(outputStream *st) const {
1024   const char *s = _safepoint_safe ? "_at_safepoint" : "_running";
1025 
1026   st->print_cr("Thread: " INTPTR_FORMAT
1027               "  [0x%2x] State: %s _at_poll_safepoint %d",
1028                p2i(_thread), _thread->osthread()->thread_id(), s, _at_poll_safepoint);
1029 
1030   _thread->print_thread_state_on(st);
1031 }
1032 
1033 // ---------------------------------------------------------------------------------------------------------------------
1034 
1035 // Block the thread at poll or poll return for safepoint/handshake.
1036 void ThreadSafepointState::handle_polling_page_exception() {
1037 
1038   // If we're using a global poll, then the thread should not be
1039   // marked as safepoint safe yet.
1040   assert(!SafepointMechanism::uses_global_page_poll() || !_safepoint_safe,
1041          "polling page exception on thread safepoint safe");
1042 
1043   // Step 1: Find the nmethod from the return address
1044   address real_return_addr = thread()->saved_exception_pc();
1045 
1046   CodeBlob *cb = CodeCache::find_blob(real_return_addr);
1047   assert(cb != NULL && cb->is_compiled(), "return address should be in nmethod");
1048   CompiledMethod* nm = (CompiledMethod*)cb;
1049 
1050   // Find frame of caller
1051   frame stub_fr = thread()->last_frame();
1052   CodeBlob* stub_cb = stub_fr.cb();
1053   assert(stub_cb->is_safepoint_stub(), "must be a safepoint stub");
1054   RegisterMap map(thread(), true);
1055   frame caller_fr = stub_fr.sender(&map);
1056 
1057   // Should only be poll_return or poll
1058   assert( nm->is_at_poll_or_poll_return(real_return_addr), "should not be at call" );
1059 
1060   // This is a poll immediately before a return. The exception handling code
1061   // has already had the effect of causing the return to occur, so the execution
1062   // will continue immediately after the call. In addition, the oopmap at the
1063   // return point does not mark the return value as an oop (if it is), so
1064   // it needs a handle here to be updated.
1065   if( nm->is_at_poll_return(real_return_addr) ) {
1066     // See if return type is an oop.
1067     bool return_oop = nm->method()->is_returning_oop();
1068     Handle return_value;
1069     if (return_oop) {
1070       // The oop result has been saved on the stack together with all
1071       // the other registers. In order to preserve it over GCs we need
1072       // to keep it in a handle.
1073       oop result = caller_fr.saved_oop_result(&map);
1074       assert(oopDesc::is_oop_or_null(result), "must be oop");
1075       return_value = Handle(thread(), result);
1076       assert(Universe::heap()->is_in_or_null(result), "must be heap pointer");
1077     }
1078 
1079     // Block the thread
1080     SafepointMechanism::block_if_requested(thread());
1081 
1082     // restore oop result, if any
1083     if (return_oop) {
1084       caller_fr.set_saved_oop_result(&map, return_value());
1085     }
1086   }
1087 
1088   // This is a safepoint poll. Verify the return address and block.
1089   else {
1090     set_at_poll_safepoint(true);
1091 
1092     // verify the blob built the "return address" correctly
1093     assert(real_return_addr == caller_fr.pc(), "must match");
1094 
1095     // Block the thread
1096     SafepointMechanism::block_if_requested(thread());
1097     set_at_poll_safepoint(false);
1098 
1099     // If we have a pending async exception deoptimize the frame
1100     // as otherwise we may never deliver it.
1101     if (thread()->has_async_condition()) {
1102       ThreadInVMfromJavaNoAsyncException __tiv(thread());
1103       Deoptimization::deoptimize_frame(thread(), caller_fr.id());
1104     }
1105 
1106     // If an exception has been installed we must check for a pending deoptimization
1107     // Deoptimize frame if exception has been thrown.
1108 
1109     if (thread()->has_pending_exception() ) {
1110       RegisterMap map(thread(), true);
1111       frame caller_fr = stub_fr.sender(&map);
1112       if (caller_fr.is_deoptimized_frame()) {
1113         // The exception patch will destroy registers that are still
1114         // live and will be needed during deoptimization. Defer the
1115         // Async exception should have deferred the exception until the
1116         // next safepoint which will be detected when we get into
1117         // the interpreter so if we have an exception now things
1118         // are messed up.
1119 
1120         fatal("Exception installed and deoptimization is pending");
1121       }
1122     }
1123   }
1124 }
1125 
1126 
1127 // -------------------------------------------------------------------------------------------------------
1128 // Implementation of SafepointTracing
1129 
1130 jlong SafepointTracing::_last_safepoint_begin_time_ns = 0;
1131 jlong SafepointTracing::_last_safepoint_sync_time_ns = 0;
1132 jlong SafepointTracing::_last_safepoint_cleanup_time_ns = 0;
1133 jlong SafepointTracing::_last_safepoint_end_time_ns = 0;
1134 jlong SafepointTracing::_last_safepoint_end_time_epoch_ms = 0;
1135 jlong SafepointTracing::_last_app_time_ns = 0;
1136 int SafepointTracing::_nof_threads = 0;
1137 int SafepointTracing::_nof_running = 0;
1138 int SafepointTracing::_page_trap = 0;
1139 VM_Operation::VMOp_Type SafepointTracing::_current_type;
1140 jlong     SafepointTracing::_max_sync_time = 0;
1141 jlong     SafepointTracing::_max_vmop_time = 0;
1142 uint64_t  SafepointTracing::_op_count[VM_Operation::VMOp_Terminating] = {0};
1143 
1144 void SafepointTracing::init() {
1145   // Application start
1146   _last_safepoint_end_time_ns = os::javaTimeNanos();
1147   // amount of time since epoch
1148   _last_safepoint_end_time_epoch_ms = os::javaTimeMillis();
1149 }
1150 
1151 // Helper method to print the header.
1152 static void print_header(outputStream* st) {
1153   // The number of spaces is significant here, and should match the format
1154   // specifiers in print_statistics().
1155 
1156   st->print("VM Operation                 "
1157             "[ threads: total initial_running ]"
1158             "[ time:       sync    cleanup       vmop      total ]");
1159 
1160   st->print_cr(" page_trap_count");
1161 }
1162 
1163 // This prints a nice table.  To get the statistics to not shift due to the logging uptime
1164 // decorator, use the option as: -Xlog:safepoint+stats:[outputfile]:none
1165 void SafepointTracing::statistics_log() {
1166   LogTarget(Info, safepoint, stats) lt;
1167   assert (lt.is_enabled(), "should only be called when printing statistics is enabled");
1168   LogStream ls(lt);
1169 
1170   static int _cur_stat_index = 0;
1171 
1172   // Print header every 30 entries
1173   if ((_cur_stat_index % 30) == 0) {
1174     print_header(&ls);
1175     _cur_stat_index = 1;  // wrap
1176   } else {
1177     _cur_stat_index++;
1178   }
1179 
1180   ls.print("%-28s [       "
1181            INT32_FORMAT_W(8) "        " INT32_FORMAT_W(8) " "
1182            "]",
1183            VM_Operation::name(_current_type),
1184            _nof_threads,
1185            _nof_running);
1186   ls.print("[       "
1187            INT64_FORMAT_W(10) " " INT64_FORMAT_W(10) " "
1188            INT64_FORMAT_W(10) " " INT64_FORMAT_W(10) " ]",
1189            (int64_t)(_last_safepoint_sync_time_ns - _last_safepoint_begin_time_ns),
1190            (int64_t)(_last_safepoint_cleanup_time_ns - _last_safepoint_sync_time_ns),
1191            (int64_t)(_last_safepoint_end_time_ns - _last_safepoint_cleanup_time_ns),
1192            (int64_t)(_last_safepoint_end_time_ns - _last_safepoint_begin_time_ns));
1193 
1194   ls.print_cr(INT32_FORMAT_W(16), _page_trap);
1195 }
1196 
1197 // This method will be called when VM exits. This tries to summarize the sampling.
1198 // Current thread may already be deleted, so don't use ResourceMark.
1199 void SafepointTracing::statistics_exit_log() {
1200   if (!log_is_enabled(Info, safepoint, stats)) {
1201     return;
1202   }
1203   for (int index = 0; index < VM_Operation::VMOp_Terminating; index++) {
1204     if (_op_count[index] != 0) {
1205       log_info(safepoint, stats)("%-28s" UINT64_FORMAT_W(10), VM_Operation::name(index),
1206                _op_count[index]);
1207     }
1208   }
1209 
1210   log_info(safepoint, stats)("VM operations coalesced during safepoint " INT64_FORMAT,
1211                               VMThread::get_coalesced_count());
1212   log_info(safepoint, stats)("Maximum sync time  " INT64_FORMAT" ns",
1213                               (int64_t)(_max_sync_time));
1214   log_info(safepoint, stats)("Maximum vm operation time (except for Exit VM operation)  "
1215                               INT64_FORMAT " ns",
1216                               (int64_t)(_max_vmop_time));
1217 }
1218 
1219 void SafepointTracing::begin(VM_Operation::VMOp_Type type) {
1220   _op_count[type]++;
1221   _current_type = type;
1222 
1223   // update the time stamp to begin recording safepoint time
1224   _last_safepoint_begin_time_ns = os::javaTimeNanos();
1225   _last_safepoint_sync_time_ns = 0;
1226   _last_safepoint_cleanup_time_ns = 0;
1227 
1228   _last_app_time_ns = _last_safepoint_begin_time_ns - _last_safepoint_end_time_ns;
1229   _last_safepoint_end_time_ns = 0;
1230 
1231   RuntimeService::record_safepoint_begin(_last_app_time_ns);
1232 }
1233 
1234 void SafepointTracing::synchronized(int nof_threads, int nof_running, int traps) {
1235   _last_safepoint_sync_time_ns = os::javaTimeNanos();
1236   _nof_threads = nof_threads;
1237   _nof_running = nof_running;
1238   _page_trap   = traps;
1239   RuntimeService::record_safepoint_synchronized(_last_safepoint_sync_time_ns - _last_safepoint_begin_time_ns);
1240 }
1241 
1242 void SafepointTracing::cleanup() {
1243   _last_safepoint_cleanup_time_ns = os::javaTimeNanos();
1244 }
1245 
1246 void SafepointTracing::end() {
1247   _last_safepoint_end_time_ns = os::javaTimeNanos();
1248   // amount of time since epoch
1249   _last_safepoint_end_time_epoch_ms = os::javaTimeMillis();
1250 
1251   if (_max_sync_time < (_last_safepoint_sync_time_ns - _last_safepoint_begin_time_ns)) {
1252     _max_sync_time = _last_safepoint_sync_time_ns - _last_safepoint_begin_time_ns;
1253   }
1254   if (_max_vmop_time < (_last_safepoint_end_time_ns - _last_safepoint_sync_time_ns)) {
1255     _max_vmop_time = _last_safepoint_end_time_ns - _last_safepoint_sync_time_ns;
1256   }
1257   if (log_is_enabled(Info, safepoint, stats)) {
1258     statistics_log();
1259   }
1260 
1261   log_info(safepoint)(
1262      "Safepoint \"%s\", "
1263      "Time since last: " JLONG_FORMAT " ns, "
1264      "Reaching safepoint: " JLONG_FORMAT " ns, "
1265      "At safepoint: " JLONG_FORMAT " ns, "
1266      "Total: " JLONG_FORMAT " ns",
1267       VM_Operation::name(_current_type),
1268       _last_app_time_ns,
1269       _last_safepoint_cleanup_time_ns - _last_safepoint_begin_time_ns,
1270       _last_safepoint_end_time_ns     - _last_safepoint_cleanup_time_ns,
1271       _last_safepoint_end_time_ns     - _last_safepoint_begin_time_ns
1272      );
1273 
1274   RuntimeService::record_safepoint_end(_last_safepoint_end_time_ns - _last_safepoint_cleanup_time_ns);
1275 }