1 /*
   2  * Copyright (c) 2014, 2015, 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 "gc_implementation/shared/suspendibleThreadSet.hpp"
  27 #include "runtime/mutexLocker.hpp"
  28 #include "runtime/thread.inline.hpp"
  29 
  30 uint   SuspendibleThreadSet::_nthreads          = 0;
  31 uint   SuspendibleThreadSet::_nthreads_stopped  = 0;
  32 bool   SuspendibleThreadSet::_suspend_all       = false;
  33 double SuspendibleThreadSet::_suspend_all_start = 0.0;
  34 
  35 void SuspendibleThreadSet::join() {
  36   MonitorLockerEx ml(STS_lock, Mutex::_no_safepoint_check_flag);
  37   while (_suspend_all) {
  38     ml.wait(Mutex::_no_safepoint_check_flag);
  39   }
  40   _nthreads++;
  41   Thread::current()->set_has_joined_suspendible_thread_set(true);
  42 }
  43 
  44 void SuspendibleThreadSet::leave() {
  45   MonitorLockerEx ml(STS_lock, Mutex::_no_safepoint_check_flag);
  46   assert(_nthreads > 0, "Invalid");
  47   Thread::current()->set_has_joined_suspendible_thread_set(false);
  48   _nthreads--;
  49   if (_suspend_all) {
  50     ml.notify_all();
  51   }
  52 }
  53 
  54 void SuspendibleThreadSet::yield() {
  55   assert(Thread::current()->has_joined_suspendible_thread_set(),
  56     "Must have joined");
  57   if (_suspend_all) {
  58     MonitorLockerEx ml(STS_lock, Mutex::_no_safepoint_check_flag);
  59     if (_suspend_all) {
  60       _nthreads_stopped++;
  61       if (_nthreads_stopped == _nthreads) {
  62         if (ConcGCYieldTimeout > 0) {
  63           double now = os::elapsedTime();
  64           guarantee((now - _suspend_all_start) * 1000.0 < (double)ConcGCYieldTimeout, "Long delay");
  65         }
  66       }
  67       ml.notify_all();
  68       while (_suspend_all) {
  69         ml.wait(Mutex::_no_safepoint_check_flag);
  70       }
  71       assert(_nthreads_stopped > 0, "Invalid");
  72       _nthreads_stopped--;
  73       ml.notify_all();
  74     }
  75   }
  76 }
  77 
  78 void SuspendibleThreadSet::synchronize() {
  79   assert(Thread::current()->has_joined_suspendible_thread_set(),
  80     "Must have joined");
  81   assert(Thread::current()->is_VM_thread(), "Must be the VM thread");
  82   if (ConcGCYieldTimeout > 0) {
  83     _suspend_all_start = os::elapsedTime();
  84   }
  85   MonitorLockerEx ml(STS_lock, Mutex::_no_safepoint_check_flag);
  86   assert(!_suspend_all, "Only one at a time");
  87   _suspend_all = true;
  88   while (_nthreads_stopped < _nthreads) {
  89     ml.wait(Mutex::_no_safepoint_check_flag);
  90   }
  91 }
  92 
  93 void SuspendibleThreadSet::desynchronize() {
  94   assert(Thread::current()->has_joined_suspendible_thread_set(),
  95     "Must have joined");
  96   assert(Thread::current()->is_VM_thread(), "Must be the VM thread");
  97   MonitorLockerEx ml(STS_lock, Mutex::_no_safepoint_check_flag);
  98   assert(_nthreads_stopped == _nthreads, "Invalid");
  99   _suspend_all = false;
 100   ml.notify_all();
 101 }