blob: 68454fbfd4bfc856cbc9d0c02df783a516150980 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_INTERN_TABLE_H_
18#define ART_RUNTIME_INTERN_TABLE_H_
Brian Carlstrom7e93b502011-08-04 14:16:22 -070019
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070020#include <unordered_set>
Brian Carlstrom7e93b502011-08-04 14:16:22 -070021
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070022#include "atomic.h"
Mathieu Chartierbad02672014-08-25 13:08:22 -070023#include "base/allocator.h"
Mathieu Chartierc2e20622014-11-03 11:41:47 -080024#include "base/hash_set.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080025#include "base/mutex.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070026#include "gc_root.h"
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070027#include "gc/weak_root_state.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080028#include "object_callbacks.h"
29
Brian Carlstrom7e93b502011-08-04 14:16:22 -070030namespace art {
Mathieu Chartier893263b2014-03-04 11:07:42 -080031
Mathieu Chartiereb175f72014-10-31 11:49:27 -070032namespace gc {
33namespace space {
34class ImageSpace;
35} // namespace space
36} // namespace gc
37
Mathieu Chartier893263b2014-03-04 11:07:42 -080038enum VisitRootFlags : uint8_t;
39
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040namespace mirror {
41class String;
42} // namespace mirror
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010043class Transaction;
Brian Carlstrom7e93b502011-08-04 14:16:22 -070044
Elliott Hughescf4c6c42011-09-01 15:16:42 -070045/**
46 * Used to intern strings.
47 *
48 * There are actually two tables: one that holds strong references to its strings, and one that
49 * holds weak references. The former is used for string literals, for which there is an effective
50 * reference from the constant pool. The latter is used for strings interned at runtime via
51 * String.intern. Some code (XML parsers being a prime example) relies on being able to intern
52 * arbitrarily many strings for the duration of a parse without permanently increasing the memory
53 * footprint.
54 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070055class InternTable {
56 public:
57 InternTable();
Brian Carlstroma663ea52011-08-19 23:33:41 -070058
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070059 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -070060 ObjPtr<mirror::String> InternStrong(int32_t utf16_length, const char* utf8_data)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070061 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Roles::uninterruptible_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070062
Mathieu Chartiered8990a2015-07-23 14:11:16 -070063 // Only used by image writer. Special version that may not cause thread suspension since the GC
Roland Levillain91d65e02016-01-19 15:59:16 +000064 // cannot be running while we are doing image writing. Maybe be called while while holding a
Mathieu Chartier90ef3db2015-08-04 15:19:41 -070065 // lock since there will not be thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -070066 ObjPtr<mirror::String> InternStrongImageString(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070067 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070068
69 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -070070 ObjPtr<mirror::String> InternStrong(const char* utf8_data) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -070071 REQUIRES(!Roles::uninterruptible_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070072
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070073 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -070074 ObjPtr<mirror::String> InternStrong(ObjPtr<mirror::String> s)
75 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -070076 REQUIRES(!Roles::uninterruptible_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070077
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070078 // Interns a potentially new string in the 'weak' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -070079 ObjPtr<mirror::String> InternWeak(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -070080 REQUIRES(!Roles::uninterruptible_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070081
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070082 void SweepInternTableWeaks(IsMarkedVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -070083 REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070084
Mathieu Chartier9e868092016-10-31 14:58:04 -070085 bool ContainsWeak(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -070086 REQUIRES(!Locks::intern_table_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070087
Mathieu Chartierfbc31082016-01-24 11:59:56 -080088 // Lookup a strong intern, returns null if not found.
Mathieu Chartier9e868092016-10-31 14:58:04 -070089 ObjPtr<mirror::String> LookupStrong(Thread* self, ObjPtr<mirror::String> s)
Mathieu Chartierfbc31082016-01-24 11:59:56 -080090 REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070091 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -070092 ObjPtr<mirror::String> LookupStrong(Thread* self, uint32_t utf16_length, const char* utf8_data)
Vladimir Markocac5a7e2016-02-22 10:39:50 +000093 REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070094 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -080095
96 // Lookup a weak intern, returns null if not found.
Mathieu Chartier9e868092016-10-31 14:58:04 -070097 ObjPtr<mirror::String> LookupWeak(Thread* self, ObjPtr<mirror::String> s)
Mathieu Chartierfbc31082016-01-24 11:59:56 -080098 REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070099 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800100
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700101 // Total number of interned strings.
Mathieu Chartier90443472015-07-16 20:32:27 -0700102 size_t Size() const REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800103
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700104 // Total number of weakly live interned strings.
Mathieu Chartier90443472015-07-16 20:32:27 -0700105 size_t StrongSize() const REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800106
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700107 // Total number of strongly live interned strings.
Mathieu Chartier90443472015-07-16 20:32:27 -0700108 size_t WeakSize() const REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700109
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700110 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700111 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700112
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700113 void DumpForSigQuit(std::ostream& os) const REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -0700114
Hiroshi Yamauchi30493242016-11-03 13:06:52 -0700115 void BroadcastForNewInterns();
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700116
Mathieu Chartier205b7622016-01-06 15:47:09 -0800117 // Adds all of the resolved image strings from the image spaces into the intern table. The
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800118 // advantage of doing this is preventing expensive DexFile::FindStringId calls. Sets
Mathieu Chartier205b7622016-01-06 15:47:09 -0800119 // images_added_to_intern_table_ to true.
120 void AddImagesStringsToTable(const std::vector<gc::space::ImageSpace*>& image_spaces)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700121 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700122
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800123 // Add a new intern table for inserting to, previous intern tables are still there but no
124 // longer inserted into and ideally unmodified. This is done to prevent dirty pages.
125 void AddNewTable()
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700126 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700127
128 // Read the intern table from memory. The elements aren't copied, the intern hash set data will
129 // point to somewhere within ptr. Only reads the strong interns.
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800130 size_t AddTableFromMemory(const uint8_t* ptr) REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700131 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700132
133 // Write the post zygote intern table to a pointer. Only writes the strong interns since it is
134 // expected that there is no weak interns since this is called from the image writer.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700135 size_t WriteToMemory(uint8_t* ptr) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700136 REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700137
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700138 // Change the weak root state. May broadcast to waiters.
139 void ChangeWeakRootState(gc::WeakRootState new_state)
Mathieu Chartier90443472015-07-16 20:32:27 -0700140 REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700141
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700142 private:
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000143 // Modified UTF-8-encoded string treated as UTF16.
144 class Utf8String {
145 public:
146 Utf8String(uint32_t utf16_length, const char* utf8_data, int32_t hash)
147 : hash_(hash), utf16_length_(utf16_length), utf8_data_(utf8_data) { }
148
149 int32_t GetHash() const { return hash_; }
150 uint32_t GetUtf16Length() const { return utf16_length_; }
151 const char* GetUtf8Data() const { return utf8_data_; }
152
153 private:
154 int32_t hash_;
155 uint32_t utf16_length_;
156 const char* utf8_data_;
157 };
158
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700159 class StringHashEquals {
160 public:
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800161 std::size_t operator()(const GcRoot<mirror::String>& root) const NO_THREAD_SAFETY_ANALYSIS;
162 bool operator()(const GcRoot<mirror::String>& a, const GcRoot<mirror::String>& b) const
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700163 NO_THREAD_SAFETY_ANALYSIS;
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000164
165 // Utf8String can be used for lookup.
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300166 std::size_t operator()(const Utf8String& key) const {
167 // A cast to prevent undesired sign extension.
168 return static_cast<uint32_t>(key.GetHash());
169 }
170
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000171 bool operator()(const GcRoot<mirror::String>& a, const Utf8String& b) const
172 NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700173 };
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800174 class GcRootEmptyFn {
175 public:
176 void MakeEmpty(GcRoot<mirror::String>& item) const {
177 item = GcRoot<mirror::String>();
178 }
179 bool IsEmpty(const GcRoot<mirror::String>& item) const {
180 return item.IsNull();
181 }
182 };
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700183
184 // Table which holds pre zygote and post zygote interned strings. There is one instance for
185 // weak interns and strong interns.
186 class Table {
187 public:
Mathieu Chartier32cc9ee2015-10-15 09:19:15 -0700188 Table();
Mathieu Chartier9e868092016-10-31 14:58:04 -0700189 ObjPtr<mirror::String> Find(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700190 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700191 ObjPtr<mirror::String> Find(const Utf8String& string) REQUIRES_SHARED(Locks::mutator_lock_)
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000192 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700193 void Insert(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700194 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700195 void Remove(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700196 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700197 void VisitRoots(RootVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700198 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -0700199 void SweepWeaks(IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700200 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800201 // Add a new intern table that will only be inserted into from now on.
202 void AddNewTable() REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier90443472015-07-16 20:32:27 -0700203 size_t Size() const REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800204 // Read and add an intern table from ptr.
205 // Tables read are inserted at the front of the table array. Only checks for conflicts in
206 // debug builds. Returns how many bytes were read.
207 size_t AddTableFromMemory(const uint8_t* ptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700208 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier205b7622016-01-06 15:47:09 -0800209 // Write the intern tables to ptr, if there are multiple tables they are combined into a single
210 // one. Returns how many bytes were written.
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800211 size_t WriteToMemory(uint8_t* ptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700212 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700213
214 private:
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800215 typedef HashSet<GcRoot<mirror::String>, GcRootEmptyFn, StringHashEquals, StringHashEquals,
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700216 TrackingAllocator<GcRoot<mirror::String>, kAllocatorTagInternTable>> UnorderedSet;
217
Mathieu Chartier97509952015-07-13 14:35:43 -0700218 void SweepWeaks(UnorderedSet* set, IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700219 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700220
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800221 // We call AddNewTable when we create the zygote to reduce private dirty pages caused by
222 // modifying the zygote intern table. The back of table is modified when strings are interned.
223 std::vector<UnorderedSet> tables_;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300224
225 ART_FRIEND_TEST(InternTableTest, CrossHash);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700226 };
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700227
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700228 // Insert if non null, otherwise return null. Must be called holding the mutator lock.
229 // If holding_locks is true, then we may also hold other locks. If holding_locks is true, then we
230 // require GC is not running since it is not safe to wait while holding locks.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700231 ObjPtr<mirror::String> Insert(ObjPtr<mirror::String> s, bool is_strong, bool holding_locks)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700232 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700233
Mathieu Chartier9e868092016-10-31 14:58:04 -0700234 ObjPtr<mirror::String> LookupStrongLocked(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700235 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700236 ObjPtr<mirror::String> LookupWeakLocked(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700237 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700238 ObjPtr<mirror::String> InsertStrong(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700239 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700240 ObjPtr<mirror::String> InsertWeak(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700241 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700242 void RemoveStrong(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700243 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700244 void RemoveWeak(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700245 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700246
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100247 // Transaction rollback access.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700248 ObjPtr<mirror::String> InsertStrongFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700249 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700250 ObjPtr<mirror::String> InsertWeakFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700251 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700252 void RemoveStrongFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700253 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700254 void RemoveWeakFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700255 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100256
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800257 size_t AddTableFromMemoryLocked(const uint8_t* ptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700258 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700259
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700260 // Change the weak root state. May broadcast to waiters.
261 void ChangeWeakRootStateLocked(gc::WeakRootState new_state)
Mathieu Chartier90443472015-07-16 20:32:27 -0700262 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700263
264 // Wait until we can read weak roots.
Mathieu Chartier90443472015-07-16 20:32:27 -0700265 void WaitUntilAccessible(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700266 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700267
Mathieu Chartier893263b2014-03-04 11:07:42 -0800268 bool log_new_roots_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700269 ConditionVariable weak_intern_condition_ GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700270 // Since this contains (strong) roots, they need a read barrier to
271 // enable concurrent intern table (strong) root scan. Do not
272 // directly access the strings in it. Use functions that contain
273 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100274 Table strong_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700275 std::vector<GcRoot<mirror::String>> new_strong_intern_roots_
Mathieu Chartier893263b2014-03-04 11:07:42 -0800276 GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700277 // Since this contains (weak) roots, they need a read barrier. Do
278 // not directly access the strings in it. Use functions that contain
279 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100280 Table weak_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700281 // Weak root state, used for concurrent system weak processing and more.
282 gc::WeakRootState weak_root_state_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700283
284 friend class Transaction;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300285 ART_FRIEND_TEST(InternTableTest, CrossHash);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700286 DISALLOW_COPY_AND_ASSIGN(InternTable);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700287};
288
289} // namespace art
290
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700291#endif // ART_RUNTIME_INTERN_TABLE_H_