blob: 1316532116aca5dc81c7e97aa725637e77d90f07 [file] [log] [blame]
Elliott Hughes5f791332011-09-15 17:45:30 -07001/*
2 * Copyright (C) 2008 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
Elliott Hughes54e7df12011-09-16 11:47:04 -070017#ifndef ART_SRC_MONITOR_H_
18#define ART_SRC_MONITOR_H_
Elliott Hughes5f791332011-09-15 17:45:30 -070019
20#include <pthread.h>
21#include <stdint.h>
22
Elliott Hughes8e4aac52011-09-26 17:03:36 -070023#include <iosfwd>
Elliott Hughesc33a32b2011-10-11 18:18:07 -070024#include <list>
Elliott Hughes8e4aac52011-09-26 17:03:36 -070025
Elliott Hughesc33a32b2011-10-11 18:18:07 -070026#include "heap.h"
Elliott Hughes5f791332011-09-15 17:45:30 -070027#include "mutex.h"
28
29namespace art {
30
31/*
32 * Monitor shape field. Used to distinguish thin locks from fat locks.
33 */
34#define LW_SHAPE_THIN 0
35#define LW_SHAPE_FAT 1
36#define LW_SHAPE_MASK 0x1
37#define LW_SHAPE(x) ((x) & LW_SHAPE_MASK)
38
39/*
40 * Hash state field. Used to signify that an object has had its
41 * identity hash code exposed or relocated.
42 */
43#define LW_HASH_STATE_UNHASHED 0
44#define LW_HASH_STATE_HASHED 1
45#define LW_HASH_STATE_HASHED_AND_MOVED 3
46#define LW_HASH_STATE_MASK 0x3
47#define LW_HASH_STATE_SHIFT 1
48#define LW_HASH_STATE(x) (((x) >> LW_HASH_STATE_SHIFT) & LW_HASH_STATE_MASK)
49
50/*
Elliott Hughes5f791332011-09-15 17:45:30 -070051 * Lock owner field. Contains the thread id of the thread currently
52 * holding the lock.
53 */
54#define LW_LOCK_OWNER_MASK 0xffff
55#define LW_LOCK_OWNER_SHIFT 3
56#define LW_LOCK_OWNER(x) (((x) >> LW_LOCK_OWNER_SHIFT) & LW_LOCK_OWNER_MASK)
57
Elliott Hughes54e7df12011-09-16 11:47:04 -070058class Object;
59class Thread;
Elliott Hughes5f791332011-09-15 17:45:30 -070060
61class Monitor {
62 public:
63 ~Monitor();
64
Elliott Hughesc33a32b2011-10-11 18:18:07 -070065 static bool IsVerbose();
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070066 static void SetVerbose(bool is_verbose);
67
Elliott Hughes5f791332011-09-15 17:45:30 -070068 static uint32_t GetLockOwner(uint32_t raw_lock_word);
69
70 static void MonitorEnter(Thread* thread, Object* obj);
71 static bool MonitorExit(Thread* thread, Object* obj);
72
73 static void Notify(Thread* self, Object* obj);
74 static void NotifyAll(Thread* self, Object* obj);
75 static void Wait(Thread* self, Object* obj, int64_t ms, int32_t ns, bool interruptShouldThrow);
76
Elliott Hughes8e4aac52011-09-26 17:03:36 -070077 static void DescribeWait(std::ostream& os, const Thread* thread);
78
Elliott Hughesc33a32b2011-10-11 18:18:07 -070079 Object* GetObject();
80
Elliott Hughes5f791332011-09-15 17:45:30 -070081 private:
82 Monitor(Object* obj);
83
84 void AppendToWaitSet(Thread* thread);
85 void RemoveFromWaitSet(Thread* thread);
86
87 static void Inflate(Thread* self, Object* obj);
88
89 void Lock(Thread* self);
90 bool Unlock(Thread* thread);
91
92 void Notify(Thread* self);
93 void NotifyAll(Thread* self);
94
95 void Wait(Thread* self, int64_t msec, int32_t nsec, bool interruptShouldThrow);
96
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070097 static bool is_verbose_;
98
Elliott Hughes5f791332011-09-15 17:45:30 -070099 /* Which thread currently owns the lock? */
100 Thread* owner_;
101
102 /* Owner's recursive lock depth */
103 int lock_count_;
104
105 /* What object are we part of (for debugging). */
106 Object* obj_;
107
108 /* Threads currently waiting on this monitor. */
109 Thread* wait_set_;
110
111 Mutex lock_;
112
Elliott Hughes5f791332011-09-15 17:45:30 -0700113 /*
114 * Who last acquired this monitor, when lock sampling is enabled.
115 * Even when enabled, ownerFileName may be NULL.
116 */
117 const char* owner_filename_;
118 uint32_t owner_line_number_;
119
120 friend class Object;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700121 DISALLOW_COPY_AND_ASSIGN(Monitor);
122};
123
124class MonitorList {
125 public:
126 MonitorList();
127 ~MonitorList();
128
129 void Add(Monitor* m);
130
131 void SweepMonitorList(Heap::IsMarkedTester is_marked, void* arg);
132
133 private:
134 Mutex lock_;
135 std::list<Monitor*> list_;
136
137 DISALLOW_COPY_AND_ASSIGN(MonitorList);
Elliott Hughes5f791332011-09-15 17:45:30 -0700138};
139
140/*
141 * Relative timed wait on condition
142 */
143int dvmRelativeCondWait(pthread_cond_t* cond, pthread_mutex_t* mutex, int64_t msec, int32_t nsec);
144
145} // namespace art
146
Elliott Hughes54e7df12011-09-16 11:47:04 -0700147#endif // ART_SRC_MONITOR_H_