blob: 416287370e303ced08e562e16040b40918947b5c [file] [log] [blame]
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -07001/*
2 * Copyright (C) 2016 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
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070017#ifndef ART_RUNTIME_OBJ_PTR_H_
18#define ART_RUNTIME_OBJ_PTR_H_
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070019
Mathieu Chartier0795f232016-09-27 18:43:30 -070020#include <ostream>
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -070021#include <type_traits>
Mathieu Chartier0795f232016-09-27 18:43:30 -070022
Andreas Gampe52edc852016-11-03 15:46:34 -070023#include "base/macros.h"
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070024#include "base/mutex.h" // For Locks::mutator_lock_.
25#include "globals.h"
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070026
27namespace art {
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070028
Andreas Gampec73cb642017-02-22 10:11:30 -080029constexpr bool kObjPtrPoisoning = kIsDebugBuild;
30
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070031// Value type representing a pointer to a mirror::Object of type MirrorType
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070032// Since the cookie is thread based, it is not safe to share an ObjPtr between threads.
Andreas Gampec73cb642017-02-22 10:11:30 -080033template<class MirrorType>
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070034class ObjPtr {
35 static constexpr size_t kCookieShift =
Mathieu Chartiera058fdf2016-10-06 15:13:58 -070036 sizeof(kHeapReferenceSize) * kBitsPerByte - kObjectAlignmentShift;
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070037 static constexpr size_t kCookieBits = sizeof(uintptr_t) * kBitsPerByte - kCookieShift;
38 static constexpr uintptr_t kCookieMask = (static_cast<uintptr_t>(1u) << kCookieBits) - 1;
39
40 static_assert(kCookieBits >= kObjectAlignmentShift,
41 "must have a least kObjectAlignmentShift bits");
42
43 public:
44 ALWAYS_INLINE ObjPtr() REQUIRES_SHARED(Locks::mutator_lock_) : reference_(0u) {}
45
Andreas Gampe52edc852016-11-03 15:46:34 -070046 // Note: The following constructors allow implicit conversion. This simplifies code that uses
47 // them, e.g., for parameter passing. However, in general, implicit-conversion constructors
48 // are discouraged and detected by cpplint and clang-tidy. So mark these constructors
49 // as NOLINT (without category, as the categories are different).
50
51 ALWAYS_INLINE ObjPtr(std::nullptr_t) // NOLINT
52 REQUIRES_SHARED(Locks::mutator_lock_)
53 : reference_(0u) {}
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070054
Vladimir Marko19a4d372016-12-08 14:41:46 +000055 template <typename Type,
56 typename = typename std::enable_if<std::is_base_of<MirrorType, Type>::value>::type>
Andreas Gampe52edc852016-11-03 15:46:34 -070057 ALWAYS_INLINE ObjPtr(Type* ptr) // NOLINT
58 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -070059 : reference_(Encode(static_cast<MirrorType*>(ptr))) {
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -070060 }
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070061
Vladimir Marko19a4d372016-12-08 14:41:46 +000062 template <typename Type,
63 typename = typename std::enable_if<std::is_base_of<MirrorType, Type>::value>::type>
Andreas Gampec73cb642017-02-22 10:11:30 -080064 ALWAYS_INLINE ObjPtr(const ObjPtr<Type>& other) // NOLINT
Andreas Gampe52edc852016-11-03 15:46:34 -070065 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -070066 : reference_(Encode(static_cast<MirrorType*>(other.Ptr()))) {
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -070067 }
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070068
Vladimir Marko19a4d372016-12-08 14:41:46 +000069 template <typename Type,
70 typename = typename std::enable_if<std::is_base_of<MirrorType, Type>::value>::type>
Andreas Gampec73cb642017-02-22 10:11:30 -080071 ALWAYS_INLINE ObjPtr& operator=(const ObjPtr<Type>& other)
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -070072 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -070073 reference_ = Encode(static_cast<MirrorType*>(other.Ptr()));
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070074 return *this;
75 }
76
77 ALWAYS_INLINE ObjPtr& operator=(MirrorType* ptr) REQUIRES_SHARED(Locks::mutator_lock_) {
78 Assign(ptr);
79 return *this;
80 }
81
82 ALWAYS_INLINE void Assign(MirrorType* ptr) REQUIRES_SHARED(Locks::mutator_lock_) {
83 reference_ = Encode(ptr);
84 }
85
86 ALWAYS_INLINE MirrorType* operator->() const REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -070087 return Ptr();
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070088 }
89
90 ALWAYS_INLINE bool IsNull() const {
91 return reference_ == 0;
92 }
93
Mathieu Chartier1cc62e42016-10-03 18:01:28 -070094 // Ptr makes sure that the object pointer is valid.
95 ALWAYS_INLINE MirrorType* Ptr() const REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070096 AssertValid();
Mathieu Chartier1cc62e42016-10-03 18:01:28 -070097 return PtrUnchecked();
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -070098 }
99
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700100 ALWAYS_INLINE bool IsValid() const REQUIRES_SHARED(Locks::mutator_lock_);
101
102 ALWAYS_INLINE void AssertValid() const REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700103
104 ALWAYS_INLINE bool operator==(const ObjPtr& ptr) const REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -0700105 return Ptr() == ptr.Ptr();
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700106 }
107
Mathieu Chartier3398c782016-09-30 10:27:43 -0700108 template <typename PointerType>
109 ALWAYS_INLINE bool operator==(const PointerType* ptr) const
110 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -0700111 return Ptr() == ptr;
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700112 }
113
Mathieu Chartier3398c782016-09-30 10:27:43 -0700114 ALWAYS_INLINE bool operator==(std::nullptr_t) const {
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700115 return IsNull();
116 }
117
118 ALWAYS_INLINE bool operator!=(const ObjPtr& ptr) const REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -0700119 return Ptr() != ptr.Ptr();
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700120 }
121
Mathieu Chartier3398c782016-09-30 10:27:43 -0700122 template <typename PointerType>
123 ALWAYS_INLINE bool operator!=(const PointerType* ptr) const
124 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -0700125 return Ptr() != ptr;
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700126 }
127
Mathieu Chartier3398c782016-09-30 10:27:43 -0700128 ALWAYS_INLINE bool operator!=(std::nullptr_t) const {
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700129 return !IsNull();
130 }
131
Mathieu Chartier1cc62e42016-10-03 18:01:28 -0700132 // Ptr unchecked does not check that object pointer is valid. Do not use if you can avoid it.
133 ALWAYS_INLINE MirrorType* PtrUnchecked() const {
Andreas Gampec73cb642017-02-22 10:11:30 -0800134 if (kObjPtrPoisoning) {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700135 return reinterpret_cast<MirrorType*>(
136 static_cast<uintptr_t>(static_cast<uint32_t>(reference_ << kObjectAlignmentShift)));
137 } else {
138 return reinterpret_cast<MirrorType*>(reference_);
139 }
140 }
141
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700142 // Static function to be friendly with null pointers.
143 template <typename SourceType>
144 static ObjPtr<MirrorType> DownCast(ObjPtr<SourceType> ptr) REQUIRES_SHARED(Locks::mutator_lock_) {
145 static_assert(std::is_base_of<SourceType, MirrorType>::value,
146 "Target type must be a subtype of source type");
147 return static_cast<MirrorType*>(ptr.Ptr());
148 }
149
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700150 private:
151 // Trim off high bits of thread local cookie.
152 ALWAYS_INLINE static uintptr_t TrimCookie(uintptr_t cookie) {
153 return cookie & kCookieMask;
154 }
155
156 ALWAYS_INLINE uintptr_t GetCookie() const {
157 return reference_ >> kCookieShift;
158 }
159
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700160 ALWAYS_INLINE static uintptr_t Encode(MirrorType* ptr) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700161 // The encoded reference and cookie.
162 uintptr_t reference_;
163};
164
Andreas Gampe52edc852016-11-03 15:46:34 -0700165static_assert(std::is_trivially_copyable<ObjPtr<void>>::value,
166 "ObjPtr should be trivially copyable");
167
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700168// Hash function for stl data structures.
169class HashObjPtr {
170 public:
Andreas Gampec73cb642017-02-22 10:11:30 -0800171 template<class MirrorType>
172 size_t operator()(const ObjPtr<MirrorType>& ptr) const NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700173 return std::hash<MirrorType*>()(ptr.Ptr());
174 }
175};
176
Andreas Gampec73cb642017-02-22 10:11:30 -0800177template<class MirrorType, typename PointerType>
178ALWAYS_INLINE bool operator==(const PointerType* a, const ObjPtr<MirrorType>& b)
Mathieu Chartier3398c782016-09-30 10:27:43 -0700179 REQUIRES_SHARED(Locks::mutator_lock_) {
180 return b == a;
181}
182
Andreas Gampec73cb642017-02-22 10:11:30 -0800183template<class MirrorType>
184ALWAYS_INLINE bool operator==(std::nullptr_t, const ObjPtr<MirrorType>& b) {
Mathieu Chartier3398c782016-09-30 10:27:43 -0700185 return b == nullptr;
186}
187
Andreas Gampec73cb642017-02-22 10:11:30 -0800188template<typename MirrorType, typename PointerType>
189ALWAYS_INLINE bool operator!=(const PointerType* a, const ObjPtr<MirrorType>& b)
Mathieu Chartier3398c782016-09-30 10:27:43 -0700190 REQUIRES_SHARED(Locks::mutator_lock_) {
191 return b != a;
192}
193
Andreas Gampec73cb642017-02-22 10:11:30 -0800194template<class MirrorType>
195ALWAYS_INLINE bool operator!=(std::nullptr_t, const ObjPtr<MirrorType>& b) {
Mathieu Chartier3398c782016-09-30 10:27:43 -0700196 return b != nullptr;
197}
198
Andreas Gampec73cb642017-02-22 10:11:30 -0800199template<class MirrorType>
200static inline ObjPtr<MirrorType> MakeObjPtr(MirrorType* ptr) {
201 return ObjPtr<MirrorType>(ptr);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700202}
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700203
Andreas Gampec73cb642017-02-22 10:11:30 -0800204template<class MirrorType>
205static inline ObjPtr<MirrorType> MakeObjPtr(ObjPtr<MirrorType> ptr) {
206 return ObjPtr<MirrorType>(ptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -0700207}
208
Andreas Gampec73cb642017-02-22 10:11:30 -0800209template<class MirrorType>
210ALWAYS_INLINE std::ostream& operator<<(std::ostream& os, ObjPtr<MirrorType> ptr);
Mathieu Chartier0795f232016-09-27 18:43:30 -0700211
Mathieu Chartier3f7f03c2016-09-26 11:39:52 -0700212} // namespace art
213
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700214#endif // ART_RUNTIME_OBJ_PTR_H_