blob: addb6638b6be22fedf09ff380f915419cbba024a [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
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070033// a wrap pointer. Handles are generally allocated within HandleScopes. Handle is a super-class
34// of MutableHandle and doesn't support assignment operations.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070035template<class T>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070036class Handle {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070037 public:
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070038 Handle() : reference_(nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070039 }
Ian Rogers22d5e732014-07-15 22:23:51 -070040
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070041 ALWAYS_INLINE Handle(const Handle<T>& handle) : reference_(handle.reference_) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070042 }
Ian Rogers22d5e732014-07-15 22:23:51 -070043
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070044 ALWAYS_INLINE Handle<T>& operator=(const Handle<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
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070049 ALWAYS_INLINE explicit Handle(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>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070076 explicit Handle(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>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070080 explicit Handle(const Handle<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;
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070094 template<class S> friend class Handle;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070095 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>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700102class MutableHandle : public Handle<T> {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700103 public:
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700104 MutableHandle() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700105 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700106
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700107 ALWAYS_INLINE MutableHandle(const MutableHandle<T>& handle)
108 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
109 : Handle<T>(handle.reference_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700110 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700111
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700112 ALWAYS_INLINE MutableHandle<T>& operator=(const MutableHandle<T>& handle)
Ian Rogers22d5e732014-07-15 22:23:51 -0700113 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700114 Handle<T>::operator=(handle);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700115 return *this;
116 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700117
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700118 ALWAYS_INLINE explicit MutableHandle(StackReference<T>* reference)
Ian Rogers22d5e732014-07-15 22:23:51 -0700119 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700120 : Handle<T>(reference) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700121 }
Ian Rogers22d5e732014-07-15 22:23:51 -0700122
123 ALWAYS_INLINE T* Assign(T* reference) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700124 StackReference<T>* ref = Handle<T>::GetReference();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700125 T* const old = ref->AsMirrorPtr();
126 ref->Assign(reference);
127 return old;
128 }
129
Ian Rogers22d5e732014-07-15 22:23:51 -0700130 template<typename S>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700131 explicit MutableHandle(const MutableHandle<S>& handle) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
132 : Handle<T>(handle) {
Ian Rogers22d5e732014-07-15 22:23:51 -0700133 }
134
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700135 protected:
136 template<typename S>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700137 explicit MutableHandle(StackReference<S>* reference) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
138 : Handle<T>(reference) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700139 }
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700140
141 private:
142 friend class BuildGenericJniFrameVisitor;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700143 friend class HandleScope;
144 template<class S> friend class HandleWrapper;
145 template<size_t kNumReferences> friend class StackHandleScope;
146};
147
Ian Rogers22d5e732014-07-15 22:23:51 -0700148// A special case of Handle that only holds references to null.
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700149template<class T>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700150class NullHandle : public Handle<T> {
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700151 public:
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700152 NullHandle() : Handle<T>(&null_ref_) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700153 }
154
155 private:
156 StackReference<T> null_ref_;
157};
158
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700159} // namespace art
160
161#endif // ART_RUNTIME_HANDLE_H_