/* * Copyright (C) 2018 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_CLASS_ROOT_INL_H_ #define ART_RUNTIME_CLASS_ROOT_INL_H_ #include "class_root.h" #include "class_linker-inl.h" #include "mirror/class.h" #include "mirror/object_array-inl.h" #include "obj_ptr-inl.h" #include "runtime.h" namespace art { template inline ObjPtr GetClassRoot(ClassRoot class_root, ObjPtr> class_roots) { DCHECK(class_roots != nullptr); if (kReadBarrierOption == kWithReadBarrier) { // With read barrier all references must point to the to-space. // Without read barrier, this check could fail. DCHECK_EQ(class_roots, Runtime::Current()->GetClassLinker()->GetClassRoots()); } DCHECK_LT(static_cast(class_root), static_cast(ClassRoot::kMax)); int32_t index = static_cast(class_root); ObjPtr klass = class_roots->GetWithoutChecks(index); DCHECK(klass != nullptr); return klass; } template inline ObjPtr GetClassRoot(ClassRoot class_root, ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_) { return GetClassRoot(class_root, linker->GetClassRoots()); } template inline ObjPtr GetClassRoot(ClassRoot class_root) REQUIRES_SHARED(Locks::mutator_lock_) { return GetClassRoot(class_root, Runtime::Current()->GetClassLinker()); } namespace detail { class ClassNotFoundExceptionTag; template struct NoMirrorType; template struct ClassRootSelector; // No definition for unspecialized ClassRoot selector. #define SPECIALIZE_CLASS_ROOT_SELECTOR(name, descriptor, mirror_type) \ template <> \ struct ClassRootSelector { \ static constexpr ClassRoot value = ClassRoot::name; \ }; CLASS_ROOT_LIST(SPECIALIZE_CLASS_ROOT_SELECTOR) #undef SPECIALIZE_CLASS_ROOT_SELECTOR } // namespace detail template inline ObjPtr GetClassRoot(ObjPtr> class_roots) REQUIRES_SHARED(Locks::mutator_lock_) { return GetClassRoot(detail::ClassRootSelector::value, class_roots); } template inline ObjPtr GetClassRoot(ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_) { return GetClassRoot(detail::ClassRootSelector::value, linker); } template inline ObjPtr GetClassRoot() REQUIRES_SHARED(Locks::mutator_lock_) { return GetClassRoot(detail::ClassRootSelector::value); } } // namespace art #endif // ART_RUNTIME_CLASS_ROOT_INL_H_