summaryrefslogtreecommitdiffstats
path: root/runtime/intern_table.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-12 13:46:57 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-12 17:49:01 -0700
commit7940e44f4517de5e2634a7e07d58d0fb26160513 (patch)
treeac90242d96229a6942f6e24ab137bc1f8f2e0025 /runtime/intern_table.cc
parent5cd9e3b122f276f610980cbaf0d2ad6ed4cd9088 (diff)
downloadart-7940e44f4517de5e2634a7e07d58d0fb26160513.zip
art-7940e44f4517de5e2634a7e07d58d0fb26160513.tar.gz
art-7940e44f4517de5e2634a7e07d58d0fb26160513.tar.bz2
Create separate Android.mk for main build targets
The runtime, compiler, dex2oat, and oatdump now are in seperate trees to prevent dependency creep. They can now be individually built without rebuilding the rest of the art projects. dalvikvm and jdwpspy were already this way. Builds in the art directory should behave as before, building everything including tests. Change-Id: Ic6b1151e5ed0f823c3dd301afd2b13eb2d8feb81
Diffstat (limited to 'runtime/intern_table.cc')
-rw-r--r--runtime/intern_table.cc180
1 files changed, 180 insertions, 0 deletions
diff --git a/runtime/intern_table.cc b/runtime/intern_table.cc
new file mode 100644
index 0000000..d1ad2db
--- /dev/null
+++ b/runtime/intern_table.cc
@@ -0,0 +1,180 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "intern_table.h"
+
+#include "mirror/string.h"
+#include "thread.h"
+#include "UniquePtr.h"
+#include "utf.h"
+
+namespace art {
+
+InternTable::InternTable() : intern_table_lock_("InternTable lock"), is_dirty_(false) {
+}
+
+size_t InternTable::Size() const {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+ return strong_interns_.size() + weak_interns_.size();
+}
+
+void InternTable::DumpForSigQuit(std::ostream& os) const {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+ os << "Intern table: " << strong_interns_.size() << " strong; "
+ << weak_interns_.size() << " weak; "
+ << image_strong_interns_.size() << " image strong\n";
+}
+
+void InternTable::VisitRoots(RootVisitor* visitor, void* arg, bool clean_dirty) {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+ typedef Table::const_iterator It; // TODO: C++0x auto
+ for (It it = strong_interns_.begin(), end = strong_interns_.end(); it != end; ++it) {
+ visitor(it->second, arg);
+ }
+ if (clean_dirty) {
+ is_dirty_ = false;
+ }
+ // Note: we deliberately don't visit the weak_interns_ table and the immutable image roots.
+}
+
+mirror::String* InternTable::Lookup(Table& table, mirror::String* s, uint32_t hash_code) {
+ intern_table_lock_.AssertHeld(Thread::Current());
+ typedef Table::const_iterator It; // TODO: C++0x auto
+ for (It it = table.find(hash_code), end = table.end(); it != end; ++it) {
+ mirror::String* existing_string = it->second;
+ if (existing_string->Equals(s)) {
+ return existing_string;
+ }
+ }
+ return NULL;
+}
+
+mirror::String* InternTable::Insert(Table& table, mirror::String* s, uint32_t hash_code) {
+ intern_table_lock_.AssertHeld(Thread::Current());
+ table.insert(std::make_pair(hash_code, s));
+ return s;
+}
+
+void InternTable::RegisterStrong(mirror::String* s) {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+ Insert(image_strong_interns_, s, s->GetHashCode());
+}
+
+void InternTable::Remove(Table& table, const mirror::String* s, uint32_t hash_code) {
+ intern_table_lock_.AssertHeld(Thread::Current());
+ typedef Table::iterator It; // TODO: C++0x auto
+ for (It it = table.find(hash_code), end = table.end(); it != end; ++it) {
+ if (it->second == s) {
+ table.erase(it);
+ return;
+ }
+ }
+}
+
+mirror::String* InternTable::Insert(mirror::String* s, bool is_strong) {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+
+ DCHECK(s != NULL);
+ uint32_t hash_code = s->GetHashCode();
+
+ if (is_strong) {
+ // Check the strong table for a match.
+ mirror::String* strong = Lookup(strong_interns_, s, hash_code);
+ if (strong != NULL) {
+ return strong;
+ }
+ // Check the image table for a match.
+ mirror::String* image = Lookup(image_strong_interns_, s, hash_code);
+ if (image != NULL) {
+ return image;
+ }
+
+ // Mark as dirty so that we rescan the roots.
+ Dirty();
+
+ // There is no match in the strong table, check the weak table.
+ mirror::String* weak = Lookup(weak_interns_, s, hash_code);
+ if (weak != NULL) {
+ // A match was found in the weak table. Promote to the strong table.
+ Remove(weak_interns_, weak, hash_code);
+ return Insert(strong_interns_, weak, hash_code);
+ }
+
+ // No match in the strong table or the weak table. Insert into the strong table.
+ return Insert(strong_interns_, s, hash_code);
+ }
+
+ // Check the strong table for a match.
+ mirror::String* strong = Lookup(strong_interns_, s, hash_code);
+ if (strong != NULL) {
+ return strong;
+ }
+ // Check the image table for a match.
+ mirror::String* image = Lookup(image_strong_interns_, s, hash_code);
+ if (image != NULL) {
+ return image;
+ }
+ // Check the weak table for a match.
+ mirror::String* weak = Lookup(weak_interns_, s, hash_code);
+ if (weak != NULL) {
+ return weak;
+ }
+ // Insert into the weak table.
+ return Insert(weak_interns_, s, hash_code);
+}
+
+mirror::String* InternTable::InternStrong(int32_t utf16_length, const char* utf8_data) {
+ return InternStrong(mirror::String::AllocFromModifiedUtf8(Thread::Current(), utf16_length, utf8_data));
+}
+
+mirror::String* InternTable::InternStrong(const char* utf8_data) {
+ return InternStrong(mirror::String::AllocFromModifiedUtf8(Thread::Current(), utf8_data));
+}
+
+mirror::String* InternTable::InternStrong(mirror::String* s) {
+ if (s == NULL) {
+ return NULL;
+ }
+ return Insert(s, true);
+}
+
+mirror::String* InternTable::InternWeak(mirror::String* s) {
+ if (s == NULL) {
+ return NULL;
+ }
+ return Insert(s, false);
+}
+
+bool InternTable::ContainsWeak(mirror::String* s) {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+ const mirror::String* found = Lookup(weak_interns_, s, s->GetHashCode());
+ return found == s;
+}
+
+void InternTable::SweepInternTableWeaks(IsMarkedTester is_marked, void* arg) {
+ MutexLock mu(Thread::Current(), intern_table_lock_);
+ typedef Table::iterator It; // TODO: C++0x auto
+ for (It it = weak_interns_.begin(), end = weak_interns_.end(); it != end;) {
+ mirror::Object* object = it->second;
+ if (!is_marked(object, arg)) {
+ weak_interns_.erase(it++);
+ } else {
+ ++it;
+ }
+ }
+}
+
+} // namespace art