David Srbecky | 766e74f | 2018-10-02 17:12:24 +0100 | [diff] [blame] | 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 | |
| 21 | ASM_DEFINE(MIRROR_CLASS_ACCESS_FLAGS_OFFSET, |
| 22 | art::mirror::Class::AccessFlagsOffset().Int32Value()) |
| 23 | ASM_DEFINE(MIRROR_CLASS_COMPONENT_TYPE_OFFSET, |
| 24 | art::mirror::Class::ComponentTypeOffset().Int32Value()) |
| 25 | ASM_DEFINE(MIRROR_CLASS_DEX_CACHE_OFFSET, |
| 26 | art::mirror::Class::DexCacheOffset().Int32Value()) |
| 27 | ASM_DEFINE(MIRROR_CLASS_IF_TABLE_OFFSET, |
| 28 | art::mirror::Class::IfTableOffset().Int32Value()) |
| 29 | ASM_DEFINE(MIRROR_CLASS_OBJECT_PRIMITIVE_TYPE_OFFSET, |
| 30 | art::mirror::Class::PrimitiveTypeOffset().Int32Value()) |
| 31 | ASM_DEFINE(MIRROR_CLASS_OBJECT_SIZE_ALLOC_FAST_PATH_OFFSET, |
| 32 | art::mirror::Class::ObjectSizeAllocFastPathOffset().Int32Value()) |
| 33 | ASM_DEFINE(MIRROR_CLASS_OBJECT_SIZE_OFFSET, |
| 34 | art::mirror::Class::ObjectSizeOffset().Int32Value()) |
| 35 | ASM_DEFINE(MIRROR_CLASS_STATUS_OFFSET, |
| 36 | art::mirror::Class::StatusOffset().Int32Value()) |
| 37 | ASM_DEFINE(PRIMITIVE_TYPE_SIZE_SHIFT_SHIFT, |
| 38 | art::mirror::Class::kPrimitiveTypeSizeShiftShift) |
Nicolas Geoffray | a00b54b | 2019-12-03 14:36:42 +0000 | [diff] [blame] | 39 | ASM_DEFINE(MIRROR_CLASS_VTABLE_OFFSET_32, |
| 40 | art::mirror::Class::EmbeddedVTableOffset(art::PointerSize::k32).Int32Value()) |
| 41 | ASM_DEFINE(MIRROR_CLASS_VTABLE_OFFSET_64, |
| 42 | art::mirror::Class::EmbeddedVTableOffset(art::PointerSize::k64).Int32Value()) |
| 43 | ASM_DEFINE(MIRROR_CLASS_IMT_PTR_OFFSET_32, |
| 44 | art::mirror::Class::ImtPtrOffset(art::PointerSize::k32).Int32Value()) |
| 45 | ASM_DEFINE(MIRROR_CLASS_IMT_PTR_OFFSET_64, |
| 46 | art::mirror::Class::ImtPtrOffset(art::PointerSize::k64).Int32Value()) |
Nicolas Geoffray | c2b3116 | 2021-12-06 09:08:33 +0000 | [diff] [blame] | 47 | ASM_DEFINE(MIRROR_CLASS_SUPER_CLASS_OFFSET, |
| 48 | art::mirror::Class::SuperClassOffset().Int32Value()) |
| 49 | ASM_DEFINE(MIRROR_CLASS_IS_INTERFACE_FLAG, art::kAccInterface) |
| 50 | ASM_DEFINE(MIRROR_CLASS_IS_INTERFACE_FLAG_BIT, |
| 51 | art::WhichPowerOf2(art::kAccInterface)) |