blob: 8423e04e88ba7aa30658f79938417cfeceda24ce [file] [log] [blame]
Elliott Hughes11e45072011-08-16 17:40:46 -07001/*
2 * Copyright (C) 2008 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 */
16
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_REFERENCE_TABLE_H_
18#define ART_RUNTIME_REFERENCE_TABLE_H_
Elliott Hughes11e45072011-08-16 17:40:46 -070019
20#include <cstddef>
21#include <iosfwd>
22#include <string>
23#include <vector>
24
Mathieu Chartierbad02672014-08-25 13:08:22 -070025#include "base/allocator.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080026#include "base/mutex.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070027#include "gc_root.h"
Mathieu Chartierc4f39252016-10-05 18:32:08 -070028#include "obj_ptr.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080029#include "object_callbacks.h"
Elliott Hughes410c0c82011-09-01 17:58:25 -070030
Elliott Hughes11e45072011-08-16 17:40:46 -070031namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032namespace mirror {
Elliott Hughes11e45072011-08-16 17:40:46 -070033class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034} // namespace mirror
Elliott Hughes11e45072011-08-16 17:40:46 -070035
Elliott Hughes6c1a3942011-08-17 15:00:06 -070036// Maintain a table of references. Used for JNI monitor references and
37// JNI pinned array references.
Carl Shapiro5b1982d2011-08-16 18:35:19 -070038//
39// None of the functions are synchronized.
Elliott Hughes11e45072011-08-16 17:40:46 -070040class ReferenceTable {
41 public:
42 ReferenceTable(const char* name, size_t initial_size, size_t max_size);
Elliott Hughesc1674ed2011-08-25 18:09:09 -070043 ~ReferenceTable();
Elliott Hughes11e45072011-08-16 17:40:46 -070044
Mathieu Chartierc4f39252016-10-05 18:32:08 -070045 void Add(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes11e45072011-08-16 17:40:46 -070046
Mathieu Chartierc4f39252016-10-05 18:32:08 -070047 void Remove(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes11e45072011-08-16 17:40:46 -070048
49 size_t Size() const;
50
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070051 void Dump(std::ostream& os) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes11e45072011-08-16 17:40:46 -070052
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070053 void VisitRoots(RootVisitor* visitor, const RootInfo& root_info)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070054 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes410c0c82011-09-01 17:58:25 -070055
Elliott Hughes11e45072011-08-16 17:40:46 -070056 private:
Mathieu Chartierbad02672014-08-25 13:08:22 -070057 typedef std::vector<GcRoot<mirror::Object>,
58 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
Hiroshi Yamauchiea2e1bd2014-06-18 13:47:35 -070059 static void Dump(std::ostream& os, Table& entries)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070060 REQUIRES_SHARED(Locks::mutator_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -070061 friend class IndirectReferenceTable; // For Dump.
Elliott Hughes6c1a3942011-08-17 15:00:06 -070062
Elliott Hughes11e45072011-08-16 17:40:46 -070063 std::string name_;
Elliott Hughes410c0c82011-09-01 17:58:25 -070064 Table entries_;
Elliott Hughes11e45072011-08-16 17:40:46 -070065 size_t max_size_;
66};
67
68} // namespace art
69
Brian Carlstromfc0e3212013-07-17 14:40:12 -070070#endif // ART_RUNTIME_REFERENCE_TABLE_H_