1/* 2 * Copyright (C) 2018 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#if ASM_DEFINE_INCLUDE_DEPENDENCIES 18#include "mirror/class.h" 19#endif 20 21ASM_DEFINE(MIRROR_CLASS_ACCESS_FLAGS_OFFSET, 22 art::mirror::Class::AccessFlagsOffset().Int32Value()) 23ASM_DEFINE(MIRROR_CLASS_COMPONENT_TYPE_OFFSET, 24 art::mirror::Class::ComponentTypeOffset().Int32Value()) 25ASM_DEFINE(MIRROR_CLASS_DEX_CACHE_OFFSET, 26 art::mirror::Class::DexCacheOffset().Int32Value()) 27ASM_DEFINE(MIRROR_CLASS_IF_TABLE_OFFSET, 28 art::mirror::Class::IfTableOffset().Int32Value()) 29ASM_DEFINE(MIRROR_CLASS_OBJECT_PRIMITIVE_TYPE_OFFSET, 30 art::mirror::Class::PrimitiveTypeOffset().Int32Value()) 31ASM_DEFINE(MIRROR_CLASS_OBJECT_SIZE_ALLOC_FAST_PATH_OFFSET, 32 art::mirror::Class::ObjectSizeAllocFastPathOffset().Int32Value()) 33ASM_DEFINE(MIRROR_CLASS_OBJECT_SIZE_OFFSET, 34 art::mirror::Class::ObjectSizeOffset().Int32Value()) 35ASM_DEFINE(MIRROR_CLASS_STATUS_OFFSET, 36 art::mirror::Class::StatusOffset().Int32Value()) 37ASM_DEFINE(PRIMITIVE_TYPE_SIZE_SHIFT_SHIFT, 38 art::mirror::Class::kPrimitiveTypeSizeShiftShift) 39ASM_DEFINE(MIRROR_CLASS_VTABLE_OFFSET_32, 40 art::mirror::Class::EmbeddedVTableOffset(art::PointerSize::k32).Int32Value()) 41ASM_DEFINE(MIRROR_CLASS_VTABLE_OFFSET_64, 42 art::mirror::Class::EmbeddedVTableOffset(art::PointerSize::k64).Int32Value()) 43ASM_DEFINE(MIRROR_CLASS_IMT_PTR_OFFSET_32, 44 art::mirror::Class::ImtPtrOffset(art::PointerSize::k32).Int32Value()) 45ASM_DEFINE(MIRROR_CLASS_IMT_PTR_OFFSET_64, 46 art::mirror::Class::ImtPtrOffset(art::PointerSize::k64).Int32Value()) 47