Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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 | #ifndef ART_RUNTIME_GC_SPACE_BUMP_POINTER_SPACE_INL_H_ |
| 18 | #define ART_RUNTIME_GC_SPACE_BUMP_POINTER_SPACE_INL_H_ |
| 19 | |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 20 | #include "base/bit_utils.h" |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 21 | #include "bump_pointer_space.h" |
| 22 | |
| 23 | namespace art { |
| 24 | namespace gc { |
| 25 | namespace space { |
| 26 | |
Ian Rogers | 6fac447 | 2014-02-25 17:01:10 -0800 | [diff] [blame] | 27 | inline mirror::Object* BumpPointerSpace::Alloc(Thread*, size_t num_bytes, size_t* bytes_allocated, |
Hiroshi Yamauchi | 4460a84 | 2015-03-09 11:57:48 -0700 | [diff] [blame] | 28 | size_t* usable_size, |
| 29 | size_t* bytes_tl_bulk_allocated) { |
Ian Rogers | 6fac447 | 2014-02-25 17:01:10 -0800 | [diff] [blame] | 30 | num_bytes = RoundUp(num_bytes, kAlignment); |
| 31 | mirror::Object* ret = AllocNonvirtual(num_bytes); |
| 32 | if (LIKELY(ret != nullptr)) { |
| 33 | *bytes_allocated = num_bytes; |
| 34 | if (usable_size != nullptr) { |
| 35 | *usable_size = num_bytes; |
| 36 | } |
Hiroshi Yamauchi | 4460a84 | 2015-03-09 11:57:48 -0700 | [diff] [blame] | 37 | *bytes_tl_bulk_allocated = num_bytes; |
Ian Rogers | 6fac447 | 2014-02-25 17:01:10 -0800 | [diff] [blame] | 38 | } |
| 39 | return ret; |
| 40 | } |
| 41 | |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 42 | inline mirror::Object* BumpPointerSpace::AllocThreadUnsafe(Thread* self, size_t num_bytes, |
| 43 | size_t* bytes_allocated, |
Hiroshi Yamauchi | 4460a84 | 2015-03-09 11:57:48 -0700 | [diff] [blame] | 44 | size_t* usable_size, |
| 45 | size_t* bytes_tl_bulk_allocated) { |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 46 | Locks::mutator_lock_->AssertExclusiveHeld(self); |
| 47 | num_bytes = RoundUp(num_bytes, kAlignment); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 48 | uint8_t* end = end_.LoadRelaxed(); |
Ian Rogers | be2a1df | 2014-07-10 00:56:36 -0700 | [diff] [blame] | 49 | if (end + num_bytes > growth_end_) { |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 50 | return nullptr; |
| 51 | } |
Ian Rogers | be2a1df | 2014-07-10 00:56:36 -0700 | [diff] [blame] | 52 | mirror::Object* obj = reinterpret_cast<mirror::Object*>(end); |
| 53 | end_.StoreRelaxed(end + num_bytes); |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 54 | *bytes_allocated = num_bytes; |
| 55 | // Use the CAS free versions as an optimization. |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 56 | objects_allocated_.StoreRelaxed(objects_allocated_.LoadRelaxed() + 1); |
| 57 | bytes_allocated_.StoreRelaxed(bytes_allocated_.LoadRelaxed() + num_bytes); |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 58 | if (UNLIKELY(usable_size != nullptr)) { |
| 59 | *usable_size = num_bytes; |
| 60 | } |
Hiroshi Yamauchi | 4460a84 | 2015-03-09 11:57:48 -0700 | [diff] [blame] | 61 | *bytes_tl_bulk_allocated = num_bytes; |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 62 | return obj; |
| 63 | } |
| 64 | |
Mathieu Chartier | 692fafd | 2013-11-29 17:24:40 -0800 | [diff] [blame] | 65 | inline mirror::Object* BumpPointerSpace::AllocNonvirtualWithoutAccounting(size_t num_bytes) { |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 66 | DCHECK_ALIGNED(num_bytes, kAlignment); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 67 | uint8_t* old_end; |
| 68 | uint8_t* new_end; |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 69 | do { |
Ian Rogers | be2a1df | 2014-07-10 00:56:36 -0700 | [diff] [blame] | 70 | old_end = end_.LoadRelaxed(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 71 | new_end = old_end + num_bytes; |
| 72 | // If there is no more room in the region, we are out of memory. |
| 73 | if (UNLIKELY(new_end > growth_end_)) { |
| 74 | return nullptr; |
| 75 | } |
Ian Rogers | be2a1df | 2014-07-10 00:56:36 -0700 | [diff] [blame] | 76 | } while (!end_.CompareExchangeWeakSequentiallyConsistent(old_end, new_end)); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 77 | return reinterpret_cast<mirror::Object*>(old_end); |
| 78 | } |
| 79 | |
Mathieu Chartier | 692fafd | 2013-11-29 17:24:40 -0800 | [diff] [blame] | 80 | inline mirror::Object* BumpPointerSpace::AllocNonvirtual(size_t num_bytes) { |
| 81 | mirror::Object* ret = AllocNonvirtualWithoutAccounting(num_bytes); |
| 82 | if (ret != nullptr) { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 83 | objects_allocated_.FetchAndAddSequentiallyConsistent(1); |
| 84 | bytes_allocated_.FetchAndAddSequentiallyConsistent(num_bytes); |
Mathieu Chartier | 692fafd | 2013-11-29 17:24:40 -0800 | [diff] [blame] | 85 | } |
| 86 | return ret; |
| 87 | } |
| 88 | |
Ian Rogers | 6fac447 | 2014-02-25 17:01:10 -0800 | [diff] [blame] | 89 | inline size_t BumpPointerSpace::AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 90 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 6fac447 | 2014-02-25 17:01:10 -0800 | [diff] [blame] | 91 | size_t num_bytes = obj->SizeOf(); |
| 92 | if (usable_size != nullptr) { |
| 93 | *usable_size = RoundUp(num_bytes, kAlignment); |
| 94 | } |
| 95 | return num_bytes; |
| 96 | } |
| 97 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 98 | } // namespace space |
| 99 | } // namespace gc |
| 100 | } // namespace art |
| 101 | |
| 102 | #endif // ART_RUNTIME_GC_SPACE_BUMP_POINTER_SPACE_INL_H_ |