blob: 3018317e0f4631ac63f3fbb286693d1a28d8b672 [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#ifndef ART_SRC_INTERN_TABLE_H_
18#define ART_SRC_INTERN_TABLE_H_
19
Elliott Hughes76b61672012-12-12 17:47:30 -080020#include "base/mutex.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "root_visitor.h"
22
23#include <map>
Brian Carlstrom7e93b502011-08-04 14:16:22 -070024
25namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026namespace mirror {
27class String;
28} // namespace mirror
Brian Carlstrom7e93b502011-08-04 14:16:22 -070029
Elliott Hughescf4c6c42011-09-01 15:16:42 -070030/**
31 * Used to intern strings.
32 *
33 * There are actually two tables: one that holds strong references to its strings, and one that
34 * holds weak references. The former is used for string literals, for which there is an effective
35 * reference from the constant pool. The latter is used for strings interned at runtime via
36 * String.intern. Some code (XML parsers being a prime example) relies on being able to intern
37 * arbitrarily many strings for the duration of a parse without permanently increasing the memory
38 * footprint.
39 */
Brian Carlstrom7e93b502011-08-04 14:16:22 -070040class InternTable {
41 public:
42 InternTable();
Brian Carlstroma663ea52011-08-19 23:33:41 -070043
Elliott Hughescf4c6c42011-09-01 15:16:42 -070044 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045 mirror::String* InternStrong(int32_t utf16_length, const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070046 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070047
48 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049 mirror::String* InternStrong(const char* utf8_data)
Ian Rogersb726dcb2012-09-05 08:57:23 -070050 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromc74255f2011-09-11 22:47:39 -070051
52 // Interns a potentially new string in the 'strong' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053 mirror::String* InternStrong(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -070054
Elliott Hughescf4c6c42011-09-01 15:16:42 -070055 // Interns a potentially new string in the 'weak' table. (See above.)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080056 mirror::String* InternWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070057
58 // Register a String trusting that it is safe to intern.
59 // Used when reinitializing InternTable from an image.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060 void RegisterStrong(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070061
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062 void SweepInternTableWeaks(IsMarkedTester is_marked, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -070063 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_);
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
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069 void VisitRoots(RootVisitor* visitor, void* arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -070070
Elliott Hughescac6cc72011-11-03 20:31:21 -070071 void DumpForSigQuit(std::ostream& os) const;
72
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -070073 bool IsDirty() const { return is_dirty_; }
74 void Dirty() {
75 is_dirty_ = true;
76 }
77
Brian Carlstrom7e93b502011-08-04 14:16:22 -070078 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080079 typedef std::multimap<int32_t, mirror::String*> Table;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070080
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080081 mirror::String* Insert(mirror::String* s, bool is_strong)
Ian Rogersb726dcb2012-09-05 08:57:23 -070082 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070083
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080084 mirror::String* Lookup(Table& table, mirror::String* s, uint32_t hash_code)
Ian Rogersb726dcb2012-09-05 08:57:23 -070085 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080086 mirror::String* Insert(Table& table, mirror::String* s, uint32_t hash_code);
87 void Remove(Table& table, const mirror::String* s, uint32_t hash_code);
Elliott Hughescf4c6c42011-09-01 15:16:42 -070088
Elliott Hughes8daa0922011-09-11 13:46:25 -070089 mutable Mutex intern_table_lock_;
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -070090 bool is_dirty_;
Elliott Hughesf8349362012-06-18 15:00:06 -070091 Table image_strong_interns_ GUARDED_BY(intern_table_lock_);
92 Table strong_interns_ GUARDED_BY(intern_table_lock_);
93 Table weak_interns_ GUARDED_BY(intern_table_lock_);
Brian Carlstrom7e93b502011-08-04 14:16:22 -070094};
95
96} // namespace art
97
98#endif // ART_SRC_CLASS_LINKER_H_