blob: 2a962784cac29dc7927ad2d6aa2d7c68adb9661c [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
17#include "intern_table.h"
18
Ian Rogers700a4022014-05-19 16:49:03 -070019#include <memory>
20
Mathieu Chartiere401d142015-04-22 13:56:20 -070021#include "gc_root-inl.h"
Ian Rogers7dfb28c2013-08-22 08:18:36 -070022#include "gc/space/image_space.h"
23#include "mirror/dex_cache.h"
24#include "mirror/object_array-inl.h"
25#include "mirror/object-inl.h"
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070026#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "thread.h"
Elliott Hughes814e4032011-08-23 12:07:56 -070028#include "utf.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070029
30namespace art {
31
Ian Rogers7dfb28c2013-08-22 08:18:36 -070032InternTable::InternTable()
Mathieu Chartiereb175f72014-10-31 11:49:27 -070033 : image_added_to_intern_table_(false), log_new_roots_(false),
34 allow_new_interns_(true),
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010035 new_intern_condition_("New intern condition", *Locks::intern_table_lock_) {
Mathieu Chartierc11d9b82013-09-19 10:01:59 -070036}
Elliott Hughesde69d7f2011-08-18 16:49:37 -070037
Brian Carlstroma663ea52011-08-19 23:33:41 -070038size_t InternTable::Size() const {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010039 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -070040 return strong_interns_.Size() + weak_interns_.Size();
Brian Carlstroma663ea52011-08-19 23:33:41 -070041}
42
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -070043size_t InternTable::StrongSize() const {
44 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -070045 return strong_interns_.Size();
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -070046}
47
48size_t InternTable::WeakSize() const {
49 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -070050 return weak_interns_.Size();
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -070051}
52
Elliott Hughescac6cc72011-11-03 20:31:21 -070053void InternTable::DumpForSigQuit(std::ostream& os) const {
Mathieu Chartiereb175f72014-10-31 11:49:27 -070054 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n";
Elliott Hughescac6cc72011-11-03 20:31:21 -070055}
56
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070057void InternTable::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010058 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080059 if ((flags & kVisitRootFlagAllRoots) != 0) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070060 strong_interns_.VisitRoots(visitor);
Mathieu Chartier893263b2014-03-04 11:07:42 -080061 } else if ((flags & kVisitRootFlagNewRoots) != 0) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070062 for (auto& root : new_strong_intern_roots_) {
63 mirror::String* old_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070064 root.VisitRoot(visitor, RootInfo(kRootInternedString));
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070065 mirror::String* new_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartierc2e20622014-11-03 11:41:47 -080066 if (new_ref != old_ref) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070067 // The GC moved a root in the log. Need to search the strong interns and update the
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070068 // corresponding object. This is slow, but luckily for us, this may only happen with a
69 // concurrent moving GC.
Mathieu Chartiereb175f72014-10-31 11:49:27 -070070 strong_interns_.Remove(old_ref);
71 strong_interns_.Insert(new_ref);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070072 }
73 }
Mathieu Chartier893263b2014-03-04 11:07:42 -080074 }
Mathieu Chartier893263b2014-03-04 11:07:42 -080075 if ((flags & kVisitRootFlagClearRootLog) != 0) {
76 new_strong_intern_roots_.clear();
77 }
78 if ((flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
79 log_new_roots_ = true;
80 } else if ((flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
81 log_new_roots_ = false;
Ian Rogers1d54e732013-05-02 21:10:01 -070082 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -070083 // Note: we deliberately don't visit the weak_interns_ table and the immutable image roots.
Brian Carlstrom7e93b502011-08-04 14:16:22 -070084}
85
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070086mirror::String* InternTable::LookupStrong(mirror::String* s) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -070087 return strong_interns_.Find(s);
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -070088}
89
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070090mirror::String* InternTable::LookupWeak(mirror::String* s) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -070091 return weak_interns_.Find(s);
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -070092}
93
Mathieu Chartiereb175f72014-10-31 11:49:27 -070094void InternTable::SwapPostZygoteWithPreZygote() {
95 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
96 weak_interns_.SwapPostZygoteWithPreZygote();
97 strong_interns_.SwapPostZygoteWithPreZygote();
Elliott Hughescf4c6c42011-09-01 15:16:42 -070098}
99
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700100mirror::String* InternTable::InsertStrong(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100101 Runtime* runtime = Runtime::Current();
102 if (runtime->IsActiveTransaction()) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700103 runtime->RecordStrongStringInsertion(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100104 }
Mathieu Chartier893263b2014-03-04 11:07:42 -0800105 if (log_new_roots_) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700106 new_strong_intern_roots_.push_back(GcRoot<mirror::String>(s));
Mathieu Chartier893263b2014-03-04 11:07:42 -0800107 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700108 strong_interns_.Insert(s);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800109 return s;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100110}
111
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700112mirror::String* InternTable::InsertWeak(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100113 Runtime* runtime = Runtime::Current();
114 if (runtime->IsActiveTransaction()) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700115 runtime->RecordWeakStringInsertion(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100116 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700117 weak_interns_.Insert(s);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700118 return s;
119}
120
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700121void InternTable::RemoveStrong(mirror::String* s) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700122 strong_interns_.Remove(s);
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -0700123}
124
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700125void InternTable::RemoveWeak(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100126 Runtime* runtime = Runtime::Current();
127 if (runtime->IsActiveTransaction()) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700128 runtime->RecordWeakStringRemoval(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100129 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700130 weak_interns_.Remove(s);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700131}
132
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100133// Insert/remove methods used to undo changes made during an aborted transaction.
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700134mirror::String* InternTable::InsertStrongFromTransaction(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100135 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700136 return InsertStrong(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100137}
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700138mirror::String* InternTable::InsertWeakFromTransaction(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100139 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700140 return InsertWeak(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100141}
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700142void InternTable::RemoveStrongFromTransaction(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100143 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700144 RemoveStrong(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100145}
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700146void InternTable::RemoveWeakFromTransaction(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100147 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700148 RemoveWeak(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100149}
150
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700151void InternTable::AddImageStringsToTable(gc::space::ImageSpace* image_space) {
Mathieu Chartierbc58ede2014-11-17 12:36:24 -0800152 CHECK(image_space != nullptr);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700153 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
154 if (!image_added_to_intern_table_) {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700155 const ImageHeader* const header = &image_space->GetImageHeader();
156 // Check if we have the interned strings section.
157 const ImageSection& section = header->GetImageSection(ImageHeader::kSectionInternedStrings);
158 if (section.Size() > 0) {
159 ReadFromMemoryLocked(image_space->Begin() + section.Offset());
160 } else {
161 // TODO: Delete this logic?
162 mirror::Object* root = header->GetImageRoot(ImageHeader::kDexCaches);
163 mirror::ObjectArray<mirror::DexCache>* dex_caches = root->AsObjectArray<mirror::DexCache>();
164 for (int32_t i = 0; i < dex_caches->GetLength(); ++i) {
165 mirror::DexCache* dex_cache = dex_caches->Get(i);
166 const DexFile* dex_file = dex_cache->GetDexFile();
167 const size_t num_strings = dex_file->NumStringIds();
168 for (size_t j = 0; j < num_strings; ++j) {
169 mirror::String* image_string = dex_cache->GetResolvedString(j);
170 if (image_string != nullptr) {
171 mirror::String* found = LookupStrong(image_string);
172 if (found == nullptr) {
173 InsertStrong(image_string);
174 } else {
175 DCHECK_EQ(found, image_string);
176 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700177 }
178 }
179 }
180 }
181 image_added_to_intern_table_ = true;
182 }
183}
184
185mirror::String* InternTable::LookupStringFromImage(mirror::String* s)
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700186 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700187 if (image_added_to_intern_table_) {
188 return nullptr;
189 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700190 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace();
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700191 if (image == nullptr) {
192 return nullptr; // No image present.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700193 }
194 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
195 mirror::ObjectArray<mirror::DexCache>* dex_caches = root->AsObjectArray<mirror::DexCache>();
196 const std::string utf8 = s->ToModifiedUtf8();
197 for (int32_t i = 0; i < dex_caches->GetLength(); ++i) {
198 mirror::DexCache* dex_cache = dex_caches->Get(i);
199 const DexFile* dex_file = dex_cache->GetDexFile();
200 // Binary search the dex file for the string index.
201 const DexFile::StringId* string_id = dex_file->FindStringId(utf8.c_str());
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800202 if (string_id != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700203 uint32_t string_idx = dex_file->GetIndexForStringId(*string_id);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800204 // GetResolvedString() contains a RB.
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800205 mirror::String* image_string = dex_cache->GetResolvedString(string_idx);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700206 if (image_string != nullptr) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800207 return image_string;
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700208 }
209 }
210 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800211 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700212}
213
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700214void InternTable::AllowNewInterns() {
215 Thread* self = Thread::Current();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100216 MutexLock mu(self, *Locks::intern_table_lock_);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700217 allow_new_interns_ = true;
218 new_intern_condition_.Broadcast(self);
219}
220
221void InternTable::DisallowNewInterns() {
222 Thread* self = Thread::Current();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100223 MutexLock mu(self, *Locks::intern_table_lock_);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700224 allow_new_interns_ = false;
225}
226
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800227void InternTable::EnsureNewInternsDisallowed() {
228 // Lock and unlock once to ensure that no threads are still in the
229 // middle of adding new interns.
230 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
231 CHECK(!allow_new_interns_);
232}
233
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800234mirror::String* InternTable::Insert(mirror::String* s, bool is_strong) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800235 if (s == nullptr) {
236 return nullptr;
237 }
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700238 Thread* self = Thread::Current();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100239 MutexLock mu(self, *Locks::intern_table_lock_);
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700240 while (UNLIKELY(!allow_new_interns_)) {
241 new_intern_condition_.WaitHoldingLocks(self);
242 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700243 // Check the strong table for a match.
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700244 mirror::String* strong = LookupStrong(s);
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800245 if (strong != nullptr) {
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700246 return strong;
247 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800248 // There is no match in the strong table, check the weak table.
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700249 mirror::String* weak = LookupWeak(s);
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800250 if (weak != nullptr) {
251 if (is_strong) {
252 // A match was found in the weak table. Promote to the strong table.
253 RemoveWeak(weak);
254 return InsertStrong(weak);
255 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700256 return weak;
257 }
nikolay serdjuka446d862015-04-17 19:27:56 +0600258 // Check the image for a match.
259 mirror::String* image = LookupStringFromImage(s);
260 if (image != nullptr) {
261 return is_strong ? InsertStrong(image) : InsertWeak(image);
262 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800263 // No match in the strong table or the weak table. Insert into the strong / weak table.
264 return is_strong ? InsertStrong(s) : InsertWeak(s);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700265}
266
Mathieu Chartiered0fc1d2014-03-21 14:09:35 -0700267mirror::String* InternTable::InternStrong(int32_t utf16_length, const char* utf8_data) {
268 DCHECK(utf8_data != nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700269 return InternStrong(mirror::String::AllocFromModifiedUtf8(
270 Thread::Current(), utf16_length, utf8_data));
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700271}
272
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800273mirror::String* InternTable::InternStrong(const char* utf8_data) {
Mathieu Chartiered0fc1d2014-03-21 14:09:35 -0700274 DCHECK(utf8_data != nullptr);
275 return InternStrong(mirror::String::AllocFromModifiedUtf8(Thread::Current(), utf8_data));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700276}
277
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800278mirror::String* InternTable::InternStrong(mirror::String* s) {
Brian Carlstromc74255f2011-09-11 22:47:39 -0700279 return Insert(s, true);
280}
281
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800282mirror::String* InternTable::InternWeak(mirror::String* s) {
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700283 return Insert(s, false);
284}
285
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800286bool InternTable::ContainsWeak(mirror::String* s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100287 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700288 return LookupWeak(s) == s;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700289}
290
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800291void InternTable::SweepInternTableWeaks(IsMarkedCallback* callback, void* arg) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100292 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700293 weak_interns_.SweepWeaks(callback, arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700294}
295
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700296void InternTable::AddImageInternTable(gc::space::ImageSpace* image_space) {
297 const ImageSection& intern_section = image_space->GetImageHeader().GetImageSection(
298 ImageHeader::kSectionInternedStrings);
299 // Read the string tables from the image.
300 const uint8_t* ptr = image_space->Begin() + intern_section.Offset();
301 const size_t offset = ReadFromMemory(ptr);
302 CHECK_LE(offset, intern_section.Size());
303}
304
305size_t InternTable::ReadFromMemory(const uint8_t* ptr) {
306 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
307 return ReadFromMemoryLocked(ptr);
308}
309
310size_t InternTable::ReadFromMemoryLocked(const uint8_t* ptr) {
311 return strong_interns_.ReadIntoPreZygoteTable(ptr);
312}
313
314size_t InternTable::WriteToMemory(uint8_t* ptr) {
315 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
316 return strong_interns_.WriteFromPostZygoteTable(ptr);
317}
318
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800319std::size_t InternTable::StringHashEquals::operator()(const GcRoot<mirror::String>& root) const {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700320 if (kIsDebugBuild) {
321 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
322 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800323 return static_cast<size_t>(root.Read()->GetHashCode());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700324}
325
326bool InternTable::StringHashEquals::operator()(const GcRoot<mirror::String>& a,
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800327 const GcRoot<mirror::String>& b) const {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700328 if (kIsDebugBuild) {
329 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
330 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800331 return a.Read()->Equals(b.Read());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700332}
333
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700334size_t InternTable::Table::ReadIntoPreZygoteTable(const uint8_t* ptr) {
335 CHECK_EQ(pre_zygote_table_.Size(), 0u);
336 size_t read_count = 0;
337 pre_zygote_table_ = UnorderedSet(ptr, false /* make copy */, &read_count);
338 return read_count;
339}
340
341size_t InternTable::Table::WriteFromPostZygoteTable(uint8_t* ptr) {
342 return post_zygote_table_.WriteToMemory(ptr);
343}
344
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700345void InternTable::Table::Remove(mirror::String* s) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800346 auto it = post_zygote_table_.Find(GcRoot<mirror::String>(s));
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700347 if (it != post_zygote_table_.end()) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800348 post_zygote_table_.Erase(it);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700349 } else {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800350 it = pre_zygote_table_.Find(GcRoot<mirror::String>(s));
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700351 DCHECK(it != pre_zygote_table_.end());
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800352 pre_zygote_table_.Erase(it);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700353 }
354}
355
356mirror::String* InternTable::Table::Find(mirror::String* s) {
357 Locks::intern_table_lock_->AssertHeld(Thread::Current());
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800358 auto it = pre_zygote_table_.Find(GcRoot<mirror::String>(s));
359 if (it != pre_zygote_table_.end()) {
360 return it->Read();
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700361 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800362 it = post_zygote_table_.Find(GcRoot<mirror::String>(s));
363 if (it != post_zygote_table_.end()) {
364 return it->Read();
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700365 }
366 return nullptr;
367}
368
369void InternTable::Table::SwapPostZygoteWithPreZygote() {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700370 if (pre_zygote_table_.Empty()) {
371 std::swap(pre_zygote_table_, post_zygote_table_);
372 VLOG(heap) << "Swapping " << pre_zygote_table_.Size() << " interns to the pre zygote table";
373 } else {
374 // This case happens if read the intern table from the image.
375 VLOG(heap) << "Not swapping due to non-empty pre_zygote_table_";
376 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700377}
378
379void InternTable::Table::Insert(mirror::String* s) {
380 // Always insert the post zygote table, this gets swapped when we create the zygote to be the
381 // pre zygote table.
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800382 post_zygote_table_.Insert(GcRoot<mirror::String>(s));
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700383}
384
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700385void InternTable::Table::VisitRoots(RootVisitor* visitor) {
Mathieu Chartier4809d0a2015-04-07 10:39:04 -0700386 BufferedRootVisitor<kDefaultBufferedRootCount> buffered_visitor(
387 visitor, RootInfo(kRootInternedString));
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700388 for (auto& intern : pre_zygote_table_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700389 buffered_visitor.VisitRoot(intern);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700390 }
391 for (auto& intern : post_zygote_table_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700392 buffered_visitor.VisitRoot(intern);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700393 }
394}
395
396void InternTable::Table::SweepWeaks(IsMarkedCallback* callback, void* arg) {
397 SweepWeaks(&pre_zygote_table_, callback, arg);
398 SweepWeaks(&post_zygote_table_, callback, arg);
399}
400
401void InternTable::Table::SweepWeaks(UnorderedSet* set, IsMarkedCallback* callback, void* arg) {
402 for (auto it = set->begin(), end = set->end(); it != end;) {
403 // This does not need a read barrier because this is called by GC.
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800404 mirror::Object* object = it->Read<kWithoutReadBarrier>();
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700405 mirror::Object* new_object = callback(object, arg);
406 if (new_object == nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800407 it = set->Erase(it);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700408 } else {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800409 *it = GcRoot<mirror::String>(new_object->AsString());
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700410 ++it;
411 }
412 }
413}
414
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800415size_t InternTable::Table::Size() const {
416 return pre_zygote_table_.Size() + post_zygote_table_.Size();
417}
418
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700419} // namespace art