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 "entrypoints/quick/quick_entrypoints_enum.h" 19#include "thread.h" 20#endif 21 22ASM_DEFINE(THREAD_CARD_TABLE_OFFSET, 23 art::Thread::CardTableOffset<art::kRuntimePointerSize>().Int32Value()) 24ASM_DEFINE(THREAD_EXCEPTION_OFFSET, 25 art::Thread::ExceptionOffset<art::kRuntimePointerSize>().Int32Value()) 26ASM_DEFINE(THREAD_FLAGS_OFFSET, 27 art::Thread::ThreadFlagsOffset<art::kRuntimePointerSize>().Int32Value()) 28ASM_DEFINE(THREAD_ID_OFFSET, 29 art::Thread::ThinLockIdOffset<art::kRuntimePointerSize>().Int32Value()) 30ASM_DEFINE(THREAD_INTERPRETER_CACHE_OFFSET, 31 art::Thread::InterpreterCacheOffset<art::kRuntimePointerSize>().Int32Value()) 32ASM_DEFINE(THREAD_INTERPRETER_CACHE_SIZE_LOG2, 33 art::Thread::InterpreterCacheSizeLog2()) 34ASM_DEFINE(THREAD_INTERPRETER_CACHE_SIZE_MASK, 35 (sizeof(art::InterpreterCache::Entry) * (art::InterpreterCache::kSize - 1))) 36ASM_DEFINE(THREAD_INTERPRETER_CACHE_SIZE_SHIFT, 37 (art::WhichPowerOf2(sizeof(art::InterpreterCache::Entry)) - 2)) 38ASM_DEFINE(THREAD_IS_GC_MARKING_OFFSET, 39 art::Thread::IsGcMarkingOffset<art::kRuntimePointerSize>().Int32Value()) 40ASM_DEFINE(THREAD_LOCAL_ALLOC_STACK_END_OFFSET, 41 art::Thread::ThreadLocalAllocStackEndOffset<art::kRuntimePointerSize>().Int32Value()) 42ASM_DEFINE(THREAD_LOCAL_ALLOC_STACK_TOP_OFFSET, 43 art::Thread::ThreadLocalAllocStackTopOffset<art::kRuntimePointerSize>().Int32Value()) 44ASM_DEFINE(THREAD_LOCAL_END_OFFSET, 45 art::Thread::ThreadLocalEndOffset<art::kRuntimePointerSize>().Int32Value()) 46ASM_DEFINE(THREAD_LOCAL_OBJECTS_OFFSET, 47 art::Thread::ThreadLocalObjectsOffset<art::kRuntimePointerSize>().Int32Value()) 48ASM_DEFINE(THREAD_LOCAL_POS_OFFSET, 49 art::Thread::ThreadLocalPosOffset<art::kRuntimePointerSize>().Int32Value()) 50ASM_DEFINE(THREAD_ROSALLOC_RUNS_OFFSET, 51 art::Thread::RosAllocRunsOffset<art::kRuntimePointerSize>().Int32Value()) 52ASM_DEFINE(THREAD_SELF_OFFSET, 53 art::Thread::SelfOffset<art::kRuntimePointerSize>().Int32Value()) 54ASM_DEFINE(THREAD_SUSPEND_OR_CHECKPOINT_REQUEST, 55 art::Thread::SuspendOrCheckpointRequestFlags()) 56ASM_DEFINE(THREAD_SUSPEND_REQUEST, 57 static_cast<uint32_t>(art::ThreadFlag::kSuspendRequest)) 58ASM_DEFINE(THREAD_TOP_QUICK_FRAME_OFFSET, 59 art::Thread::TopOfManagedStackOffset<art::kRuntimePointerSize>().Int32Value()) 60ASM_DEFINE(THREAD_SUSPEND_TRIGGER_OFFSET, 61 art::Thread::ThreadSuspendTriggerOffset<art::kRuntimePointerSize>().Int32Value()) 62ASM_DEFINE(THREAD_ALLOC_OBJECT_ENTRYPOINT_OFFSET, 63 art::GetThreadOffset<art::kRuntimePointerSize>(art::kQuickAllocObjectInitialized) 64 .Int32Value()) 65ASM_DEFINE(THREAD_ALLOC_ARRAY_ENTRYPOINT_OFFSET, 66 art::GetThreadOffset<art::kRuntimePointerSize>(art::kQuickAllocArrayResolved) 67 .Int32Value()) 68ASM_DEFINE(THREAD_READ_BARRIER_MARK_REG00_OFFSET, 69 art::Thread::ReadBarrierMarkEntryPointsOffset<art::kRuntimePointerSize>(0)) 70ASM_DEFINE(THREAD_SHARED_METHOD_HOTNESS_OFFSET, 71 art::Thread::SharedMethodHotnessOffset<art::kRuntimePointerSize>().Int32Value()) 72