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 "thread.h" 19#endif 20 21ASM_DEFINE(THREAD_CARD_TABLE_OFFSET, 22 art::Thread::CardTableOffset<art::kRuntimePointerSize>().Int32Value()) 23ASM_DEFINE(THREAD_CHECKPOINT_REQUEST, 24 art::kCheckpointRequest) 25ASM_DEFINE(THREAD_CURRENT_IBASE_OFFSET, 26 art::Thread::MterpCurrentIBaseOffset<art::kRuntimePointerSize>().Int32Value()) 27ASM_DEFINE(THREAD_EMPTY_CHECKPOINT_REQUEST, 28 art::kEmptyCheckpointRequest) 29ASM_DEFINE(THREAD_EXCEPTION_OFFSET, 30 art::Thread::ExceptionOffset<art::kRuntimePointerSize>().Int32Value()) 31ASM_DEFINE(THREAD_FLAGS_OFFSET, 32 art::Thread::ThreadFlagsOffset<art::kRuntimePointerSize>().Int32Value()) 33ASM_DEFINE(THREAD_ID_OFFSET, 34 art::Thread::ThinLockIdOffset<art::kRuntimePointerSize>().Int32Value()) 35ASM_DEFINE(THREAD_INTERPRETER_CACHE_OFFSET, 36 art::Thread::InterpreterCacheOffset<art::kRuntimePointerSize>().Int32Value()) 37ASM_DEFINE(THREAD_INTERPRETER_CACHE_SIZE_LOG2, 38 art::Thread::InterpreterCacheSizeLog2()) 39ASM_DEFINE(THREAD_IS_GC_MARKING_OFFSET, 40 art::Thread::IsGcMarkingOffset<art::kRuntimePointerSize>().Int32Value()) 41ASM_DEFINE(THREAD_LOCAL_ALLOC_STACK_END_OFFSET, 42 art::Thread::ThreadLocalAllocStackEndOffset<art::kRuntimePointerSize>().Int32Value()) 43ASM_DEFINE(THREAD_LOCAL_ALLOC_STACK_TOP_OFFSET, 44 art::Thread::ThreadLocalAllocStackTopOffset<art::kRuntimePointerSize>().Int32Value()) 45ASM_DEFINE(THREAD_LOCAL_END_OFFSET, 46 art::Thread::ThreadLocalEndOffset<art::kRuntimePointerSize>().Int32Value()) 47ASM_DEFINE(THREAD_LOCAL_OBJECTS_OFFSET, 48 art::Thread::ThreadLocalObjectsOffset<art::kRuntimePointerSize>().Int32Value()) 49ASM_DEFINE(THREAD_LOCAL_POS_OFFSET, 50 art::Thread::ThreadLocalPosOffset<art::kRuntimePointerSize>().Int32Value()) 51ASM_DEFINE(THREAD_ROSALLOC_RUNS_OFFSET, 52 art::Thread::RosAllocRunsOffset<art::kRuntimePointerSize>().Int32Value()) 53ASM_DEFINE(THREAD_SELF_OFFSET, 54 art::Thread::SelfOffset<art::kRuntimePointerSize>().Int32Value()) 55ASM_DEFINE(THREAD_SUSPEND_OR_CHECKPOINT_REQUEST, 56 art::kSuspendRequest | art::kCheckpointRequest | art::kEmptyCheckpointRequest) 57ASM_DEFINE(THREAD_SUSPEND_REQUEST, 58 art::kSuspendRequest) 59ASM_DEFINE(THREAD_USE_MTERP_OFFSET, 60 art::Thread::UseMterpOffset<art::kRuntimePointerSize>().Int32Value()) 61ASM_DEFINE(THREAD_TOP_QUICK_FRAME_OFFSET, 62 art::Thread::TopOfManagedStackOffset<art::kRuntimePointerSize>().Int32Value()) 63