blob: 3f01fc329a83ee768f539c6f30c96d99fec1bc4b [file] [log] [blame]
Mathieu Chartierc7853442015-03-27 14:35:38 -07001/*
2 * Copyright (C) 2015 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#include "linear_alloc.h"
18
Andreas Gampeb486a982017-06-01 13:45:54 -070019#include "thread-current-inl.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070020
21namespace art {
22
23LinearAlloc::LinearAlloc(ArenaPool* pool) : lock_("linear alloc"), allocator_(pool) {
24}
25
Mathieu Chartiere401d142015-04-22 13:56:20 -070026void* LinearAlloc::Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) {
27 MutexLock mu(self, lock_);
28 return allocator_.Realloc(ptr, old_size, new_size);
29}
30
Mathieu Chartierc7853442015-03-27 14:35:38 -070031void* LinearAlloc::Alloc(Thread* self, size_t size) {
32 MutexLock mu(self, lock_);
33 return allocator_.Alloc(size);
34}
35
Vladimir Markof44d36c2017-03-14 14:18:46 +000036void* LinearAlloc::AllocAlign16(Thread* self, size_t size) {
37 MutexLock mu(self, lock_);
38 return allocator_.AllocAlign16(size);
39}
40
Mathieu Chartierc7853442015-03-27 14:35:38 -070041size_t LinearAlloc::GetUsedMemory() const {
42 MutexLock mu(Thread::Current(), lock_);
43 return allocator_.BytesUsed();
44}
45
Mathieu Chartiere401d142015-04-22 13:56:20 -070046ArenaPool* LinearAlloc::GetArenaPool() {
47 MutexLock mu(Thread::Current(), lock_);
48 return allocator_.GetArenaPool();
49}
50
51bool LinearAlloc::Contains(void* ptr) const {
52 MutexLock mu(Thread::Current(), lock_);
53 return allocator_.Contains(ptr);
54}
55
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +010056bool LinearAlloc::ContainsUnsafe(void* ptr) const {
57 return allocator_.Contains(ptr);
58}
59
Mathieu Chartierc7853442015-03-27 14:35:38 -070060} // namespace art