Searched refs:code_object_registry_ (Results 1 – 4 of 4) sorted by relevance
18 (code_object_registry_.empty() || code_object_registry_.back() < code); in RegisterNewlyAllocatedCodeObject()20 code_object_registry_.push_back(code); in RegisterNewlyAllocatedCodeObject()27 DCHECK(code_object_registry_.empty() || code_object_registry_.back() < code); in RegisterAlreadyExistingCodeObject()28 code_object_registry_.push_back(code); in RegisterAlreadyExistingCodeObject()34 code_object_registry_.clear(); in Clear()42 code_object_registry_.shrink_to_fit(); in Finalize()48 std::sort(code_object_registry_.begin(), code_object_registry_.end()); in Contains()51 return (std::binary_search(code_object_registry_.begin(), in Contains()52 code_object_registry_.end(), object)); in Contains()59 std::sort(code_object_registry_.begin(), code_object_registry_.end()); in GetCodeObjectStartFromInnerAddress()[all …]
173 code_object_registry_ = new CodeObjectRegistry(); in MemoryChunk()175 code_object_registry_ = nullptr; in MemoryChunk()239 if (code_object_registry_ != nullptr) { in ReleaseAllocatedMemoryNeededForWritableChunk()240 delete code_object_registry_; in ReleaseAllocatedMemoryNeededForWritableChunk()241 code_object_registry_ = nullptr; in ReleaseAllocatedMemoryNeededForWritableChunk()465 DCHECK_EQ(reinterpret_cast<Address>(&chunk->code_object_registry_) - in ValidateOffsets()
33 mutable std::vector<Address> code_object_registry_;
204 CodeObjectRegistry* GetCodeObjectRegistry() { return code_object_registry_; } in GetCodeObjectRegistry()284 CodeObjectRegistry* code_object_registry_; variable