Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 17 | #include "barrier.h" |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 18 | |
| 19 | #include "base/mutex.h" |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 20 | #include "thread.h" |
| 21 | |
| 22 | namespace art { |
| 23 | |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 24 | Barrier::Barrier(int count) |
| 25 | : count_(count), |
Ian Rogers | 8409ec4 | 2014-11-04 17:57:02 -0800 | [diff] [blame] | 26 | lock_("GC barrier lock", kThreadSuspendCountLock), |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 27 | condition_("GC barrier condition", lock_) { |
| 28 | } |
| 29 | |
| 30 | void Barrier::Pass(Thread* self) { |
| 31 | MutexLock mu(self, lock_); |
| 32 | SetCountLocked(self, count_ - 1); |
| 33 | } |
| 34 | |
| 35 | void Barrier::Wait(Thread* self) { |
| 36 | Increment(self, -1); |
| 37 | } |
| 38 | |
| 39 | void Barrier::Init(Thread* self, int count) { |
| 40 | MutexLock mu(self, lock_); |
| 41 | SetCountLocked(self, count); |
| 42 | } |
| 43 | |
| 44 | void Barrier::Increment(Thread* self, int delta) { |
| 45 | MutexLock mu(self, lock_); |
| 46 | SetCountLocked(self, count_ + delta); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 47 | |
| 48 | // Increment the count. If it becomes zero after the increment |
| 49 | // then all the threads have already passed the barrier. If |
| 50 | // it is non-zero then there is still one or more threads |
| 51 | // that have not yet called the Pass function. When the |
| 52 | // Pass function is called by the last thread, the count will |
| 53 | // be decremented to zero and a Broadcast will be made on the |
| 54 | // condition variable, thus waking this up. |
Hans Boehm | 5567c11 | 2014-12-02 18:31:31 -0800 | [diff] [blame] | 55 | while (count_ != 0) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 56 | condition_.Wait(self); |
| 57 | } |
| 58 | } |
| 59 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 60 | bool Barrier::Increment(Thread* self, int delta, uint32_t timeout_ms) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 61 | MutexLock mu(self, lock_); |
| 62 | SetCountLocked(self, count_ + delta); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 63 | bool timed_out = false; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 64 | if (count_ != 0) { |
Hans Boehm | 5567c11 | 2014-12-02 18:31:31 -0800 | [diff] [blame] | 65 | uint32_t timeout_ns = 0; |
| 66 | uint64_t abs_timeout = NanoTime() + MsToNs(timeout_ms); |
| 67 | for (;;) { |
| 68 | timed_out = condition_.TimedWait(self, timeout_ms, timeout_ns); |
| 69 | if (timed_out || count_ == 0) return timed_out; |
| 70 | // Compute time remaining on timeout. |
| 71 | uint64_t now = NanoTime(); |
| 72 | int64_t time_left = abs_timeout - now; |
| 73 | if (time_left <= 0) return true; |
| 74 | timeout_ns = time_left % (1000*1000); |
| 75 | timeout_ms = time_left / (1000*1000); |
| 76 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 77 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 78 | return timed_out; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 79 | } |
| 80 | |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 81 | void Barrier::SetCountLocked(Thread* self, int count) { |
| 82 | count_ = count; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 83 | if (count == 0) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 84 | condition_.Broadcast(self); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | Barrier::~Barrier() { |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 89 | CHECK(!count_) << "Attempted to destroy barrier with non zero count"; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Brian Carlstrom | 0cd7ec2 | 2013-07-17 23:40:20 -0700 | [diff] [blame] | 92 | } // namespace art |