blob: b91d946095d66eedf76676c2167c975aa05b363c [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
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080019#include "common_runtime_test.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020#include "mirror/object.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070021#include "handle_scope-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070022#include "mirror/string.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070023#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070024
Brian Carlstrom7e93b502011-08-04 14:16:22 -070025namespace art {
26
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080027class InternTableTest : public CommonRuntimeTest {};
Brian Carlstrom7e93b502011-08-04 14:16:22 -070028
29TEST_F(InternTableTest, Intern) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070030 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom7e93b502011-08-04 14:16:22 -070031 InternTable intern_table;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032 StackHandleScope<4> hs(soa.Self());
33 Handle<mirror::String> foo_1(hs.NewHandle(intern_table.InternStrong(3, "foo")));
34 Handle<mirror::String> foo_2(hs.NewHandle(intern_table.InternStrong(3, "foo")));
35 Handle<mirror::String> foo_3(
36 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
37 Handle<mirror::String> bar(hs.NewHandle(intern_table.InternStrong(3, "bar")));
Vladimir Markocac5a7e2016-02-22 10:39:50 +000038 ASSERT_TRUE(foo_1.Get() != nullptr);
39 ASSERT_TRUE(foo_2.Get() != nullptr);
40 ASSERT_TRUE(foo_3.Get() != nullptr);
41 ASSERT_TRUE(bar.Get() != nullptr);
42 EXPECT_EQ(foo_1.Get(), foo_2.Get());
Brian Carlstrom7e93b502011-08-04 14:16:22 -070043 EXPECT_TRUE(foo_1->Equals("foo"));
44 EXPECT_TRUE(foo_2->Equals("foo"));
45 EXPECT_TRUE(foo_3->Equals("foo"));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070046 EXPECT_NE(foo_1.Get(), bar.Get());
47 EXPECT_NE(foo_2.Get(), bar.Get());
48 EXPECT_NE(foo_3.Get(), bar.Get());
Brian Carlstrom7e93b502011-08-04 14:16:22 -070049}
50
Elliott Hughescf4c6c42011-09-01 15:16:42 -070051TEST_F(InternTableTest, Size) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070052 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070053 InternTable t;
54 EXPECT_EQ(0U, t.Size());
55 t.InternStrong(3, "foo");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070056 StackHandleScope<1> hs(soa.Self());
57 Handle<mirror::String> foo(
58 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
59 t.InternWeak(foo.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070060 EXPECT_EQ(1U, t.Size());
61 t.InternStrong(3, "bar");
62 EXPECT_EQ(2U, t.Size());
63}
64
Mathieu Chartier97509952015-07-13 14:35:43 -070065class TestPredicate : public IsMarkedVisitor {
Elliott Hughes410c0c82011-09-01 17:58:25 -070066 public:
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070067 mirror::Object* IsMarked(mirror::Object* s) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Elliott Hughes410c0c82011-09-01 17:58:25 -070068 bool erased = false;
Mathieu Chartier02e25112013-08-14 16:14:24 -070069 for (auto it = expected_.begin(), end = expected_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -070070 if (*it == s) {
71 expected_.erase(it);
72 erased = true;
73 break;
74 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -070075 }
Elliott Hughes410c0c82011-09-01 17:58:25 -070076 EXPECT_TRUE(erased);
Mathieu Chartier97509952015-07-13 14:35:43 -070077 return nullptr;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070078 }
Elliott Hughes410c0c82011-09-01 17:58:25 -070079
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080080 void Expect(const mirror::String* s) {
Elliott Hughes410c0c82011-09-01 17:58:25 -070081 expected_.push_back(s);
82 }
83
84 ~TestPredicate() {
85 EXPECT_EQ(0U, expected_.size());
86 }
87
88 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080089 mutable std::vector<const mirror::String*> expected_;
Elliott Hughes410c0c82011-09-01 17:58:25 -070090};
Elliott Hughescf4c6c42011-09-01 15:16:42 -070091
Elliott Hughesc33a32b2011-10-11 18:18:07 -070092TEST_F(InternTableTest, SweepInternTableWeaks) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070093 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070094 InternTable t;
95 t.InternStrong(3, "foo");
96 t.InternStrong(3, "bar");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070097 StackHandleScope<5> hs(soa.Self());
98 Handle<mirror::String> hello(
99 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello")));
100 Handle<mirror::String> world(
101 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "world")));
102 Handle<mirror::String> s0(hs.NewHandle(t.InternWeak(hello.Get())));
103 Handle<mirror::String> s1(hs.NewHandle(t.InternWeak(world.Get())));
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700104
105 EXPECT_EQ(4U, t.Size());
106
107 // We should traverse only the weaks...
Elliott Hughes410c0c82011-09-01 17:58:25 -0700108 TestPredicate p;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700109 p.Expect(s0.Get());
110 p.Expect(s1.Get());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700111 {
Ian Rogers1f539342012-10-03 21:09:42 -0700112 ReaderMutexLock mu(soa.Self(), *Locks::heap_bitmap_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -0700113 t.SweepInternTableWeaks(&p);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700114 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700115
116 EXPECT_EQ(2U, t.Size());
117
Elliott Hughese5448b52012-01-18 16:44:06 -0800118 // Just check that we didn't corrupt the map.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700119 Handle<mirror::String> still_here(
120 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "still here")));
121 t.InternWeak(still_here.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700122 EXPECT_EQ(3U, t.Size());
123}
124
125TEST_F(InternTableTest, ContainsWeak) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700126 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700127 {
128 // Strongs are never weak.
129 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700130 StackHandleScope<2> hs(soa.Self());
131 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternStrong(3, "foo")));
132 EXPECT_FALSE(t.ContainsWeak(interned_foo_1.Get()));
133 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternStrong(3, "foo")));
134 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.Get()));
135 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700136 }
137
138 {
139 // Weaks are always weak.
140 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700141 StackHandleScope<4> hs(soa.Self());
142 Handle<mirror::String> foo_1(
143 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
144 Handle<mirror::String> foo_2(
145 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
146 EXPECT_NE(foo_1.Get(), foo_2.Get());
147 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternWeak(foo_1.Get())));
148 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternWeak(foo_2.Get())));
149 EXPECT_TRUE(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 // A weak can be promoted to a strong.
155 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700156 StackHandleScope<3> hs(soa.Self());
157 Handle<mirror::String> foo(
158 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
159 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternWeak(foo.Get())));
160 EXPECT_TRUE(t.ContainsWeak(interned_foo_1.Get()));
161 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternStrong(3, "foo")));
162 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.Get()));
163 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700164 }
165
166 {
167 // Interning a weak after a strong gets you the strong.
168 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700169 StackHandleScope<3> hs(soa.Self());
170 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternStrong(3, "foo")));
171 EXPECT_FALSE(t.ContainsWeak(interned_foo_1.Get()));
172 Handle<mirror::String> foo(
173 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
174 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternWeak(foo.Get())));
175 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.Get()));
176 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700177 }
178}
179
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000180TEST_F(InternTableTest, LookupStrong) {
181 ScopedObjectAccess soa(Thread::Current());
182 InternTable intern_table;
183 StackHandleScope<3> hs(soa.Self());
184 Handle<mirror::String> foo(hs.NewHandle(intern_table.InternStrong(3, "foo")));
185 Handle<mirror::String> bar(hs.NewHandle(intern_table.InternStrong(3, "bar")));
186 Handle<mirror::String> foobar(hs.NewHandle(intern_table.InternStrong(6, "foobar")));
187 ASSERT_TRUE(foo.Get() != nullptr);
188 ASSERT_TRUE(bar.Get() != nullptr);
189 ASSERT_TRUE(foobar.Get() != nullptr);
190 ASSERT_TRUE(foo->Equals("foo"));
191 ASSERT_TRUE(bar->Equals("bar"));
192 ASSERT_TRUE(foobar->Equals("foobar"));
193 ASSERT_NE(foo.Get(), bar.Get());
194 ASSERT_NE(foo.Get(), foobar.Get());
195 ASSERT_NE(bar.Get(), foobar.Get());
Mathieu Chartier9e868092016-10-31 14:58:04 -0700196 ObjPtr<mirror::String> lookup_foo = intern_table.LookupStrong(soa.Self(), 3, "foo");
197 EXPECT_OBJ_PTR_EQ(lookup_foo, foo.Get());
198 ObjPtr<mirror::String> lookup_bar = intern_table.LookupStrong(soa.Self(), 3, "bar");
199 EXPECT_OBJ_PTR_EQ(lookup_bar, bar.Get());
200 ObjPtr<mirror::String> lookup_foobar = intern_table.LookupStrong(soa.Self(), 6, "foobar");
201 EXPECT_OBJ_PTR_EQ(lookup_foobar, foobar.Get());
202 ObjPtr<mirror::String> lookup_foox = intern_table.LookupStrong(soa.Self(), 4, "foox");
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000203 EXPECT_TRUE(lookup_foox == nullptr);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700204 ObjPtr<mirror::String> lookup_fooba = intern_table.LookupStrong(soa.Self(), 5, "fooba");
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000205 EXPECT_TRUE(lookup_fooba == nullptr);
Mathieu Chartier9e868092016-10-31 14:58:04 -0700206 ObjPtr<mirror::String> lookup_foobaR = intern_table.LookupStrong(soa.Self(), 6, "foobaR");
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000207 EXPECT_TRUE(lookup_foobaR == nullptr);
208 // Try a hash conflict.
209 ASSERT_EQ(ComputeUtf16HashFromModifiedUtf8("foobar", 6),
210 ComputeUtf16HashFromModifiedUtf8("foobbS", 6));
Mathieu Chartier9e868092016-10-31 14:58:04 -0700211 ObjPtr<mirror::String> lookup_foobbS = intern_table.LookupStrong(soa.Self(), 6, "foobbS");
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000212 EXPECT_TRUE(lookup_foobbS == nullptr);
213}
214
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700215} // namespace art