1 /*
   2  * Copyright (c) 2018, 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 "runtime/atomic.hpp"
  27 #include "runtime/orderAccess.hpp"
  28 #include "runtime/os.hpp"
  29 #include "utilities/waitBarrier_generic.hpp"
  30 #include "utilities/spinYield.hpp"
  31 
  32 void GenericWaitBarrier::arm(int barrier_tag) {
  33   assert(_barrier_tag == 0, "Already armed");
  34   assert(_waiters == 0, "We left a thread hanging");
  35   _barrier_tag = barrier_tag;
  36   _waiters = 0;
  37   OrderAccess::fence();
  38 }
  39 
  40 void GenericWaitBarrier::disarm() {
  41   assert(_barrier_tag != 0, "Not armed");
  42   _barrier_tag = 0;
  43   OrderAccess::fence();
  44 }
  45 
  46 int GenericWaitBarrier::wake_if_needed() {
  47   assert(_barrier_tag == 0, "Not disarmed");
  48   int w = _waiters;
  49   if (w == 0) {
  50     // Load of _barrier_threads in caller must
  51     // not pass the load of _waiters.
  52     OrderAccess::loadload();
  53     return 0;
  54   }
  55   assert(w > 0, "Bad counting");
  56   if (Atomic::cmpxchg(w - 1, &_waiters, w) == w) {
  57     _sem_barrier.signal();
  58     return w - 1;
  59   }
  60   return w;
  61 }
  62 
  63 void GenericWaitBarrier::wake() {
  64   assert(_barrier_tag == 0, "Not disarmed");
  65   int w = _waiters;
  66   int left;
  67   SpinYield sp;
  68   do {
  69     left = GenericWaitBarrier::wake_if_needed();
  70     if (left == 0 && _barrier_threads > 0) {
  71       sp.wait();
  72     }
  73   } while (left > 0 || _barrier_threads > 0);
  74   OrderAccess::fence();
  75 }
  76 
  77 void GenericWaitBarrier::wait(int barrier_tag) {
  78   assert(barrier_tag != 0, "Trying to wait on disarmed value");
  79   Atomic::add(1, &_barrier_threads);
  80   if (barrier_tag != 0 && barrier_tag == _barrier_tag) {
  81     Atomic::add(1, &_waiters);
  82     _sem_barrier.wait();
  83     GenericWaitBarrier::wake_if_needed();
  84   }
  85   Atomic::add(-1, &_barrier_threads);
  86 }