From 4e6a31eb97f22f4480827474b30b9e64f396eace Mon Sep 17 00:00:00 2001 From: Mathieu Chartier Date: Thu, 31 Oct 2013 10:35:05 -0700 Subject: Lazily compute object identity hash codes. Before, we computed identity hashcodes whenever we inflated a monitor. This caused issues since it meant that we would have all of these hash codes in the image, causing locks to excessively inflate during application run time. This change makes it so that we lazily compute hash codes. When a thin lock gets inflated, we assign a hash code of 0 assigned to it. This value signifies no hash code. When we try to get the identity hash code of an object with an inflated monitor, it gets computed if it is 0. Change-Id: Iae6acd1960515a36e74644e5b1323ff336731806 --- runtime/monitor.h | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'runtime/monitor.h') diff --git a/runtime/monitor.h b/runtime/monitor.h index c464400..09cfafa 100644 --- a/runtime/monitor.h +++ b/runtime/monitor.h @@ -24,6 +24,7 @@ #include #include +#include "atomic_integer.h" #include "base/mutex.h" #include "root_visitor.h" #include "thread_state.h" @@ -98,17 +99,19 @@ class Monitor { return owner_; } - int32_t GetHashCode() const { - return hash_code_; - } + int32_t GetHashCode(); bool IsLocked() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); + bool HasHashCode() const { + return hash_code_.load() != 0; + } + static void InflateThinLocked(Thread* self, mirror::Object* obj, LockWord lock_word, uint32_t hash_code) NO_THREAD_SAFETY_ANALYSIS; private: - explicit Monitor(Thread* owner, mirror::Object* obj, uint32_t hash_code) + explicit Monitor(Thread* owner, mirror::Object* obj, int32_t hash_code) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); // Install the monitor into its object, may fail if another thread installs a different monitor @@ -179,8 +182,8 @@ class Monitor { // Threads currently waiting on this monitor. Thread* wait_set_ GUARDED_BY(monitor_lock_); - // Stored object hash code, always generated. - const uint32_t hash_code_; + // Stored object hash code, generated lazily by GetHashCode. + AtomicInteger hash_code_; // Method and dex pc where the lock owner acquired the lock, used when lock // sampling is enabled. locking_method_ may be null if the lock is currently -- cgit v1.1