blob: eadd7a6cb187109ca20696b75040799de41e55be [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
25MonitorPool::MonitorPool() : allocated_ids_lock_("allocated monitor ids lock") {
26}
27
28Monitor* MonitorPool::LookupMonitorFromTable(MonitorId mon_id) {
29 ReaderMutexLock mu(Thread::Current(), allocated_ids_lock_);
30 return table_.Get(mon_id);
31}
32
33MonitorId MonitorPool::AllocMonitorIdFromTable(Thread* self, Monitor* mon) {
34 WriterMutexLock mu(self, allocated_ids_lock_);
35 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
36 if (!allocated_ids_[i]) {
37 allocated_ids_.set(i);
38 MonitorId mon_id = i + 1; // Zero is reserved to mean "invalid".
39 table_.Put(mon_id, mon);
40 return mon_id;
41 }
42 }
43 LOG(FATAL) << "Out of internal monitor ids";
44 return 0;
45}
46
47void MonitorPool::ReleaseMonitorIdFromTable(MonitorId mon_id) {
48 WriterMutexLock mu(Thread::Current(), allocated_ids_lock_);
49 DCHECK(table_.Get(mon_id) != nullptr);
50 table_.erase(mon_id);
51 --mon_id; // Zero is reserved to mean "invalid".
52 DCHECK(allocated_ids_[mon_id]) << mon_id;
53 allocated_ids_.reset(mon_id);
54}
55
56} // namespace art