blob: ee9165e69a130df82a113056382eb72e31512189 [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
19#include "common_test.h"
20#include "object.h"
Ian Rogers1f539342012-10-03 21:09:42 -070021#include "sirt_ref.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070022
Brian Carlstrom7e93b502011-08-04 14:16:22 -070023namespace art {
24
Brian Carlstromf734cf52011-08-17 16:28:14 -070025class InternTableTest : public CommonTest {};
Brian Carlstrom7e93b502011-08-04 14:16:22 -070026
27TEST_F(InternTableTest, Intern) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070028 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom7e93b502011-08-04 14:16:22 -070029 InternTable intern_table;
Ian Rogers1f539342012-10-03 21:09:42 -070030 SirtRef<String> foo_1(soa.Self(), intern_table.InternStrong(3, "foo"));
31 SirtRef<String> foo_2(soa.Self(), intern_table.InternStrong(3, "foo"));
Ian Rogers50b35e22012-10-04 10:09:15 -070032 SirtRef<String> foo_3(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "foo"));
Ian Rogers1f539342012-10-03 21:09:42 -070033 SirtRef<String> bar(soa.Self(), intern_table.InternStrong(3, "bar"));
Brian Carlstrom7e93b502011-08-04 14:16:22 -070034 EXPECT_TRUE(foo_1->Equals("foo"));
35 EXPECT_TRUE(foo_2->Equals("foo"));
36 EXPECT_TRUE(foo_3->Equals("foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -070037 EXPECT_TRUE(foo_1.get() != NULL);
38 EXPECT_TRUE(foo_2.get() != NULL);
39 EXPECT_EQ(foo_1.get(), foo_2.get());
40 EXPECT_NE(foo_1.get(), bar.get());
41 EXPECT_NE(foo_2.get(), bar.get());
42 EXPECT_NE(foo_3.get(), bar.get());
Brian Carlstrom7e93b502011-08-04 14:16:22 -070043}
44
Elliott Hughescf4c6c42011-09-01 15:16:42 -070045TEST_F(InternTableTest, Size) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070046 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070047 InternTable t;
48 EXPECT_EQ(0U, t.Size());
49 t.InternStrong(3, "foo");
Ian Rogers50b35e22012-10-04 10:09:15 -070050 SirtRef<String> foo(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -070051 t.InternWeak(foo.get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070052 EXPECT_EQ(1U, t.Size());
53 t.InternStrong(3, "bar");
54 EXPECT_EQ(2U, t.Size());
55}
56
Elliott Hughesc33a32b2011-10-11 18:18:07 -070057class TestPredicate {
Elliott Hughes410c0c82011-09-01 17:58:25 -070058 public:
Elliott Hughesc33a32b2011-10-11 18:18:07 -070059 bool IsMarked(const Object* s) const {
Elliott Hughes410c0c82011-09-01 17:58:25 -070060 bool erased = false;
61 typedef std::vector<const String*>::iterator It; // TODO: C++0x auto
62 for (It it = expected_.begin(), end = expected_.end(); it != end; ++it) {
63 if (*it == s) {
64 expected_.erase(it);
65 erased = true;
66 break;
67 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -070068 }
Elliott Hughes410c0c82011-09-01 17:58:25 -070069 EXPECT_TRUE(erased);
Elliott Hughesc33a32b2011-10-11 18:18:07 -070070 return false;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070071 }
Elliott Hughes410c0c82011-09-01 17:58:25 -070072
73 void Expect(const String* s) {
74 expected_.push_back(s);
75 }
76
77 ~TestPredicate() {
78 EXPECT_EQ(0U, expected_.size());
79 }
80
81 private:
82 mutable std::vector<const String*> expected_;
83};
Elliott Hughescf4c6c42011-09-01 15:16:42 -070084
Elliott Hughesc33a32b2011-10-11 18:18:07 -070085bool IsMarked(const Object* object, void* arg) {
86 return reinterpret_cast<TestPredicate*>(arg)->IsMarked(object);
87}
88
89TEST_F(InternTableTest, SweepInternTableWeaks) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070090 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070091 InternTable t;
92 t.InternStrong(3, "foo");
93 t.InternStrong(3, "bar");
Ian Rogers50b35e22012-10-04 10:09:15 -070094 SirtRef<String> hello(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "hello"));
95 SirtRef<String> world(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "world"));
Ian Rogers1f539342012-10-03 21:09:42 -070096 SirtRef<String> s0(soa.Self(), t.InternWeak(hello.get()));
97 SirtRef<String> s1(soa.Self(), t.InternWeak(world.get()));
Elliott Hughescf4c6c42011-09-01 15:16:42 -070098
99 EXPECT_EQ(4U, t.Size());
100
101 // We should traverse only the weaks...
Elliott Hughes410c0c82011-09-01 17:58:25 -0700102 TestPredicate p;
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700103 p.Expect(s0.get());
104 p.Expect(s1.get());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700105 {
Ian Rogers1f539342012-10-03 21:09:42 -0700106 ReaderMutexLock mu(soa.Self(), *Locks::heap_bitmap_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700107 t.SweepInternTableWeaks(IsMarked, &p);
108 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700109
110 EXPECT_EQ(2U, t.Size());
111
Elliott Hughese5448b52012-01-18 16:44:06 -0800112 // Just check that we didn't corrupt the map.
Ian Rogers50b35e22012-10-04 10:09:15 -0700113 SirtRef<String> still_here(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "still here"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700114 t.InternWeak(still_here.get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700115 EXPECT_EQ(3U, t.Size());
116}
117
118TEST_F(InternTableTest, ContainsWeak) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700119 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700120 {
121 // Strongs are never weak.
122 InternTable t;
Ian Rogers1f539342012-10-03 21:09:42 -0700123 SirtRef<String> interned_foo_1(soa.Self(), t.InternStrong(3, "foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700124 EXPECT_FALSE(t.ContainsWeak(interned_foo_1.get()));
Ian Rogers1f539342012-10-03 21:09:42 -0700125 SirtRef<String> interned_foo_2(soa.Self(), t.InternStrong(3, "foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700126 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.get()));
127 EXPECT_EQ(interned_foo_1.get(), interned_foo_2.get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700128 }
129
130 {
131 // Weaks are always weak.
132 InternTable t;
Ian Rogers50b35e22012-10-04 10:09:15 -0700133 SirtRef<String> foo_1(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "foo"));
134 SirtRef<String> foo_2(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700135 EXPECT_NE(foo_1.get(), foo_2.get());
Ian Rogers1f539342012-10-03 21:09:42 -0700136 SirtRef<String> interned_foo_1(soa.Self(), t.InternWeak(foo_1.get()));
137 SirtRef<String> interned_foo_2(soa.Self(), t.InternWeak(foo_2.get()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700138 EXPECT_TRUE(t.ContainsWeak(interned_foo_2.get()));
139 EXPECT_EQ(interned_foo_1.get(), interned_foo_2.get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700140 }
141
142 {
143 // A weak can be promoted to a strong.
144 InternTable t;
Ian Rogers50b35e22012-10-04 10:09:15 -0700145 SirtRef<String> foo(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "foo"));
Ian Rogers1f539342012-10-03 21:09:42 -0700146 SirtRef<String> interned_foo_1(soa.Self(), t.InternWeak(foo.get()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700147 EXPECT_TRUE(t.ContainsWeak(interned_foo_1.get()));
Ian Rogers1f539342012-10-03 21:09:42 -0700148 SirtRef<String> interned_foo_2(soa.Self(), t.InternStrong(3, "foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700149 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.get()));
150 EXPECT_EQ(interned_foo_1.get(), interned_foo_2.get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700151 }
152
153 {
154 // Interning a weak after a strong gets you the strong.
155 InternTable t;
Ian Rogers1f539342012-10-03 21:09:42 -0700156 SirtRef<String> interned_foo_1(soa.Self(), t.InternStrong(3, "foo"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700157 EXPECT_FALSE(t.ContainsWeak(interned_foo_1.get()));
Ian Rogers50b35e22012-10-04 10:09:15 -0700158 SirtRef<String> foo(soa.Self(), String::AllocFromModifiedUtf8(soa.Self(), "foo"));
Ian Rogers1f539342012-10-03 21:09:42 -0700159 SirtRef<String> interned_foo_2(soa.Self(), t.InternWeak(foo.get()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700160 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.get()));
161 EXPECT_EQ(interned_foo_1.get(), interned_foo_2.get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700162 }
163}
164
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700165} // namespace art