blob: fd921f3daf0d4bafc5184d6c8c611b26117e8b1c [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 {
Mathieu Chartier893263b2014-03-04 11:07:42 -080027
28enum VisitRootFlags : uint8_t;
29
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030namespace mirror {
31class String;
32} // namespace mirror
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010033class Transaction;
Brian Carlstrom7e93b502011-08-04 14:16:22 -070034
Elliott Hughescf4c6c42011-09-01 15:16:42 -070035/**
36 * Used to intern strings.
37 *
38 * There are actually two tables: one that holds strong references to its strings, and one that
39 * holds weak references. The former is used for string literals, for which there is an effective
40 * reference from the constant pool. The latter is used for strings interned at runtime via
41 * String.intern. Some code (XML parsers being a prime example) relies on being able to intern
42 * arbitrarily many strings for the duration of a parse without permanently increasing the memory
43 * footprint.
44 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070045class InternTable {
46 public:
47 InternTable();
Brian Carlstroma663ea52011-08-19 23:33:41 -070048
Elliott Hughescf4c6c42011-09-01 15:16:42 -070049 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050 mirror::String* InternStrong(int32_t utf16_length, const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070051 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070052
53 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054 mirror::String* InternStrong(const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070055 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070056
57 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058 mirror::String* InternStrong(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070059
Elliott Hughescf4c6c42011-09-01 15:16:42 -070060 // Interns a potentially new string in the 'weak' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080061 mirror::String* InternWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070062
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080063 void SweepInternTableWeaks(IsMarkedCallback* callback, void* arg);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070064
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080065 bool ContainsWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070066
67 size_t Size() const;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070068
Mathieu Chartier893263b2014-03-04 11:07:42 -080069 void VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags);
Brian Carlstrom7e93b502011-08-04 14:16:22 -070070
Elliott Hughescac6cc72011-11-03 20:31:21 -070071 void DumpForSigQuit(std::ostream& os) const;
72
Mathieu Chartierc11d9b82013-09-19 10:01:59 -070073 void DisallowNewInterns() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
74 void AllowNewInterns() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
75
Brian Carlstrom7e93b502011-08-04 14:16:22 -070076 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080077 typedef std::multimap<int32_t, mirror::String*> Table;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070078
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080079 mirror::String* Insert(mirror::String* s, bool is_strong)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010080 LOCKS_EXCLUDED(Locks::intern_table_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -070081 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070082
Mathieu Chartier893263b2014-03-04 11:07:42 -080083 mirror::String* Lookup(Table& table, mirror::String* s, int32_t hash_code)
Ian Rogersb726dcb2012-09-05 08:57:23 -070084 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080085 mirror::String* InsertStrong(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010086 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080087 mirror::String* InsertWeak(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010088 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080089 void RemoveWeak(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010090 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080091 void Remove(Table& table, mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010092 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070093
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010094 // Transaction rollback access.
Mathieu Chartier893263b2014-03-04 11:07:42 -080095 mirror::String* InsertStrongFromTransaction(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010096 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080097 mirror::String* InsertWeakFromTransaction(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010098 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -080099 void RemoveStrongFromTransaction(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100100 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800101 void RemoveWeakFromTransaction(mirror::String* s, int32_t hash_code)
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100102 EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
103 friend class Transaction;
104
Mathieu Chartier893263b2014-03-04 11:07:42 -0800105 bool log_new_roots_ GUARDED_BY(Locks::intern_table_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100106 bool allow_new_interns_ GUARDED_BY(Locks::intern_table_lock_);
107 ConditionVariable new_intern_condition_ GUARDED_BY(Locks::intern_table_lock_);
108 Table strong_interns_ GUARDED_BY(Locks::intern_table_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800109 std::vector<std::pair<int32_t, mirror::String*> > new_strong_intern_roots_
110 GUARDED_BY(Locks::intern_table_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100111 Table weak_interns_ GUARDED_BY(Locks::intern_table_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700112};
113
114} // namespace art
115
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700116#endif // ART_RUNTIME_INTERN_TABLE_H_