/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ART_RUNTIME_OBJ_PTR_INL_H_ #define ART_RUNTIME_OBJ_PTR_INL_H_ #include #include "base/bit_utils.h" #include "obj_ptr.h" #include "thread-current-inl.h" namespace art { template inline uintptr_t ObjPtr::GetCurrentTrimedCookie() { Thread* self = Thread::Current(); if (UNLIKELY(self == nullptr)) { return kCookieMask; } return self->GetPoisonObjectCookie() & kCookieMask; } template inline bool ObjPtr::IsValid() const { if (!kObjPtrPoisoning || IsNull()) { return true; } return GetCookie() == GetCurrentTrimedCookie(); } template inline void ObjPtr::AssertValid() const { if (kObjPtrPoisoning) { CHECK(IsValid()) << "Stale object pointer " << PtrUnchecked() << " , expected cookie " << GetCurrentTrimedCookie() << " but got " << GetCookie(); } } template inline uintptr_t ObjPtr::Encode(MirrorType* ptr) { uintptr_t ref = reinterpret_cast(ptr); DCHECK_ALIGNED(ref, kObjectAlignment); if (kObjPtrPoisoning && ref != 0) { DCHECK_LE(ref, 0xFFFFFFFFU); ref >>= kObjectAlignmentShift; // Put cookie in high bits. ref |= GetCurrentTrimedCookie() << kCookieShift; } return ref; } template inline std::ostream& operator<<(std::ostream& os, ObjPtr ptr) { // May be used for dumping bad pointers, do not use the checked version. return os << ptr.PtrUnchecked(); } } // namespace art #endif // ART_RUNTIME_OBJ_PTR_INL_H_