blob: 06938e51c01a0d5dbb8b9cbde5a4ef3a3e50e232 [file] [log] [blame]
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001/*
2 * Copyright (C) 2014 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
17#ifndef ART_RUNTIME_HANDLE_H_
18#define ART_RUNTIME_HANDLE_H_
19
20#include "base/casts.h"
21#include "base/logging.h"
22#include "base/macros.h"
23#include "stack.h"
24
25namespace art {
26
27class Thread;
28
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070029template<class T> class Handle;
30
Ian Rogers22d5e732014-07-15 22:23:51 -070031// Handles are memory locations that contain GC roots. As the mirror::Object*s within a handle are
32// GC visible then the GC may move the references within them, something that couldn't be done with
33// a wrap pointer. Handles are generally allocated within HandleScopes. ConstHandle is a super-class
34// of Handle and doesn't support assignment operations.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070035template<class T>
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070036class ConstHandle {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070037 public:
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070038 ConstHandle() : reference_(nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070039 }
Ian Rogers22d5e732014-07-15 22:23:51 -070040
41 ALWAYS_INLINE ConstHandle(const ConstHandle<T>& handle) : reference_(handle.reference_) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070042 }
Ian Rogers22d5e732014-07-15 22:23:51 -070043
44 ALWAYS_INLINE ConstHandle<T>& operator=(const ConstHandle<T>& handle) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070045 reference_ = handle.reference_;
46 return *this;
47 }
Ian Rogers22d5e732014-07-15 22:23:51 -070048
49 ALWAYS_INLINE explicit ConstHandle(StackReference<T>* reference) : reference_(reference) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070050 }
Ian Rogers22d5e732014-07-15 22:23:51 -070051
52 ALWAYS_INLINE T& operator*() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070053 return *Get();
54 }
Ian Rogers22d5e732014-07-15 22:23:51 -070055
56 ALWAYS_INLINE T* operator->() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070057 return Get();
58 }
Ian Rogers22d5e732014-07-15 22:23:51 -070059
60 ALWAYS_INLINE T* Get() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070061 return reference_->AsMirrorPtr();
62 }
Ian Rogers22d5e732014-07-15 22:23:51 -070063
64 ALWAYS_INLINE jobject ToJObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -070065 if (UNLIKELY(reference_->AsMirrorPtr() == nullptr)) {
66 // Special case so that we work with NullHandles.
67 return nullptr;
68 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070069 return reinterpret_cast<jobject>(reference_);
70 }
71
Mathieu Chartier0cd81352014-05-22 16:48:55 -070072 protected:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070073 StackReference<T>* reference_;
74
75 template<typename S>
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070076 explicit ConstHandle(StackReference<S>* reference)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070077 : reference_(reinterpret_cast<StackReference<T>*>(reference)) {
78 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070079 template<typename S>
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070080 explicit ConstHandle(const ConstHandle<S>& handle)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070081 : reference_(reinterpret_cast<StackReference<T>*>(handle.reference_)) {
82 }
83
Mathieu Chartier0cd81352014-05-22 16:48:55 -070084 StackReference<T>* GetReference() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) ALWAYS_INLINE {
85 return reference_;
86 }
Ian Rogers22d5e732014-07-15 22:23:51 -070087 ALWAYS_INLINE const StackReference<T>* GetReference() const
88 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070089 return reference_;
90 }
91
92 private:
93 friend class BuildGenericJniFrameVisitor;
94 template<class S> friend class ConstHandle;
95 friend class HandleScope;
96 template<class S> friend class HandleWrapper;
97 template<size_t kNumReferences> friend class StackHandleScope;
98};
99
Ian Rogers22d5e732014-07-15 22:23:51 -0700100// Handles that support assignment.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700101template<class T>
102class Handle : public ConstHandle<T> {
103 public:
104 Handle() {
105 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700106
107 ALWAYS_INLINE Handle(const Handle<T>& handle) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700108 : ConstHandle<T>(handle.reference_) {
109 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700110
111 ALWAYS_INLINE Handle<T>& operator=(const Handle<T>& handle)
112 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700113 ConstHandle<T>::operator=(handle);
114 return *this;
115 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700116
117 ALWAYS_INLINE explicit Handle(StackReference<T>* reference)
118 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
119 : ConstHandle<T>(reference) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700120 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700121
122 ALWAYS_INLINE T* Assign(T* reference) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700123 StackReference<T>* ref = ConstHandle<T>::GetReference();
124 T* const old = ref->AsMirrorPtr();
125 ref->Assign(reference);
126 return old;
127 }
128
Ian Rogers22d5e732014-07-15 22:23:51 -0700129 template<typename S>
130 explicit Handle(const Handle<S>& handle) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
131 : ConstHandle<T>(handle) {
132 }
133
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700134 protected:
135 template<typename S>
136 explicit Handle(StackReference<S>* reference) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
137 : ConstHandle<T>(reference) {
138 }
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700139
140 private:
141 friend class BuildGenericJniFrameVisitor;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700142 friend class HandleScope;
143 template<class S> friend class HandleWrapper;
144 template<size_t kNumReferences> friend class StackHandleScope;
145};
146
Ian Rogers22d5e732014-07-15 22:23:51 -0700147// A special case of Handle that only holds references to null.
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700148template<class T>
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700149class NullHandle : public ConstHandle<T> {
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700150 public:
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700151 NullHandle() : ConstHandle<T>(&null_ref_) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700152 }
153
154 private:
155 StackReference<T> null_ref_;
156};
157
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700158} // namespace art
159
160#endif // ART_RUNTIME_HANDLE_H_