blob: 19e569d2042f881abf893cca89bbe295aaaede5b [file] [log] [blame]
Ian Rogersef7d42f2014-01-06 12:55:46 -08001/*
2 * Copyright (C) 2014 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
17#include "monitor_pool.h"
18
19#include "base/logging.h"
20#include "base/mutex-inl.h"
21#include "monitor.h"
22
23namespace art {
24
Ian Rogers85ae5172014-03-05 23:40:59 -080025MonitorPool::MonitorPool() : allocated_ids_lock_("allocated monitor ids lock",
26 LockLevel::kMonitorPoolLock) {
Ian Rogersef7d42f2014-01-06 12:55:46 -080027}
28
29Monitor* MonitorPool::LookupMonitorFromTable(MonitorId mon_id) {
30 ReaderMutexLock mu(Thread::Current(), allocated_ids_lock_);
31 return table_.Get(mon_id);
32}
33
34MonitorId MonitorPool::AllocMonitorIdFromTable(Thread* self, Monitor* mon) {
35 WriterMutexLock mu(self, allocated_ids_lock_);
36 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
37 if (!allocated_ids_[i]) {
38 allocated_ids_.set(i);
39 MonitorId mon_id = i + 1; // Zero is reserved to mean "invalid".
40 table_.Put(mon_id, mon);
41 return mon_id;
42 }
43 }
44 LOG(FATAL) << "Out of internal monitor ids";
45 return 0;
46}
47
48void MonitorPool::ReleaseMonitorIdFromTable(MonitorId mon_id) {
49 WriterMutexLock mu(Thread::Current(), allocated_ids_lock_);
50 DCHECK(table_.Get(mon_id) != nullptr);
51 table_.erase(mon_id);
52 --mon_id; // Zero is reserved to mean "invalid".
53 DCHECK(allocated_ids_[mon_id]) << mon_id;
54 allocated_ids_.reset(mon_id);
55}
56
57} // namespace art