blob: 165d56cf665ff6cbd4618f9d5112e83be5f33b42 [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 Chartier8fc75582018-11-01 14:21:33 -0700177 // Count the number of intern strings in the table.
178 size_t CountInterns(bool visit_boot_images, bool visit_non_boot_images) const
179 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
180
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700181 void DumpForSigQuit(std::ostream& os) const REQUIRES(!Locks::intern_table_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -0700182
Hiroshi Yamauchi30493242016-11-03 13:06:52 -0700183 void BroadcastForNewInterns();
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700184
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700185 // Add all of the strings in the image's intern table into this intern table. This is required so
186 // the intern table is correct.
187 // The visitor arg type is UnorderedSet
188 template <typename Visitor>
189 void AddImageStringsToTable(gc::space::ImageSpace* image_space,
190 const Visitor& visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700191 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700192
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800193 // Add a new intern table for inserting to, previous intern tables are still there but no
194 // longer inserted into and ideally unmodified. This is done to prevent dirty pages.
195 void AddNewTable()
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700196 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700197
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700198 // Write the post zygote intern table to a pointer. Only writes the strong interns since it is
199 // expected that there is no weak interns since this is called from the image writer.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700200 size_t WriteToMemory(uint8_t* ptr) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700201 REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700202
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700203 // Change the weak root state. May broadcast to waiters.
204 void ChangeWeakRootState(gc::WeakRootState new_state)
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 REQUIRES(!Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700206
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700207 private:
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700208 // Table which holds pre zygote and post zygote interned strings. There is one instance for
209 // weak interns and strong interns.
210 class Table {
211 public:
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700212 class InternalTable {
213 public:
214 InternalTable() = default;
215 InternalTable(UnorderedSet&& set, bool is_boot_image)
216 : set_(std::move(set)), is_boot_image_(is_boot_image) {}
217
218 bool Empty() const {
219 return set_.empty();
220 }
221
222 size_t Size() const {
223 return set_.size();
224 }
225
226 bool IsBootImage() const {
227 return is_boot_image_;
228 }
229
230 private:
231 UnorderedSet set_;
232 bool is_boot_image_ = false;
233
234 friend class InternTable;
235 friend class Table;
236 ART_FRIEND_TEST(InternTableTest, CrossHash);
237 };
238
Mathieu Chartier32cc9ee2015-10-15 09:19:15 -0700239 Table();
Mathieu Chartier9e868092016-10-31 14:58:04 -0700240 ObjPtr<mirror::String> Find(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 ObjPtr<mirror::String> Find(const Utf8String& string) REQUIRES_SHARED(Locks::mutator_lock_)
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000243 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700244 void Insert(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700245 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700246 void Remove(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700247 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700248 void VisitRoots(RootVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700249 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -0700250 void SweepWeaks(IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700251 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800252 // Add a new intern table that will only be inserted into from now on.
253 void AddNewTable() REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier90443472015-07-16 20:32:27 -0700254 size_t Size() const REQUIRES(Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800255 // Read and add an intern table from ptr.
256 // Tables read are inserted at the front of the table array. Only checks for conflicts in
257 // debug builds. Returns how many bytes were read.
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700258 // NO_THREAD_SAFETY_ANALYSIS for the visitor that may require locks.
259 template <typename Visitor>
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700260 size_t AddTableFromMemory(const uint8_t* ptr, const Visitor& visitor, bool is_boot_image)
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700261 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier205b7622016-01-06 15:47:09 -0800262 // Write the intern tables to ptr, if there are multiple tables they are combined into a single
263 // one. Returns how many bytes were written.
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800264 size_t WriteToMemory(uint8_t* ptr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700265 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700266
267 private:
Mathieu Chartier97509952015-07-13 14:35:43 -0700268 void SweepWeaks(UnorderedSet* set, IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700269 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700270
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700271 // Add a table to the front of the tables vector.
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700272 void AddInternStrings(UnorderedSet&& intern_strings, bool is_boot_image)
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700273 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
274
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800275 // We call AddNewTable when we create the zygote to reduce private dirty pages caused by
276 // modifying the zygote intern table. The back of table is modified when strings are interned.
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700277 std::vector<InternalTable> tables_;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300278
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700279 friend class InternTable;
Vladimir Markoca8de0a2018-07-04 11:56:08 +0100280 friend class linker::ImageWriter;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300281 ART_FRIEND_TEST(InternTableTest, CrossHash);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700282 };
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700283
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700284 // Insert if non null, otherwise return null. Must be called holding the mutator lock.
285 // If holding_locks is true, then we may also hold other locks. If holding_locks is true, then we
286 // require GC is not running since it is not safe to wait while holding locks.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700287 ObjPtr<mirror::String> Insert(ObjPtr<mirror::String> s, bool is_strong, bool holding_locks)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700288 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700289
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700290 // Add a table from memory to the strong interns.
291 template <typename Visitor>
Mathieu Chartier8cc418e2018-10-31 10:54:30 -0700292 size_t AddTableFromMemory(const uint8_t* ptr, const Visitor& visitor, bool is_boot_image)
Mathieu Chartier74ccee62018-10-10 10:30:29 -0700293 REQUIRES(!Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
294
Mathieu Chartier9e868092016-10-31 14:58:04 -0700295 ObjPtr<mirror::String> InsertStrong(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 ObjPtr<mirror::String> InsertWeak(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700298 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700299 void RemoveStrong(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700300 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700301 void RemoveWeak(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700302 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700303
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100304 // Transaction rollback access.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700305 ObjPtr<mirror::String> InsertStrongFromTransaction(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 ObjPtr<mirror::String> InsertWeakFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700308 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700309 void RemoveStrongFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700310 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700311 void RemoveWeakFromTransaction(ObjPtr<mirror::String> s)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700312 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::intern_table_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100313
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700314 // Change the weak root state. May broadcast to waiters.
315 void ChangeWeakRootStateLocked(gc::WeakRootState new_state)
Mathieu Chartier90443472015-07-16 20:32:27 -0700316 REQUIRES(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700317
318 // Wait until we can read weak roots.
Mathieu Chartier90443472015-07-16 20:32:27 -0700319 void WaitUntilAccessible(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700320 REQUIRES(Locks::intern_table_lock_) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700321
Mathieu Chartier893263b2014-03-04 11:07:42 -0800322 bool log_new_roots_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700323 ConditionVariable weak_intern_condition_ GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700324 // Since this contains (strong) roots, they need a read barrier to
325 // enable concurrent intern table (strong) root scan. Do not
326 // directly access the strings in it. Use functions that contain
327 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100328 Table strong_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700329 std::vector<GcRoot<mirror::String>> new_strong_intern_roots_
Mathieu Chartier893263b2014-03-04 11:07:42 -0800330 GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700331 // Since this contains (weak) roots, they need a read barrier. Do
332 // not directly access the strings in it. Use functions that contain
333 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100334 Table weak_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700335 // Weak root state, used for concurrent system weak processing and more.
336 gc::WeakRootState weak_root_state_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700337
Vladimir Marko4df2d802018-09-27 16:42:44 +0000338 friend class gc::space::ImageSpace;
Vladimir Markoca8de0a2018-07-04 11:56:08 +0100339 friend class linker::ImageWriter;
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700340 friend class Transaction;
Alexey Grebenkin21f23642016-12-02 17:44:54 +0300341 ART_FRIEND_TEST(InternTableTest, CrossHash);
Mathieu Chartiered8990a2015-07-23 14:11:16 -0700342 DISALLOW_COPY_AND_ASSIGN(InternTable);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700343};
344
345} // namespace art
346
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700347#endif // ART_RUNTIME_INTERN_TABLE_H_