blob: baeb1a9640a58607bf53b323a82bab0800ac8ec6 [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
David Sehrc431b9d2018-03-02 12:01:51 -080022#include "base/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"
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070026#include "gc/weak_root_state.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070027#include "gc_root.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080028
Brian Carlstrom7e93b502011-08-04 14:16:22 -070029namespace art {
Mathieu Chartier893263b2014-03-04 11:07:42 -080030
Andreas Gampe5d08fcc2017-06-05 17:56:46 -070031class IsMarkedVisitor;
32
Mathieu Chartiereb175f72014-10-31 11:49:27 -070033namespace gc {
34namespace space {
35class ImageSpace;
36} // namespace space
37} // namespace gc
38
Mathieu Chartier893263b2014-03-04 11:07:42 -080039enum VisitRootFlags : uint8_t;
40
Vladimir Marko74527972016-11-29 15:57:32 +000041namespace linker {
Vladimir Markoca8de0a2018-07-04 11:56:08 +010042class ImageWriter;
Vladimir Marko74527972016-11-29 15:57:32 +000043} // namespace linker
44
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045namespace mirror {
46class String;
47} // namespace mirror
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010048class Transaction;
Brian Carlstrom7e93b502011-08-04 14:16:22 -070049
Elliott Hughescf4c6c42011-09-01 15:16:42 -070050/**
51 * Used to intern strings.
52 *
53 * There are actually two tables: one that holds strong references to its strings, and one that
54 * holds weak references. The former is used for string literals, for which there is an effective
55 * reference from the constant pool. The latter is used for strings interned at runtime via
56 * String.intern. Some code (XML parsers being a prime example) relies on being able to intern
57 * arbitrarily many strings for the duration of a parse without permanently increasing the memory
58 * footprint.
59 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070060class InternTable {
61 public:
Mathieu Chartier74ccee62018-10-10 10:30:29 -070062 // Modified UTF-8-encoded string treated as UTF16.
63 class Utf8String {
64 public:
65 Utf8String(uint32_t utf16_length, const char* utf8_data, int32_t hash)
66 : hash_(hash), utf16_length_(utf16_length), utf8_data_(utf8_data) { }
67
68 int32_t GetHash() const { return hash_; }
69 uint32_t GetUtf16Length() const { return utf16_length_; }
70 const char* GetUtf8Data() const { return utf8_data_; }
71
72 private:
73 int32_t hash_;
74 uint32_t utf16_length_;
75 const char* utf8_data_;
76 };
77
78 class StringHashEquals {
79 public:
80 std::size_t operator()(const GcRoot<mirror::String>& root) const NO_THREAD_SAFETY_ANALYSIS;
81 bool operator()(const GcRoot<mirror::String>& a, const GcRoot<mirror::String>& b) const
82 NO_THREAD_SAFETY_ANALYSIS;
83
84 // Utf8String can be used for lookup.
85 std::size_t operator()(const Utf8String& key) const {
86 // A cast to prevent undesired sign extension.
87 return static_cast<uint32_t>(key.GetHash());
88 }
89
90 bool operator()(const GcRoot<mirror::String>& a, const Utf8String& b) const
91 NO_THREAD_SAFETY_ANALYSIS;
92 };
93
94 class GcRootEmptyFn {
95 public:
96 void MakeEmpty(GcRoot<mirror::String>& item) const {
97 item = GcRoot<mirror::String>();
98 }
99 bool IsEmpty(const GcRoot<mirror::String>& item) const {
100 return item.IsNull();
101 }
102 };
103
104 using UnorderedSet = HashSet<GcRoot<mirror::String>,
105 GcRootEmptyFn,
106 StringHashEquals,
107 StringHashEquals,
108 TrackingAllocator<GcRoot<mirror::String>, kAllocatorTagInternTable>>;
109
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700110 InternTable();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700111
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700112 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700113 ObjPtr<mirror::String> InternStrong(int32_t utf16_length, const char* utf8_data)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700114 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Roles::uninterruptible_);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700115
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700116 // Only used by image writer. Special version that may not cause thread suspension since the GC
Roland Levillain91d65e02016-01-19 15:59:16 +0000117 // cannot be running while we are doing image writing. Maybe be called while while holding a
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700118 // lock since there will not be thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700119 ObjPtr<mirror::String> InternStrongImageString(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700120 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700121
122 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700123 ObjPtr<mirror::String> InternStrong(const char* utf8_data) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700124 REQUIRES(!Roles::uninterruptible_);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700125
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700126 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700127 ObjPtr<mirror::String> InternStrong(ObjPtr<mirror::String> s)
128 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700129 REQUIRES(!Roles::uninterruptible_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700130
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700131 // Interns a potentially new string in the 'weak' table. May cause thread suspension.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700132 ObjPtr<mirror::String> InternWeak(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700133 REQUIRES(!Roles::uninterruptible_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700134
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700135 void SweepInternTableWeaks(IsMarkedVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700136 REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700137
Mathieu Chartier9e868092016-10-31 14:58:04 -0700138 bool ContainsWeak(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700139 REQUIRES(!Locks::intern_table_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700140
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800141 // Lookup a strong intern, returns null if not found.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700142 ObjPtr<mirror::String> LookupStrong(Thread* self, ObjPtr<mirror::String> s)
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800143 REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700144 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700145 ObjPtr<mirror::String> LookupStrong(Thread* self, uint32_t utf16_length, const char* utf8_data)
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000146 REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700147 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier41c08082018-10-31 11:50:26 -0700148 ObjPtr<mirror::String> LookupStrongLocked(ObjPtr<mirror::String> s)
149 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800150
151 // Lookup a weak intern, returns null if not found.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700152 ObjPtr<mirror::String> LookupWeak(Thread* self, ObjPtr<mirror::String> s)
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800153 REQUIRES(!Locks::intern_table_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700154 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier41c08082018-10-31 11:50:26 -0700155 ObjPtr<mirror::String> LookupWeakLocked(ObjPtr<mirror::String> s)
156 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800157
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700158 // Total number of interned strings.
Mathieu Chartier90443472015-07-16 20:32:27 -0700159 size_t Size() const REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800160
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700161 // Total number of weakly live interned strings.
Mathieu Chartier90443472015-07-16 20:32:27 -0700162 size_t StrongSize() const REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800163
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700164 // Total number of strongly live interned strings.
Mathieu Chartier90443472015-07-16 20:32:27 -0700165 size_t WeakSize() const REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700166
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700167 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700168 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700169
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700170 // Visit all of the interns in the table.
171 template <typename Visitor>
172 void VisitInterns(const Visitor& visitor,
173 bool visit_boot_images,
174 bool visit_non_boot_images)
175 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
176
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700177 void DumpForSigQuit(std::ostream& os) const REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -0700178
Hiroshi Yamauchi30493242016-11-03 13:06:52 -0700179 void BroadcastForNewInterns();
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700180
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700181 // Add all of the strings in the image's intern table into this intern table. This is required so
182 // the intern table is correct.
183 // The visitor arg type is UnorderedSet
184 template <typename Visitor>
185 void AddImageStringsToTable(gc::space::ImageSpace* image_space,
186 const Visitor& visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700187 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700188
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800189 // Add a new intern table for inserting to, previous intern tables are still there but no
190 // longer inserted into and ideally unmodified. This is done to prevent dirty pages.
191 void AddNewTable()
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700192 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700193
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700194 // Write the post zygote intern table to a pointer. Only writes the strong interns since it is
195 // expected that there is no weak interns since this is called from the image writer.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700196 size_t WriteToMemory(uint8_t* ptr) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700197 REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700198
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700199 // Change the weak root state. May broadcast to waiters.
200 void ChangeWeakRootState(gc::WeakRootState new_state)
Mathieu Chartier90443472015-07-16 20:32:27 -0700201 REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700202
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700203 private:
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700204 // Table which holds pre zygote and post zygote interned strings. There is one instance for
205 // weak interns and strong interns.
206 class Table {
207 public:
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700208 class InternalTable {
209 public:
210 InternalTable() = default;
211 InternalTable(UnorderedSet&& set, bool is_boot_image)
212 : set_(std::move(set)), is_boot_image_(is_boot_image) {}
213
214 bool Empty() const {
215 return set_.empty();
216 }
217
218 size_t Size() const {
219 return set_.size();
220 }
221
222 bool IsBootImage() const {
223 return is_boot_image_;
224 }
225
226 private:
227 UnorderedSet set_;
228 bool is_boot_image_ = false;
229
230 friend class InternTable;
231 friend class Table;
232 ART_FRIEND_TEST(InternTableTest, CrossHash);
233 };
234
Mathieu Chartier32cc9ee2015-10-15 09:19:15 -0700235 Table();
Mathieu Chartier9e868092016-10-31 14:58:04 -0700236 ObjPtr<mirror::String> Find(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700237 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700238 ObjPtr<mirror::String> Find(const Utf8String& string) REQUIRES_SHARED(Locks::mutator_lock_)
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000239 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700240 void Insert(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700241 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700242 void Remove(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700243 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700244 void VisitRoots(RootVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700245 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -0700246 void SweepWeaks(IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700247 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800248 // Add a new intern table that will only be inserted into from now on.
249 void AddNewTable() REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier90443472015-07-16 20:32:27 -0700250 size_t Size() const REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800251 // Read and add an intern table from ptr.
252 // Tables read are inserted at the front of the table array. Only checks for conflicts in
253 // debug builds. Returns how many bytes were read.
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700254 // NO_THREAD_SAFETY_ANALYSIS for the visitor that may require locks.
255 template <typename Visitor>
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700256 size_t AddTableFromMemory(const uint8_t* ptr, const Visitor& visitor, bool is_boot_image)
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700257 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier205b7622016-01-06 15:47:09 -0800258 // Write the intern tables to ptr, if there are multiple tables they are combined into a single
259 // one. Returns how many bytes were written.
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800260 size_t WriteToMemory(uint8_t* ptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700261 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700262
263 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700264 void SweepWeaks(UnorderedSet* set, IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700265 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700266
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700267 // Add a table to the front of the tables vector.
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700268 void AddInternStrings(UnorderedSet&& intern_strings, bool is_boot_image)
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700269 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
270
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800271 // We call AddNewTable when we create the zygote to reduce private dirty pages caused by
272 // modifying the zygote intern table. The back of table is modified when strings are interned.
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700273 std::vector<InternalTable> tables_;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300274
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700275 friend class InternTable;
Vladimir Markoca8de0a2018-07-04 11:56:08 +0100276 friend class linker::ImageWriter;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300277 ART_FRIEND_TEST(InternTableTest, CrossHash);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700278 };
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700279
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700280 // Insert if non null, otherwise return null. Must be called holding the mutator lock.
281 // If holding_locks is true, then we may also hold other locks. If holding_locks is true, then we
282 // require GC is not running since it is not safe to wait while holding locks.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700283 ObjPtr<mirror::String> Insert(ObjPtr<mirror::String> s, bool is_strong, bool holding_locks)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700284 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700285
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700286 // Add a table from memory to the strong interns.
287 template <typename Visitor>
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700288 size_t AddTableFromMemory(const uint8_t* ptr, const Visitor& visitor, bool is_boot_image)
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700289 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
290
Mathieu Chartier9e868092016-10-31 14:58:04 -0700291 ObjPtr<mirror::String> InsertStrong(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700292 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700293 ObjPtr<mirror::String> InsertWeak(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700294 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700295 void RemoveStrong(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700296 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700297 void RemoveWeak(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700298 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700299
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100300 // Transaction rollback access.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700301 ObjPtr<mirror::String> InsertStrongFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700302 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700303 ObjPtr<mirror::String> InsertWeakFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700304 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700305 void RemoveStrongFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700306 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700307 void RemoveWeakFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700308 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100309
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700310 // Change the weak root state. May broadcast to waiters.
311 void ChangeWeakRootStateLocked(gc::WeakRootState new_state)
Mathieu Chartier90443472015-07-16 20:32:27 -0700312 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700313
314 // Wait until we can read weak roots.
Mathieu Chartier90443472015-07-16 20:32:27 -0700315 void WaitUntilAccessible(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700316 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700317
Mathieu Chartier893263b2014-03-04 11:07:42 -0800318 bool log_new_roots_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700319 ConditionVariable weak_intern_condition_ GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700320 // Since this contains (strong) roots, they need a read barrier to
321 // enable concurrent intern table (strong) root scan. Do not
322 // directly access the strings in it. Use functions that contain
323 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100324 Table strong_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700325 std::vector<GcRoot<mirror::String>> new_strong_intern_roots_
Mathieu Chartier893263b2014-03-04 11:07:42 -0800326 GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700327 // Since this contains (weak) roots, they need a read barrier. Do
328 // not directly access the strings in it. Use functions that contain
329 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100330 Table weak_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700331 // Weak root state, used for concurrent system weak processing and more.
332 gc::WeakRootState weak_root_state_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700333
Vladimir Marko4df2d802018-09-27 16:42:44 +0000334 friend class gc::space::ImageSpace;
Vladimir Markoca8de0a2018-07-04 11:56:08 +0100335 friend class linker::ImageWriter;
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700336 friend class Transaction;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300337 ART_FRIEND_TEST(InternTableTest, CrossHash);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700338 DISALLOW_COPY_AND_ASSIGN(InternTable);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700339};
340
341} // namespace art
342
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700343#endif // ART_RUNTIME_INTERN_TABLE_H_