blob: 30bf9bbaa6579392f6b896221b587540ecb111a7 [file] [log] [blame]
Ian Rogersd9c4fc92013-10-01 19:45:43 -07001/*
2 * Copyright (C) 2011 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#ifndef ART_RUNTIME_LOCK_WORD_INL_H_
18#define ART_RUNTIME_LOCK_WORD_INL_H_
19
20#include "lock_word.h"
21
22namespace art {
23
24inline uint32_t LockWord::ThinLockOwner() const {
25 DCHECK_EQ(GetState(), kThinLocked);
26 return (value_ >> kThinLockOwnerShift) & kThinLockOwnerMask;
27}
28
29inline uint32_t LockWord::ThinLockCount() const {
30 DCHECK_EQ(GetState(), kThinLocked);
31 return (value_ >> kThinLockCountShift) & kThinLockCountMask;
32}
33
34inline Monitor* LockWord::FatLockMonitor() const {
35 DCHECK_EQ(GetState(), kFatLocked);
36 return reinterpret_cast<Monitor*>(value_ << 1);
37}
38
39inline LockWord::LockWord() : value_(0) {
40 DCHECK_EQ(GetState(), kUnlocked);
41}
42
43inline LockWord::LockWord(Monitor* mon)
44 : value_((reinterpret_cast<uint32_t>(mon) >> 1) | (kStateFat << kStateShift)) {
45 DCHECK_EQ(FatLockMonitor(), mon);
46}
47
48} // namespace art
49
50#endif // ART_RUNTIME_LOCK_WORD_INL_H_