Home
last modified time | relevance | path

Searched refs:MonitorId (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dmonitor_pool.h78 static Monitor* MonitorFromMonitorId(MonitorId mon_id) { in MonitorFromMonitorId()
86 static MonitorId MonitorIdFromMonitor(Monitor* mon) { in MonitorIdFromMonitor()
88 return reinterpret_cast<MonitorId>(mon) >> LockWord::kMonitorIdAlignmentShift; in MonitorIdFromMonitor()
94 static MonitorId ComputeMonitorId(Monitor* mon, Thread* self) { in ComputeMonitorId()
142 Monitor* LookupMonitor(MonitorId mon_id) { in LookupMonitor()
157 MonitorId ComputeMonitorIdInPool(Monitor* mon, Thread* self) { in ComputeMonitorIdInPool()
176 static constexpr size_t MonitorIdToOffset(MonitorId id) { in MonitorIdToOffset()
180 static constexpr MonitorId OffsetToMonitorId(size_t offset) { in OffsetToMonitorId()
181 return static_cast<MonitorId>(offset >> 3); in OffsetToMonitorId()
Dmonitor_inflation.md13 it contains primarily a `MonitorId`. We also inflate significantly contended locks, since the lock
22 A `MonitorId` is logically a pointer to a `Monitor` structure. The `Monitor` data structure is
30 `MonitorId` are the index of the `Monitor` within its chunk. The remaining bits are used to find
36 really triangular.) The high bits of a `MonitorId` are interpreted as row- and column-indices into
55 to allow mapping of an additional `MonitorId`.
Dmonitor_pool.cc126 MonitorId id = mon_uninitialized->monitor_id_; in CreateMonitorInPool()
139 MonitorId id = monitor->monitor_id_; in ReleaseMonitorToPool()
Dlock_word-inl.h40 MonitorId mon_id = (value_ >> kMonitorIdShift) & kMonitorIdMask; in FatLockMonitor()
Dmonitor.h48 using MonitorId = uint32_t; variable
154 MonitorId GetMonitorId() const { in GetMonitorId()
191 Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code, MonitorId id)
433 MonitorId monitor_id_;
Dmonitor.cc131 MonitorId id) in Monitor()