blob: 97ce73c52ed8f445e57b28e84b799bbe27ccdd21 [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 Chartierbad02672014-08-25 13:08:22 -070022#include "base/allocator.h"
Mathieu Chartierc2e20622014-11-03 11:41:47 -080023#include "base/hash_set.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080024#include "base/mutex.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070025#include "gc_root.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080026#include "object_callbacks.h"
27
Brian Carlstrom7e93b502011-08-04 14:16:22 -070028namespace art {
Mathieu Chartier893263b2014-03-04 11:07:42 -080029
Mathieu Chartiereb175f72014-10-31 11:49:27 -070030namespace gc {
31namespace space {
32class ImageSpace;
33} // namespace space
34} // namespace gc
35
Mathieu Chartier893263b2014-03-04 11:07:42 -080036enum VisitRootFlags : uint8_t;
37
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038namespace mirror {
39class String;
40} // namespace mirror
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010041class Transaction;
Brian Carlstrom7e93b502011-08-04 14:16:22 -070042
Elliott Hughescf4c6c42011-09-01 15:16:42 -070043/**
44 * Used to intern strings.
45 *
46 * There are actually two tables: one that holds strong references to its strings, and one that
47 * holds weak references. The former is used for string literals, for which there is an effective
48 * reference from the constant pool. The latter is used for strings interned at runtime via
49 * String.intern. Some code (XML parsers being a prime example) relies on being able to intern
50 * arbitrarily many strings for the duration of a parse without permanently increasing the memory
51 * footprint.
52 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070053class InternTable {
54 public:
55 InternTable();
Brian Carlstroma663ea52011-08-19 23:33:41 -070056
Elliott Hughescf4c6c42011-09-01 15:16:42 -070057 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058 mirror::String* InternStrong(int32_t utf16_length, const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070059 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070060
61 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062 mirror::String* InternStrong(const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070063 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070064
65 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080066 mirror::String* InternStrong(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070067
Elliott Hughescf4c6c42011-09-01 15:16:42 -070068 // Interns a potentially new string in the 'weak' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069 mirror::String* InternWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070070
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070071 void SweepInternTableWeaks(IsMarkedCallback* callback, void* arg)
72 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070073
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080074 bool ContainsWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070075
Mathieu Chartiereb175f72014-10-31 11:49:27 -070076 // Total number of interned strings.
77 size_t Size() const LOCKS_EXCLUDED(Locks::intern_table_lock_);
78 // Total number of weakly live interned strings.
79 size_t StrongSize() const LOCKS_EXCLUDED(Locks::intern_table_lock_);
80 // Total number of strongly live interned strings.
81 size_t WeakSize() const LOCKS_EXCLUDED(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070082
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070083 void VisitRoots(RootVisitor* visitor, VisitRootFlags flags)
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070084 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -070085
Elliott Hughescac6cc72011-11-03 20:31:21 -070086 void DumpForSigQuit(std::ostream& os) const;
87
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080088 void DisallowNewInterns() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -070089 void AllowNewInterns() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080090 void EnsureNewInternsDisallowed() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -070091
Mathieu Chartiereb175f72014-10-31 11:49:27 -070092 // Adds all of the resolved image strings from the image space into the intern table. The
93 // advantage of doing this is preventing expensive DexFile::FindStringId calls.
94 void AddImageStringsToTable(gc::space::ImageSpace* image_space)
95 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) LOCKS_EXCLUDED(Locks::intern_table_lock_);
96 // Copy the post zygote tables to pre zygote to save memory by preventing dirty pages.
97 void SwapPostZygoteWithPreZygote()
98 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) LOCKS_EXCLUDED(Locks::intern_table_lock_);
99
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700100 // Add an intern table which was serialized to the image.
101 void AddImageInternTable(gc::space::ImageSpace* image_space)
102 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) LOCKS_EXCLUDED(Locks::intern_table_lock_);
103
104 // Read the intern table from memory. The elements aren't copied, the intern hash set data will
105 // point to somewhere within ptr. Only reads the strong interns.
106 size_t ReadFromMemory(const uint8_t* ptr) LOCKS_EXCLUDED(Locks::intern_table_lock_)
107 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
108
109 // Write the post zygote intern table to a pointer. Only writes the strong interns since it is
110 // expected that there is no weak interns since this is called from the image writer.
111 size_t WriteToMemory(uint8_t* ptr) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
112 LOCKS_EXCLUDED(Locks::intern_table_lock_);
113
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700114 private:
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700115 class StringHashEquals {
116 public:
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800117 std::size_t operator()(const GcRoot<mirror::String>& root) const NO_THREAD_SAFETY_ANALYSIS;
118 bool operator()(const GcRoot<mirror::String>& a, const GcRoot<mirror::String>& b) const
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700119 NO_THREAD_SAFETY_ANALYSIS;
120 };
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800121 class GcRootEmptyFn {
122 public:
123 void MakeEmpty(GcRoot<mirror::String>& item) const {
124 item = GcRoot<mirror::String>();
125 }
126 bool IsEmpty(const GcRoot<mirror::String>& item) const {
127 return item.IsNull();
128 }
129 };
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700130
131 // Table which holds pre zygote and post zygote interned strings. There is one instance for
132 // weak interns and strong interns.
133 class Table {
134 public:
135 mirror::String* Find(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
136 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
137 void Insert(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
138 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
139 void Remove(mirror::String* s)
140 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
141 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700142 void VisitRoots(RootVisitor* visitor)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700143 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
144 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
145 void SweepWeaks(IsMarkedCallback* callback, void* arg)
146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
147 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
148 void SwapPostZygoteWithPreZygote() EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800149 size_t Size() const EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700150 // Read pre zygote table is called from ReadFromMemory which happens during runtime creation
151 // when we load the image intern table. Returns how many bytes were read.
152 size_t ReadIntoPreZygoteTable(const uint8_t* ptr)
153 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_)
154 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
155 // The image writer calls WritePostZygoteTable through WriteToMemory, it writes the interns in
156 // the post zygote table. Returns how many bytes were written.
157 size_t WriteFromPostZygoteTable(uint8_t* ptr)
158 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_)
159 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700160
161 private:
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800162 typedef HashSet<GcRoot<mirror::String>, GcRootEmptyFn, StringHashEquals, StringHashEquals,
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700163 TrackingAllocator<GcRoot<mirror::String>, kAllocatorTagInternTable>> UnorderedSet;
164
165 void SweepWeaks(UnorderedSet* set, IsMarkedCallback* callback, void* arg)
166 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
167 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
168
169 // We call SwapPostZygoteWithPreZygote when we create the zygote to reduce private dirty pages
170 // caused by modifying the zygote intern table hash table. The pre zygote table are the
171 // interned strings which were interned before we created the zygote space. Post zygote is self
172 // explanatory.
173 UnorderedSet pre_zygote_table_;
174 UnorderedSet post_zygote_table_;
175 };
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700176
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700177 // Insert if non null, otherwise return null.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800178 mirror::String* Insert(mirror::String* s, bool is_strong)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100179 LOCKS_EXCLUDED(Locks::intern_table_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700180 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700181
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700182 mirror::String* LookupStrong(mirror::String* s)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700183 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
184 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700185 mirror::String* LookupWeak(mirror::String* s)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700186 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
187 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700188 mirror::String* InsertStrong(mirror::String* s)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700189 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100190 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700191 mirror::String* InsertWeak(mirror::String* s)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700192 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100193 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700194 void RemoveStrong(mirror::String* s)
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -0700195 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100196 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700197 void RemoveWeak(mirror::String* s)
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -0700198 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
199 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700200
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100201 // Transaction rollback access.
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700202 mirror::String* LookupStringFromImage(mirror::String* s)
203 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
204 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700205 mirror::String* InsertStrongFromTransaction(mirror::String* s)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700206 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100207 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700208 mirror::String* InsertWeakFromTransaction(mirror::String* s)
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700209 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100210 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700211 void RemoveStrongFromTransaction(mirror::String* s)
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -0700212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100213 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700214 void RemoveWeakFromTransaction(mirror::String* s)
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -0700215 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100216 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
217 friend class Transaction;
218
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700219 size_t ReadFromMemoryLocked(const uint8_t* ptr)
220 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_)
221 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
222
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700223 bool image_added_to_intern_table_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800224 bool log_new_roots_ GUARDED_BY(Locks::intern_table_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100225 bool allow_new_interns_ GUARDED_BY(Locks::intern_table_lock_);
226 ConditionVariable new_intern_condition_ GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700227 // Since this contains (strong) roots, they need a read barrier to
228 // enable concurrent intern table (strong) root scan. Do not
229 // directly access the strings in it. Use functions that contain
230 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100231 Table strong_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700232 std::vector<GcRoot<mirror::String>> new_strong_intern_roots_
Mathieu Chartier893263b2014-03-04 11:07:42 -0800233 GUARDED_BY(Locks::intern_table_lock_);
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700234 // Since this contains (weak) roots, they need a read barrier. Do
235 // not directly access the strings in it. Use functions that contain
236 // read barriers.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100237 Table weak_interns_ GUARDED_BY(Locks::intern_table_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700238};
239
240} // namespace art
241
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700242#endif // ART_RUNTIME_INTERN_TABLE_H_