blob: eb8d8f2954f17bbb43509ba900d263060bed47ec [file] [log] [blame]
David Srbecky766e74f2018-10-02 17:12:24 +01001/*
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 "gc/allocator/rosalloc.h"
19#endif
20
21ASM_DEFINE(ROSALLOC_BRACKET_QUANTUM_SIZE_MASK,
22 art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1)
23ASM_DEFINE(ROSALLOC_BRACKET_QUANTUM_SIZE_MASK_TOGGLED32,
24 ~static_cast<uint32_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1))
25ASM_DEFINE(ROSALLOC_BRACKET_QUANTUM_SIZE_MASK_TOGGLED64,
26 ~static_cast<uint64_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1))
27ASM_DEFINE(ROSALLOC_BRACKET_QUANTUM_SIZE_SHIFT,
28 art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSizeShift)
29ASM_DEFINE(ROSALLOC_MAX_THREAD_LOCAL_BRACKET_SIZE,
30 art::gc::allocator::RosAlloc::kMaxThreadLocalBracketSize)
31ASM_DEFINE(ROSALLOC_RUN_FREE_LIST_HEAD_OFFSET,
32 art::gc::allocator::RosAlloc::RunFreeListHeadOffset())
33ASM_DEFINE(ROSALLOC_RUN_FREE_LIST_OFFSET,
34 art::gc::allocator::RosAlloc::RunFreeListOffset())
35ASM_DEFINE(ROSALLOC_RUN_FREE_LIST_SIZE_OFFSET,
36 art::gc::allocator::RosAlloc::RunFreeListSizeOffset())
37ASM_DEFINE(ROSALLOC_SLOT_NEXT_OFFSET,
38 art::gc::allocator::RosAlloc::RunSlotNextOffset())