blob: 250d468adb2b020d0519195fc03ca517d28736b1 [file] [log] [blame]
Elliott Hughes76b61672012-12-12 17:47:30 -08001/*
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 Chartier858f1c52012-10-17 17:45:55 -070017#include "barrier.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080018
19#include "base/mutex.h"
Mathieu Chartier858f1c52012-10-17 17:45:55 -070020#include "thread.h"
21
22namespace art {
23
Mathieu Chartier35883cc2012-11-13 14:08:12 -080024Barrier::Barrier(int count)
25 : count_(count),
Mathieu Chartier858f1c52012-10-17 17:45:55 -070026 lock_("GC barrier lock"),
27 condition_("GC barrier condition", lock_) {
28}
29
30void Barrier::Pass(Thread* self) {
31 MutexLock mu(self, lock_);
32 SetCountLocked(self, count_ - 1);
33}
34
35void Barrier::Wait(Thread* self) {
36 Increment(self, -1);
37}
38
39void Barrier::Init(Thread* self, int count) {
40 MutexLock mu(self, lock_);
41 SetCountLocked(self, count);
42}
43
44void Barrier::Increment(Thread* self, int delta) {
45 MutexLock mu(self, lock_);
46 SetCountLocked(self, count_ + delta);
47 if (count_ != 0) {
48 condition_.Wait(self);
49 }
50}
51
52void Barrier::SetCountLocked(Thread* self, int count) {
53 count_ = count;
54 if (count_ == 0) {
55 condition_.Broadcast(self);
56 }
57}
58
59Barrier::~Barrier() {
Ian Rogers5bd97c42012-11-27 02:38:26 -080060 CHECK(!count_) << "Attempted to destroy barrier with non zero count";
Mathieu Chartier858f1c52012-10-17 17:45:55 -070061}
62
63}