/* * Copyright (C) 2011 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_MIRROR_OBJECT_REFVISITOR_INL_H_ #define ART_RUNTIME_MIRROR_OBJECT_REFVISITOR_INL_H_ #include "object-inl.h" #include "class-refvisitor-inl.h" #include "class_loader-inl.h" #include "dex_cache-inl.h" namespace art { namespace mirror { template inline void Object::VisitReferences(const Visitor& visitor, const JavaLangRefVisitor& ref_visitor) { visitor(this, ClassOffset(), /* is_static= */ false); ObjPtr klass = GetClass(); const uint32_t class_flags = klass->GetClassFlags(); if (LIKELY(class_flags == kClassFlagNormal)) { DCHECK((!klass->IsVariableSize())); VisitInstanceFieldsReferences(klass, visitor); DCHECK((!klass->IsClassClass())); DCHECK(!klass->IsStringClass()); DCHECK(!klass->IsClassLoaderClass()); DCHECK((!klass->IsArrayClass())); } else { if ((class_flags & kClassFlagNoReferenceFields) == 0) { DCHECK(!klass->IsStringClass()); if (class_flags == kClassFlagClass) { DCHECK((klass->IsClassClass())); ObjPtr as_klass = AsClass(); as_klass->VisitReferences(klass, visitor); } else if (class_flags == kClassFlagObjectArray) { DCHECK((klass->IsObjectArrayClass())); AsObjectArray()->VisitReferences(visitor); } else if ((class_flags & kClassFlagReference) != 0) { VisitInstanceFieldsReferences(klass, visitor); ref_visitor(klass, AsReference()); } else if (class_flags == kClassFlagDexCache) { ObjPtr const dex_cache = AsDexCache(); dex_cache->VisitReferences(klass, visitor); } else { ObjPtr const class_loader = AsClassLoader(); class_loader->VisitReferences(klass, visitor); } } else if (kIsDebugBuild) { CHECK((!klass->IsClassClass())); CHECK((!klass->IsObjectArrayClass())); // String still has instance fields for reflection purposes but these don't exist in // actual string instances. if (!klass->IsStringClass()) { size_t total_reference_instance_fields = 0; ObjPtr super_class = klass; do { total_reference_instance_fields += super_class->NumReferenceInstanceFields(); super_class = super_class->GetSuperClass(); } while (super_class != nullptr); // The only reference field should be the object's class. This field is handled at the // beginning of the function. CHECK_EQ(total_reference_instance_fields, 1u); } } } } } // namespace mirror } // namespace art #endif // ART_RUNTIME_MIRROR_OBJECT_REFVISITOR_INL_H_