blob: d462e1444fa5dc1f26f1c80d4c86286c052ee1eb [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"
23#include "scoped_thread_state_change.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")));
Brian Carlstrom7e93b502011-08-04 14:16:22 -070038 EXPECT_TRUE(foo_1->Equals("foo"));
39 EXPECT_TRUE(foo_2->Equals("foo"));
40 EXPECT_TRUE(foo_3->Equals("foo"));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070041 EXPECT_TRUE(foo_1.Get() != NULL);
42 EXPECT_TRUE(foo_2.Get() != NULL);
43 EXPECT_EQ(foo_1.Get(), foo_2.Get());
44 EXPECT_NE(foo_1.Get(), bar.Get());
45 EXPECT_NE(foo_2.Get(), bar.Get());
46 EXPECT_NE(foo_3.Get(), bar.Get());
Brian Carlstrom7e93b502011-08-04 14:16:22 -070047}
48
Elliott Hughescf4c6c42011-09-01 15:16:42 -070049TEST_F(InternTableTest, Size) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070050 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070051 InternTable t;
52 EXPECT_EQ(0U, t.Size());
53 t.InternStrong(3, "foo");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070054 StackHandleScope<1> hs(soa.Self());
55 Handle<mirror::String> foo(
56 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
57 t.InternWeak(foo.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070058 EXPECT_EQ(1U, t.Size());
59 t.InternStrong(3, "bar");
60 EXPECT_EQ(2U, t.Size());
61}
62
Elliott Hughesc33a32b2011-10-11 18:18:07 -070063class TestPredicate {
Elliott Hughes410c0c82011-09-01 17:58:25 -070064 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080065 bool IsMarked(const mirror::Object* s) const {
Elliott Hughes410c0c82011-09-01 17:58:25 -070066 bool erased = false;
Mathieu Chartier02e25112013-08-14 16:14:24 -070067 for (auto it = expected_.begin(), end = expected_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -070068 if (*it == s) {
69 expected_.erase(it);
70 erased = true;
71 break;
72 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -070073 }
Elliott Hughes410c0c82011-09-01 17:58:25 -070074 EXPECT_TRUE(erased);
Elliott Hughesc33a32b2011-10-11 18:18:07 -070075 return false;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070076 }
Elliott Hughes410c0c82011-09-01 17:58:25 -070077
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080078 void Expect(const mirror::String* s) {
Elliott Hughes410c0c82011-09-01 17:58:25 -070079 expected_.push_back(s);
80 }
81
82 ~TestPredicate() {
83 EXPECT_EQ(0U, expected_.size());
84 }
85
86 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080087 mutable std::vector<const mirror::String*> expected_;
Elliott Hughes410c0c82011-09-01 17:58:25 -070088};
Elliott Hughescf4c6c42011-09-01 15:16:42 -070089
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080090mirror::Object* IsMarkedSweepingCallback(mirror::Object* object, void* arg) {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -070091 if (reinterpret_cast<TestPredicate*>(arg)->IsMarked(object)) {
92 return object;
93 }
94 return nullptr;
Elliott Hughesc33a32b2011-10-11 18:18:07 -070095}
96
97TEST_F(InternTableTest, SweepInternTableWeaks) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070098 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -070099 InternTable t;
100 t.InternStrong(3, "foo");
101 t.InternStrong(3, "bar");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700102 StackHandleScope<5> hs(soa.Self());
103 Handle<mirror::String> hello(
104 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello")));
105 Handle<mirror::String> world(
106 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "world")));
107 Handle<mirror::String> s0(hs.NewHandle(t.InternWeak(hello.Get())));
108 Handle<mirror::String> s1(hs.NewHandle(t.InternWeak(world.Get())));
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700109
110 EXPECT_EQ(4U, t.Size());
111
112 // We should traverse only the weaks...
Elliott Hughes410c0c82011-09-01 17:58:25 -0700113 TestPredicate p;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700114 p.Expect(s0.Get());
115 p.Expect(s1.Get());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700116 {
Ian Rogers1f539342012-10-03 21:09:42 -0700117 ReaderMutexLock mu(soa.Self(), *Locks::heap_bitmap_lock_);
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800118 t.SweepInternTableWeaks(IsMarkedSweepingCallback, &p);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700119 }
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700120
121 EXPECT_EQ(2U, t.Size());
122
Elliott Hughese5448b52012-01-18 16:44:06 -0800123 // Just check that we didn't corrupt the map.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700124 Handle<mirror::String> still_here(
125 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "still here")));
126 t.InternWeak(still_here.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700127 EXPECT_EQ(3U, t.Size());
128}
129
130TEST_F(InternTableTest, ContainsWeak) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700131 ScopedObjectAccess soa(Thread::Current());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700132 {
133 // Strongs are never weak.
134 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700135 StackHandleScope<2> hs(soa.Self());
136 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternStrong(3, "foo")));
137 EXPECT_FALSE(t.ContainsWeak(interned_foo_1.Get()));
138 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternStrong(3, "foo")));
139 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.Get()));
140 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700141 }
142
143 {
144 // Weaks are always weak.
145 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700146 StackHandleScope<4> hs(soa.Self());
147 Handle<mirror::String> foo_1(
148 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
149 Handle<mirror::String> foo_2(
150 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
151 EXPECT_NE(foo_1.Get(), foo_2.Get());
152 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternWeak(foo_1.Get())));
153 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternWeak(foo_2.Get())));
154 EXPECT_TRUE(t.ContainsWeak(interned_foo_2.Get()));
155 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700156 }
157
158 {
159 // A weak can be promoted to a strong.
160 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700161 StackHandleScope<3> hs(soa.Self());
162 Handle<mirror::String> foo(
163 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
164 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternWeak(foo.Get())));
165 EXPECT_TRUE(t.ContainsWeak(interned_foo_1.Get()));
166 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternStrong(3, "foo")));
167 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.Get()));
168 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700169 }
170
171 {
172 // Interning a weak after a strong gets you the strong.
173 InternTable t;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700174 StackHandleScope<3> hs(soa.Self());
175 Handle<mirror::String> interned_foo_1(hs.NewHandle(t.InternStrong(3, "foo")));
176 EXPECT_FALSE(t.ContainsWeak(interned_foo_1.Get()));
177 Handle<mirror::String> foo(
178 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
179 Handle<mirror::String> interned_foo_2(hs.NewHandle(t.InternWeak(foo.Get())));
180 EXPECT_FALSE(t.ContainsWeak(interned_foo_2.Get()));
181 EXPECT_EQ(interned_foo_1.Get(), interned_foo_2.Get());
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700182 }
183}
184
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700185} // namespace art