blob: cc48480f5025d7f5e4054dfe7e7c1c4f19133014 [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_INTERN_TABLE_H_
18#define ART_RUNTIME_INTERN_TABLE_H_
Brian Carlstrom7e93b502011-08-04 14:16:22 -070019
Elliott Hughes76b61672012-12-12 17:47:30 -080020#include "base/mutex.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010021#include "locks.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080022#include "object_callbacks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023
24#include <map>
Brian Carlstrom7e93b502011-08-04 14:16:22 -070025
26namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027namespace mirror {
28class String;
29} // namespace mirror
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010030class Transaction;
Brian Carlstrom7e93b502011-08-04 14:16:22 -070031
Elliott Hughescf4c6c42011-09-01 15:16:42 -070032/**
33 * Used to intern strings.
34 *
35 * There are actually two tables: one that holds strong references to its strings, and one that
36 * holds weak references. The former is used for string literals, for which there is an effective
37 * reference from the constant pool. The latter is used for strings interned at runtime via
38 * String.intern. Some code (XML parsers being a prime example) relies on being able to intern
39 * arbitrarily many strings for the duration of a parse without permanently increasing the memory
40 * footprint.
41 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070042class InternTable {
43 public:
44 InternTable();
Brian Carlstroma663ea52011-08-19 23:33:41 -070045
Elliott Hughescf4c6c42011-09-01 15:16:42 -070046 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047 mirror::String* InternStrong(int32_t utf16_length, const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070048 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070049
50 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051 mirror::String* InternStrong(const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070052 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070053
54 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080055 mirror::String* InternStrong(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070056
Elliott Hughescf4c6c42011-09-01 15:16:42 -070057 // Interns a potentially new string in the 'weak' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058 mirror::String* InternWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070059
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080060 void SweepInternTableWeaks(IsMarkedCallback* callback, void* arg);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070061
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062 bool ContainsWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070063
64 size_t Size() const;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070065
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080066 void VisitRoots(RootCallback* callback, void* arg, bool only_dirty, bool clean_dirty);
Brian Carlstrom7e93b502011-08-04 14:16:22 -070067
Elliott Hughescac6cc72011-11-03 20:31:21 -070068 void DumpForSigQuit(std::ostream& os) const;
69
Mathieu Chartierc11d9b82013-09-19 10:01:59 -070070 void DisallowNewInterns() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
71 void AllowNewInterns() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
72
Brian Carlstrom7e93b502011-08-04 14:16:22 -070073 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080074 typedef std::multimap<int32_t, mirror::String*> Table;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070075
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080076 mirror::String* Insert(mirror::String* s, bool is_strong)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010077 LOCKS_EXCLUDED(Locks::intern_table_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -070078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070079
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080080 mirror::String* Lookup(Table& table, mirror::String* s, uint32_t hash_code)
Ian Rogersb726dcb2012-09-05 08:57:23 -070081 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010082 mirror::String* InsertStrong(mirror::String* s, uint32_t hash_code)
83 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
84 mirror::String* InsertWeak(mirror::String* s, uint32_t hash_code)
85 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
86 mirror::String* Insert(Table& table, mirror::String* s, uint32_t hash_code)
87 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
88 void RemoveWeak(mirror::String* s, uint32_t hash_code)
89 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
90 void Remove(Table& table, mirror::String* s, uint32_t hash_code)
91 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070092
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010093 // Transaction rollback access.
94 mirror::String* InsertStrongFromTransaction(mirror::String* s, uint32_t hash_code)
95 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
96 mirror::String* InsertWeakFromTransaction(mirror::String* s, uint32_t hash_code)
97 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
98 void RemoveStrongFromTransaction(mirror::String* s, uint32_t hash_code)
99 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
100 void RemoveWeakFromTransaction(mirror::String* s, uint32_t hash_code)
101 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
102 friend class Transaction;
103
104 bool is_dirty_ GUARDED_BY(Locks::intern_table_lock_);
105 bool allow_new_interns_ GUARDED_BY(Locks::intern_table_lock_);
106 ConditionVariable new_intern_condition_ GUARDED_BY(Locks::intern_table_lock_);
107 Table strong_interns_ GUARDED_BY(Locks::intern_table_lock_);
108 Table weak_interns_ GUARDED_BY(Locks::intern_table_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700109};
110
111} // namespace art
112
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700113#endif // ART_RUNTIME_INTERN_TABLE_H_