Home
last modified time | relevance | path

Searched refs:hash_code (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dgvn.cc87 size_t hash_code = HashCode(instruction); in Add() local
88 size_t index = BucketIndex(hash_code); in Add()
93 buckets_[index] = new (allocator_) Node(instruction, hash_code, buckets_[index]); in Add()
100 size_t hash_code = HashCode(instruction); in Lookup() local
101 size_t index = BucketIndex(hash_code); in Lookup()
104 if (node->GetHashCode() == hash_code) { in Lookup()
116 size_t hash_code = HashCode(instruction); in Contains() local
117 size_t index = BucketIndex(hash_code); in Contains()
203 Node(HInstruction* instruction, size_t hash_code, Node* next) in Node() argument
204 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node()
[all …]
/art/runtime/
Dmonitor_pool.h45 static Monitor* CreateMonitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) in CreateMonitor() argument
48 Monitor* mon = new Monitor(self, owner, obj, hash_code); in CreateMonitor()
52 return GetMonitorPool()->CreateMonitorInPool(self, owner, obj, hash_code); in CreateMonitor()
125 Monitor* CreateMonitorInPool(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
Dlock_word.h149 static LockWord FromHashCode(uint32_t hash_code, uint32_t gc_state) { in FromHashCode() argument
150 CHECK_LE(hash_code, static_cast<uint32_t>(kMaxHash)); in FromHashCode()
152 return LockWord((hash_code << kHashShift) | in FromHashCode()
Dmonitor_pool.cc109 int32_t hash_code) in CreateMonitorInPool() argument
127 Monitor* monitor = new(mon_uninitialized) Monitor(self, owner, obj, hash_code, id); in CreateMonitorInPool()
Dmonitor.h134 uint32_t hash_code) REQUIRES_SHARED(Locks::mutator_lock_);
157 Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
159 Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code, MonitorId id)
180 static void Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
Dmonitor.cc79 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) in Monitor() argument
87 hash_code_(hash_code), in Monitor()
101 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code, in Monitor() argument
110 hash_code_(hash_code), in Monitor()
820 void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) { in Inflate() argument
824 Monitor* m = MonitorPool::CreateMonitor(self, owner, obj, hash_code); in Inflate()
831 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code in Inflate()
842 uint32_t hash_code) { in InflateThinLocked() argument
847 Inflate(self, self, obj.Get(), hash_code); in InflateThinLocked()
864 Inflate(self, owner, obj.Get(), hash_code); in InflateThinLocked()
/art/runtime/mirror/
Dstring.cc64 int32_t hash_code = 0; in ComputeHashCode() local
66 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode()
68 hash_code = ComputeUtf16Hash(GetValue(), GetLength()); in ComputeHashCode()
70 SetHashCode(hash_code); in ComputeHashCode()
71 return hash_code; in ComputeHashCode()
Dobject_test.cc726 int32_t hash_code = mirror::Object::GenerateIdentityHashCode(); in TEST_F() local
727 EXPECT_NE(hash_code, 0); in TEST_F()
/art/runtime/jdwp/
Dobject_registry.cc269 int32_t hash_code = entry->identity_hash_code; in DisposeObject() local
270 for (auto inner_it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end(); in DisposeObject()
271 inner_it != end && inner_it->first == hash_code; ++inner_it) { in DisposeObject()