blob: d885226bb07fbe7d64b6dfc4f18e9b92c34ca1d3 [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"
Mathieu Chartier97509952015-07-13 14:35:43 -070022#include "gc/collector/garbage_collector.h"
Ian Rogers7dfb28c2013-08-22 08:18:36 -070023#include "gc/space/image_space.h"
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070024#include "gc/weak_root_state.h"
Mathieu Chartier4a26f172016-01-26 14:26:18 -080025#include "image-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010026#include "mirror/dex_cache-inl.h"
Ian Rogers7dfb28c2013-08-22 08:18:36 -070027#include "mirror/object_array-inl.h"
28#include "mirror/object-inl.h"
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070029#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "thread.h"
Elliott Hughes814e4032011-08-23 12:07:56 -070031#include "utf.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070032
33namespace art {
34
Ian Rogers7dfb28c2013-08-22 08:18:36 -070035InternTable::InternTable()
Vladimir Marko1a1de672016-10-13 12:53:15 +010036 : log_new_roots_(false),
Mathieu Chartier14c3bf92015-07-13 14:35:43 -070037 weak_intern_condition_("New intern condition", *Locks::intern_table_lock_),
38 weak_root_state_(gc::kWeakRootStateNormal) {
Mathieu Chartierc11d9b82013-09-19 10:01:59 -070039}
Elliott Hughesde69d7f2011-08-18 16:49:37 -070040
Brian Carlstroma663ea52011-08-19 23:33:41 -070041size_t InternTable::Size() const {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010042 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -070043 return strong_interns_.Size() + weak_interns_.Size();
Brian Carlstroma663ea52011-08-19 23:33:41 -070044}
45
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -070046size_t InternTable::StrongSize() const {
47 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -070048 return strong_interns_.Size();
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -070049}
50
51size_t InternTable::WeakSize() const {
52 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartiereb175f72014-10-31 11:49:27 -070053 return weak_interns_.Size();
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -070054}
55
Elliott Hughescac6cc72011-11-03 20:31:21 -070056void InternTable::DumpForSigQuit(std::ostream& os) const {
Mathieu Chartiereb175f72014-10-31 11:49:27 -070057 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n";
Elliott Hughescac6cc72011-11-03 20:31:21 -070058}
59
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070060void InternTable::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010061 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080062 if ((flags & kVisitRootFlagAllRoots) != 0) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070063 strong_interns_.VisitRoots(visitor);
Mathieu Chartier893263b2014-03-04 11:07:42 -080064 } else if ((flags & kVisitRootFlagNewRoots) != 0) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070065 for (auto& root : new_strong_intern_roots_) {
Mathieu Chartier9e868092016-10-31 14:58:04 -070066 ObjPtr<mirror::String> old_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070067 root.VisitRoot(visitor, RootInfo(kRootInternedString));
Mathieu Chartier9e868092016-10-31 14:58:04 -070068 ObjPtr<mirror::String> new_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartierc2e20622014-11-03 11:41:47 -080069 if (new_ref != old_ref) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -070070 // The GC moved a root in the log. Need to search the strong interns and update the
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070071 // corresponding object. This is slow, but luckily for us, this may only happen with a
72 // concurrent moving GC.
Mathieu Chartiereb175f72014-10-31 11:49:27 -070073 strong_interns_.Remove(old_ref);
74 strong_interns_.Insert(new_ref);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070075 }
76 }
Mathieu Chartier893263b2014-03-04 11:07:42 -080077 }
Mathieu Chartier893263b2014-03-04 11:07:42 -080078 if ((flags & kVisitRootFlagClearRootLog) != 0) {
79 new_strong_intern_roots_.clear();
80 }
81 if ((flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
82 log_new_roots_ = true;
83 } else if ((flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
84 log_new_roots_ = false;
Ian Rogers1d54e732013-05-02 21:10:01 -070085 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -070086 // Note: we deliberately don't visit the weak_interns_ table and the immutable image roots.
Brian Carlstrom7e93b502011-08-04 14:16:22 -070087}
88
Mathieu Chartier9e868092016-10-31 14:58:04 -070089ObjPtr<mirror::String> InternTable::LookupWeak(Thread* self, ObjPtr<mirror::String> s) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -080090 MutexLock mu(self, *Locks::intern_table_lock_);
91 return LookupWeakLocked(s);
Mathieu Chartierf7fd9702015-11-09 11:16:49 -080092}
93
Mathieu Chartier9e868092016-10-31 14:58:04 -070094ObjPtr<mirror::String> InternTable::LookupStrong(Thread* self, ObjPtr<mirror::String> s) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -080095 MutexLock mu(self, *Locks::intern_table_lock_);
96 return LookupStrongLocked(s);
97}
98
Mathieu Chartier9e868092016-10-31 14:58:04 -070099ObjPtr<mirror::String> InternTable::LookupStrong(Thread* self,
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000100 uint32_t utf16_length,
101 const char* utf8_data) {
102 DCHECK_EQ(utf16_length, CountModifiedUtf8Chars(utf8_data));
103 Utf8String string(utf16_length,
104 utf8_data,
105 ComputeUtf16HashFromModifiedUtf8(utf8_data, utf16_length));
106 MutexLock mu(self, *Locks::intern_table_lock_);
107 return strong_interns_.Find(string);
108}
109
Mathieu Chartier9e868092016-10-31 14:58:04 -0700110ObjPtr<mirror::String> InternTable::LookupWeakLocked(ObjPtr<mirror::String> s) {
Nicolas Geoffray1bc977c2016-01-23 14:15:49 +0000111 return weak_interns_.Find(s);
112}
113
Mathieu Chartier9e868092016-10-31 14:58:04 -0700114ObjPtr<mirror::String> InternTable::LookupStrongLocked(ObjPtr<mirror::String> s) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800115 return strong_interns_.Find(s);
116}
117
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800118void InternTable::AddNewTable() {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700119 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800120 weak_interns_.AddNewTable();
121 strong_interns_.AddNewTable();
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700122}
123
Mathieu Chartier9e868092016-10-31 14:58:04 -0700124ObjPtr<mirror::String> InternTable::InsertStrong(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100125 Runtime* runtime = Runtime::Current();
126 if (runtime->IsActiveTransaction()) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700127 runtime->RecordStrongStringInsertion(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100128 }
Mathieu Chartier893263b2014-03-04 11:07:42 -0800129 if (log_new_roots_) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700130 new_strong_intern_roots_.push_back(GcRoot<mirror::String>(s));
Mathieu Chartier893263b2014-03-04 11:07:42 -0800131 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700132 strong_interns_.Insert(s);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800133 return s;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100134}
135
Mathieu Chartier9e868092016-10-31 14:58:04 -0700136ObjPtr<mirror::String> InternTable::InsertWeak(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100137 Runtime* runtime = Runtime::Current();
138 if (runtime->IsActiveTransaction()) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700139 runtime->RecordWeakStringInsertion(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100140 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700141 weak_interns_.Insert(s);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700142 return s;
143}
144
Mathieu Chartier9e868092016-10-31 14:58:04 -0700145void InternTable::RemoveStrong(ObjPtr<mirror::String> s) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700146 strong_interns_.Remove(s);
Hiroshi Yamauchi1bd48722014-05-23 19:58:15 -0700147}
148
Mathieu Chartier9e868092016-10-31 14:58:04 -0700149void InternTable::RemoveWeak(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100150 Runtime* runtime = Runtime::Current();
151 if (runtime->IsActiveTransaction()) {
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700152 runtime->RecordWeakStringRemoval(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100153 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700154 weak_interns_.Remove(s);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700155}
156
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100157// Insert/remove methods used to undo changes made during an aborted transaction.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700158ObjPtr<mirror::String> InternTable::InsertStrongFromTransaction(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100159 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700160 return InsertStrong(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100161}
Mathieu Chartier9e868092016-10-31 14:58:04 -0700162
163ObjPtr<mirror::String> InternTable::InsertWeakFromTransaction(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100164 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700165 return InsertWeak(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100166}
Mathieu Chartier9e868092016-10-31 14:58:04 -0700167
168void InternTable::RemoveStrongFromTransaction(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100169 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700170 RemoveStrong(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100171}
Mathieu Chartier9e868092016-10-31 14:58:04 -0700172
173void InternTable::RemoveWeakFromTransaction(ObjPtr<mirror::String> s) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100174 DCHECK(!Runtime::Current()->IsActiveTransaction());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700175 RemoveWeak(s);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100176}
177
Mathieu Chartier205b7622016-01-06 15:47:09 -0800178void InternTable::AddImagesStringsToTable(const std::vector<gc::space::ImageSpace*>& image_spaces) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700179 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartier205b7622016-01-06 15:47:09 -0800180 for (gc::space::ImageSpace* image_space : image_spaces) {
181 const ImageHeader* const header = &image_space->GetImageHeader();
182 // Check if we have the interned strings section.
183 const ImageSection& section = header->GetImageSection(ImageHeader::kSectionInternedStrings);
184 if (section.Size() > 0) {
185 AddTableFromMemoryLocked(image_space->Begin() + section.Offset());
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700186 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700187 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700188}
189
Hiroshi Yamauchi0b713572015-06-16 18:29:23 -0700190void InternTable::BroadcastForNewInterns() {
191 CHECK(kUseReadBarrier);
192 Thread* self = Thread::Current();
193 MutexLock mu(self, *Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700194 weak_intern_condition_.Broadcast(self);
Hiroshi Yamauchi0b713572015-06-16 18:29:23 -0700195}
196
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700197void InternTable::WaitUntilAccessible(Thread* self) {
198 Locks::intern_table_lock_->ExclusiveUnlock(self);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700199 {
200 ScopedThreadSuspension sts(self, kWaitingWeakGcRootRead);
201 MutexLock mu(self, *Locks::intern_table_lock_);
Hiroshi Yamauchi9e6f0972016-11-03 13:03:20 -0700202 while ((!kUseReadBarrier && weak_root_state_ == gc::kWeakRootStateNoReadsOrWrites) ||
203 (kUseReadBarrier && !self->GetWeakRefAccessEnabled())) {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700204 weak_intern_condition_.Wait(self);
205 }
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700206 }
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700207 Locks::intern_table_lock_->ExclusiveLock(self);
208}
209
Mathieu Chartier9e868092016-10-31 14:58:04 -0700210ObjPtr<mirror::String> InternTable::Insert(ObjPtr<mirror::String> s,
211 bool is_strong,
212 bool holding_locks) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800213 if (s == nullptr) {
214 return nullptr;
215 }
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700216 Thread* const self = Thread::Current();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100217 MutexLock mu(self, *Locks::intern_table_lock_);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700218 if (kDebugLocking && !holding_locks) {
219 Locks::mutator_lock_->AssertSharedHeld(self);
220 CHECK_EQ(2u, self->NumberOfHeldMutexes()) << "may only safely hold the mutator lock";
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700221 }
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700222 while (true) {
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700223 if (holding_locks) {
224 if (!kUseReadBarrier) {
225 CHECK_EQ(weak_root_state_, gc::kWeakRootStateNormal);
226 } else {
227 CHECK(self->GetWeakRefAccessEnabled());
228 }
229 }
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700230 // Check the strong table for a match.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700231 ObjPtr<mirror::String> strong = LookupStrongLocked(s);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700232 if (strong != nullptr) {
233 return strong;
234 }
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700235 if ((!kUseReadBarrier && weak_root_state_ != gc::kWeakRootStateNoReadsOrWrites) ||
236 (kUseReadBarrier && self->GetWeakRefAccessEnabled())) {
237 break;
238 }
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700239 // weak_root_state_ is set to gc::kWeakRootStateNoReadsOrWrites in the GC pause but is only
240 // cleared after SweepSystemWeaks has completed. This is why we need to wait until it is
241 // cleared.
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700242 CHECK(!holding_locks);
243 StackHandleScope<1> hs(self);
244 auto h = hs.NewHandleWrapper(&s);
245 WaitUntilAccessible(self);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700246 }
Mathieu Chartier90ef3db2015-08-04 15:19:41 -0700247 if (!kUseReadBarrier) {
248 CHECK_EQ(weak_root_state_, gc::kWeakRootStateNormal);
249 } else {
250 CHECK(self->GetWeakRefAccessEnabled());
251 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800252 // There is no match in the strong table, check the weak table.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700253 ObjPtr<mirror::String> weak = LookupWeakLocked(s);
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800254 if (weak != nullptr) {
255 if (is_strong) {
256 // A match was found in the weak table. Promote to the strong table.
257 RemoveWeak(weak);
258 return InsertStrong(weak);
259 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700260 return weak;
261 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800262 // No match in the strong table or the weak table. Insert into the strong / weak table.
263 return is_strong ? InsertStrong(s) : InsertWeak(s);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700264}
265
Mathieu Chartier9e868092016-10-31 14:58:04 -0700266ObjPtr<mirror::String> InternTable::InternStrong(int32_t utf16_length, const char* utf8_data) {
Mathieu Chartiered0fc1d2014-03-21 14:09:35 -0700267 DCHECK(utf8_data != nullptr);
Vladimir Markod2bdb9b2016-07-08 17:23:22 +0100268 Thread* self = Thread::Current();
269 // Try to avoid allocation.
Mathieu Chartier9e868092016-10-31 14:58:04 -0700270 ObjPtr<mirror::String> s = LookupStrong(self, utf16_length, utf8_data);
Vladimir Markod2bdb9b2016-07-08 17:23:22 +0100271 if (s != nullptr) {
272 return s;
273 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700274 return InternStrong(mirror::String::AllocFromModifiedUtf8(
Vladimir Markod2bdb9b2016-07-08 17:23:22 +0100275 self, utf16_length, utf8_data));
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700276}
277
Mathieu Chartier9e868092016-10-31 14:58:04 -0700278ObjPtr<mirror::String> InternTable::InternStrong(const char* utf8_data) {
Mathieu Chartiered0fc1d2014-03-21 14:09:35 -0700279 DCHECK(utf8_data != nullptr);
280 return InternStrong(mirror::String::AllocFromModifiedUtf8(Thread::Current(), utf8_data));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700281}
282
Mathieu Chartier9e868092016-10-31 14:58:04 -0700283ObjPtr<mirror::String> InternTable::InternStrongImageString(ObjPtr<mirror::String> s) {
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700284 // May be holding the heap bitmap lock.
285 return Insert(s, true, true);
286}
287
Mathieu Chartier9e868092016-10-31 14:58:04 -0700288ObjPtr<mirror::String> InternTable::InternStrong(ObjPtr<mirror::String> s) {
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700289 return Insert(s, true, false);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700290}
291
Mathieu Chartier9e868092016-10-31 14:58:04 -0700292ObjPtr<mirror::String> InternTable::InternWeak(ObjPtr<mirror::String> s) {
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700293 return Insert(s, false, false);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700294}
295
Mathieu Chartier9e868092016-10-31 14:58:04 -0700296bool InternTable::ContainsWeak(ObjPtr<mirror::String> s) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800297 return LookupWeak(Thread::Current(), s) == s;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700298}
299
Mathieu Chartier97509952015-07-13 14:35:43 -0700300void InternTable::SweepInternTableWeaks(IsMarkedVisitor* visitor) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100301 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -0700302 weak_interns_.SweepWeaks(visitor);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700303}
304
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800305size_t InternTable::AddTableFromMemory(const uint8_t* ptr) {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700306 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800307 return AddTableFromMemoryLocked(ptr);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700308}
309
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800310size_t InternTable::AddTableFromMemoryLocked(const uint8_t* ptr) {
311 return strong_interns_.AddTableFromMemory(ptr);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700312}
313
314size_t InternTable::WriteToMemory(uint8_t* ptr) {
315 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800316 return strong_interns_.WriteToMemory(ptr);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700317}
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 Chartier9e868092016-10-31 14:58:04 -0700323 return static_cast<size_t>(root.Read<kWithoutReadBarrier>()->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 Chartier9e868092016-10-31 14:58:04 -0700331 return a.Read<kWithoutReadBarrier>()->Equals(b.Read<kWithoutReadBarrier>());
Mathieu Chartiercdfd39f2014-08-29 18:16:58 -0700332}
333
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000334bool InternTable::StringHashEquals::operator()(const GcRoot<mirror::String>& a,
335 const Utf8String& b) const {
336 if (kIsDebugBuild) {
337 Locks::mutator_lock_->AssertSharedHeld(Thread::Current());
338 }
Mathieu Chartier9e868092016-10-31 14:58:04 -0700339 ObjPtr<mirror::String> a_string = a.Read<kWithoutReadBarrier>();
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000340 uint32_t a_length = static_cast<uint32_t>(a_string->GetLength());
341 if (a_length != b.GetUtf16Length()) {
342 return false;
343 }
jessicahandojo3aaa37b2016-07-29 14:46:37 -0700344 if (a_string->IsCompressed()) {
345 size_t b_byte_count = strlen(b.GetUtf8Data());
346 size_t b_utf8_length = CountModifiedUtf8Chars(b.GetUtf8Data(), b_byte_count);
347 // Modified UTF-8 single byte character range is 0x01 .. 0x7f
348 // The string compression occurs on regular ASCII with same exact range,
349 // not on extended ASCII which up to 0xff
350 const bool is_b_regular_ascii = (b_byte_count == b_utf8_length);
351 if (is_b_regular_ascii) {
352 return memcmp(b.GetUtf8Data(),
353 a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0;
354 } else {
355 return false;
356 }
357 } else {
358 const uint16_t* a_value = a_string->GetValue();
359 return CompareModifiedUtf8ToUtf16AsCodePointValues(b.GetUtf8Data(), a_value, a_length) == 0;
360 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000361}
362
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800363size_t InternTable::Table::AddTableFromMemory(const uint8_t* ptr) {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700364 size_t read_count = 0;
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800365 UnorderedSet set(ptr, /*make copy*/false, &read_count);
Mathieu Chartier619a4572016-04-05 19:13:37 -0700366 if (set.Empty()) {
367 // Avoid inserting empty sets.
368 return read_count;
369 }
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800370 // TODO: Disable this for app images if app images have intern tables.
371 static constexpr bool kCheckDuplicates = true;
372 if (kCheckDuplicates) {
373 for (GcRoot<mirror::String>& string : set) {
374 CHECK(Find(string.Read()) == nullptr) << "Already found " << string.Read()->ToModifiedUtf8();
375 }
376 }
Mathieu Chartier619a4572016-04-05 19:13:37 -0700377 // Insert at the front since we add new interns into the back.
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800378 tables_.insert(tables_.begin(), std::move(set));
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700379 return read_count;
380}
381
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800382size_t InternTable::Table::WriteToMemory(uint8_t* ptr) {
383 if (tables_.empty()) {
384 return 0;
385 }
386 UnorderedSet* table_to_write;
387 UnorderedSet combined;
388 if (tables_.size() > 1) {
389 table_to_write = &combined;
390 for (UnorderedSet& table : tables_) {
391 for (GcRoot<mirror::String>& string : table) {
392 combined.Insert(string);
393 }
394 }
395 } else {
396 table_to_write = &tables_.back();
397 }
398 return table_to_write->WriteToMemory(ptr);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700399}
400
Mathieu Chartier9e868092016-10-31 14:58:04 -0700401void InternTable::Table::Remove(ObjPtr<mirror::String> s) {
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800402 for (UnorderedSet& table : tables_) {
403 auto it = table.Find(GcRoot<mirror::String>(s));
404 if (it != table.end()) {
405 table.Erase(it);
406 return;
407 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700408 }
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800409 LOG(FATAL) << "Attempting to remove non-interned string " << s->ToModifiedUtf8();
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700410}
411
Mathieu Chartier9e868092016-10-31 14:58:04 -0700412ObjPtr<mirror::String> InternTable::Table::Find(ObjPtr<mirror::String> s) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700413 Locks::intern_table_lock_->AssertHeld(Thread::Current());
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800414 for (UnorderedSet& table : tables_) {
415 auto it = table.Find(GcRoot<mirror::String>(s));
416 if (it != table.end()) {
417 return it->Read();
418 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700419 }
420 return nullptr;
421}
422
Mathieu Chartier9e868092016-10-31 14:58:04 -0700423ObjPtr<mirror::String> InternTable::Table::Find(const Utf8String& string) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000424 Locks::intern_table_lock_->AssertHeld(Thread::Current());
425 for (UnorderedSet& table : tables_) {
426 auto it = table.Find(string);
427 if (it != table.end()) {
428 return it->Read();
429 }
430 }
431 return nullptr;
432}
433
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800434void InternTable::Table::AddNewTable() {
435 tables_.push_back(UnorderedSet());
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700436}
437
Mathieu Chartier9e868092016-10-31 14:58:04 -0700438void InternTable::Table::Insert(ObjPtr<mirror::String> s) {
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800439 // Always insert the last table, the image tables are before and we avoid inserting into these
440 // to prevent dirty pages.
441 DCHECK(!tables_.empty());
442 tables_.back().Insert(GcRoot<mirror::String>(s));
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700443}
444
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700445void InternTable::Table::VisitRoots(RootVisitor* visitor) {
Mathieu Chartier4809d0a2015-04-07 10:39:04 -0700446 BufferedRootVisitor<kDefaultBufferedRootCount> buffered_visitor(
447 visitor, RootInfo(kRootInternedString));
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800448 for (UnorderedSet& table : tables_) {
449 for (auto& intern : table) {
450 buffered_visitor.VisitRoot(intern);
451 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700452 }
453}
454
Mathieu Chartier97509952015-07-13 14:35:43 -0700455void InternTable::Table::SweepWeaks(IsMarkedVisitor* visitor) {
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800456 for (UnorderedSet& table : tables_) {
457 SweepWeaks(&table, visitor);
458 }
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700459}
460
Mathieu Chartier97509952015-07-13 14:35:43 -0700461void InternTable::Table::SweepWeaks(UnorderedSet* set, IsMarkedVisitor* visitor) {
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700462 for (auto it = set->begin(), end = set->end(); it != end;) {
463 // This does not need a read barrier because this is called by GC.
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800464 mirror::Object* object = it->Read<kWithoutReadBarrier>();
Mathieu Chartier97509952015-07-13 14:35:43 -0700465 mirror::Object* new_object = visitor->IsMarked(object);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700466 if (new_object == nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800467 it = set->Erase(it);
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700468 } else {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800469 *it = GcRoot<mirror::String>(new_object->AsString());
Mathieu Chartiereb175f72014-10-31 11:49:27 -0700470 ++it;
471 }
472 }
473}
474
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800475size_t InternTable::Table::Size() const {
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800476 return std::accumulate(tables_.begin(),
477 tables_.end(),
Mathieu Chartier205b7622016-01-06 15:47:09 -0800478 0U,
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800479 [](size_t sum, const UnorderedSet& set) {
480 return sum + set.Size();
481 });
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800482}
483
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700484void InternTable::ChangeWeakRootState(gc::WeakRootState new_state) {
485 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
486 ChangeWeakRootStateLocked(new_state);
487}
488
489void InternTable::ChangeWeakRootStateLocked(gc::WeakRootState new_state) {
Hiroshi Yamauchifdbd13c2015-09-02 16:16:58 -0700490 CHECK(!kUseReadBarrier);
Mathieu Chartier14c3bf92015-07-13 14:35:43 -0700491 weak_root_state_ = new_state;
492 if (new_state != gc::kWeakRootStateNoReadsOrWrites) {
493 weak_intern_condition_.Broadcast(Thread::Current());
494 }
495}
496
Mathieu Chartier32cc9ee2015-10-15 09:19:15 -0700497InternTable::Table::Table() {
498 Runtime* const runtime = Runtime::Current();
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800499 // Initial table.
500 tables_.push_back(UnorderedSet());
501 tables_.back().SetLoadFactor(runtime->GetHashTableMinLoadFactor(),
502 runtime->GetHashTableMaxLoadFactor());
Mathieu Chartier32cc9ee2015-10-15 09:19:15 -0700503}
504
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700505} // namespace art