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 "base/bit_utils.h" 19#include "base/callee_save_type.h" 20#include "base/enums.h" 21#include "base/globals.h" 22#include "dex/modifiers.h" 23#include "gc/accounting/card_table.h" 24#include "gc/heap.h" 25#include "interpreter/mterp/mterp.h" 26#include "interpreter/mterp/nterp.h" 27#include "jit/jit.h" 28#include "mirror/object.h" 29#include "mirror/object_reference.h" 30#include "runtime_globals.h" 31#include "stack.h" 32#endif 33 34ASM_DEFINE(ACCESS_FLAGS_METHOD_IS_NATIVE, 35 art::kAccNative) 36ASM_DEFINE(ACCESS_FLAGS_METHOD_IS_NATIVE_BIT, 37 art::MostSignificantBit(art::kAccNative)) 38ASM_DEFINE(ACCESS_FLAGS_METHOD_IS_FAST_NATIVE, 39 art::kAccFastNative) 40ASM_DEFINE(ACCESS_FLAGS_METHOD_IS_CRITICAL_NATIVE, 41 art::kAccCriticalNative) 42ASM_DEFINE(ACCESS_FLAGS_CLASS_IS_FINALIZABLE, 43 art::kAccClassIsFinalizable) 44ASM_DEFINE(ACCESS_FLAGS_CLASS_IS_FINALIZABLE_BIT, 45 art::MostSignificantBit(art::kAccClassIsFinalizable)) 46ASM_DEFINE(ACCESS_FLAGS_CLASS_IS_INTERFACE, 47 art::kAccInterface) 48ASM_DEFINE(ACC_OBSOLETE_METHOD, 49 art::kAccObsoleteMethod) 50ASM_DEFINE(ACC_OBSOLETE_METHOD_SHIFT, 51 art::WhichPowerOf2(art::kAccObsoleteMethod)) 52ASM_DEFINE(CARD_TABLE_CARD_SHIFT, 53 art::gc::accounting::CardTable::kCardShift) 54ASM_DEFINE(COMPRESSED_REFERENCE_SIZE, 55 sizeof(art::mirror::CompressedReference<art::mirror::Object>)) 56ASM_DEFINE(COMPRESSED_REFERENCE_SIZE_SHIFT, 57 art::WhichPowerOf2(sizeof(art::mirror::CompressedReference<art::mirror::Object>))) 58ASM_DEFINE(JIT_CHECK_OSR, 59 art::jit::kJitCheckForOSR) 60ASM_DEFINE(JIT_HOTNESS_DISABLE, 61 art::jit::kJitHotnessDisabled) 62ASM_DEFINE(MIN_LARGE_OBJECT_THRESHOLD, 63 art::gc::Heap::kMinLargeObjectThreshold) 64ASM_DEFINE(MTERP_HANDLER_SIZE, 65 art::interpreter::kMterpHandlerSize) 66ASM_DEFINE(MTERP_HANDLER_SIZE_LOG2, 67 art::WhichPowerOf2(art::interpreter::kMterpHandlerSize)) 68ASM_DEFINE(OBJECT_ALIGNMENT_MASK, 69 art::kObjectAlignment - 1) 70ASM_DEFINE(OBJECT_ALIGNMENT_MASK_TOGGLED, 71 ~static_cast<uint32_t>(art::kObjectAlignment - 1)) 72ASM_DEFINE(OBJECT_ALIGNMENT_MASK_TOGGLED64, 73 ~static_cast<uint64_t>(art::kObjectAlignment - 1)) 74ASM_DEFINE(POINTER_SIZE, 75 static_cast<size_t>(art::kRuntimePointerSize)) 76ASM_DEFINE(POINTER_SIZE_SHIFT, 77 art::WhichPowerOf2(static_cast<size_t>(art::kRuntimePointerSize))) 78ASM_DEFINE(STACK_REFERENCE_SIZE, 79 sizeof(art::StackReference<art::mirror::Object>)) 80ASM_DEFINE(STD_MEMORY_ORDER_RELAXED, 81 std::memory_order_relaxed) 82ASM_DEFINE(STACK_OVERFLOW_RESERVED_BYTES, 83 GetStackOverflowReservedBytes(art::kRuntimeISA)) 84ASM_DEFINE(NTERP_HOTNESS_MASK, 85 art::interpreter::kNterpHotnessMask) 86