Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 19 | #include "thread-inl.h" |
| 20 | |
| 21 | namespace art { |
| 22 | |
| 23 | LinearAlloc::LinearAlloc(ArenaPool* pool) : lock_("linear alloc"), allocator_(pool) { |
| 24 | } |
| 25 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 26 | void* 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 Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 31 | void* LinearAlloc::Alloc(Thread* self, size_t size) { |
| 32 | MutexLock mu(self, lock_); |
| 33 | return allocator_.Alloc(size); |
| 34 | } |
| 35 | |
Vladimir Marko | f44d36c | 2017-03-14 14:18:46 +0000 | [diff] [blame] | 36 | void* LinearAlloc::AllocAlign16(Thread* self, size_t size) { |
| 37 | MutexLock mu(self, lock_); |
| 38 | return allocator_.AllocAlign16(size); |
| 39 | } |
| 40 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 41 | size_t LinearAlloc::GetUsedMemory() const { |
| 42 | MutexLock mu(Thread::Current(), lock_); |
| 43 | return allocator_.BytesUsed(); |
| 44 | } |
| 45 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 46 | ArenaPool* LinearAlloc::GetArenaPool() { |
| 47 | MutexLock mu(Thread::Current(), lock_); |
| 48 | return allocator_.GetArenaPool(); |
| 49 | } |
| 50 | |
| 51 | bool LinearAlloc::Contains(void* ptr) const { |
| 52 | MutexLock mu(Thread::Current(), lock_); |
| 53 | return allocator_.Contains(ptr); |
| 54 | } |
| 55 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 56 | bool LinearAlloc::ContainsUnsafe(void* ptr) const { |
| 57 | return allocator_.Contains(ptr); |
| 58 | } |
| 59 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 60 | } // namespace art |