Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -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_ROSALLOC_SPACE_H_ |
| 18 | #define ART_RUNTIME_GC_SPACE_ROSALLOC_SPACE_H_ |
| 19 | |
| 20 | #include "gc/allocator/rosalloc.h" |
| 21 | #include "malloc_space.h" |
| 22 | #include "space.h" |
| 23 | |
| 24 | namespace art { |
| 25 | namespace gc { |
| 26 | |
| 27 | namespace collector { |
| 28 | class MarkSweep; |
| 29 | } // namespace collector |
| 30 | |
| 31 | namespace space { |
| 32 | |
| 33 | // An alloc space is a space where objects may be allocated and garbage collected. |
| 34 | class RosAllocSpace : public MallocSpace { |
| 35 | public: |
| 36 | // Create a RosAllocSpace with the requested sizes. The requested |
| 37 | // base address is not guaranteed to be granted, if it is required, |
| 38 | // the caller should call Begin on the returned space to confirm the |
| 39 | // request was granted. |
| 40 | static RosAllocSpace* Create(const std::string& name, size_t initial_size, size_t growth_limit, |
Hiroshi Yamauchi | 573f7d2 | 2013-12-17 11:54:23 -0800 | [diff] [blame] | 41 | size_t capacity, byte* requested_begin, bool low_memory_mode); |
Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 42 | static RosAllocSpace* CreateFromMemMap(MemMap* mem_map, const std::string& name, |
| 43 | size_t starting_size, size_t initial_size, |
| 44 | size_t growth_limit, size_t capacity, |
| 45 | bool low_memory_mode); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 46 | |
| 47 | virtual mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, |
| 48 | size_t* bytes_allocated) LOCKS_EXCLUDED(lock_); |
| 49 | virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated); |
| 50 | virtual size_t AllocationSize(const mirror::Object* obj); |
| 51 | virtual size_t Free(Thread* self, mirror::Object* ptr); |
| 52 | virtual size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs); |
| 53 | |
| 54 | mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated); |
| 55 | |
| 56 | size_t AllocationSizeNonvirtual(const mirror::Object* obj) |
| 57 | NO_THREAD_SAFETY_ANALYSIS { |
| 58 | // TODO: NO_THREAD_SAFETY_ANALYSIS because SizeOf() requires that mutator_lock is held. |
| 59 | void* obj_ptr = const_cast<void*>(reinterpret_cast<const void*>(obj)); |
| 60 | // obj is a valid object. Use its class in the header to get the size. |
| 61 | size_t size = obj->SizeOf(); |
| 62 | size_t size_by_size = rosalloc_->UsableSize(size); |
| 63 | if (kIsDebugBuild) { |
| 64 | size_t size_by_ptr = rosalloc_->UsableSize(obj_ptr); |
| 65 | if (size_by_size != size_by_ptr) { |
| 66 | LOG(INFO) << "Found a bad sized obj of size " << size |
| 67 | << " at " << std::hex << reinterpret_cast<intptr_t>(obj_ptr) << std::dec |
| 68 | << " size_by_size=" << size_by_size << " size_by_ptr=" << size_by_ptr; |
| 69 | } |
| 70 | DCHECK_EQ(size_by_size, size_by_ptr); |
| 71 | } |
| 72 | return size_by_size; |
| 73 | } |
| 74 | |
| 75 | art::gc::allocator::RosAlloc* GetRosAlloc() { |
| 76 | return rosalloc_; |
| 77 | } |
| 78 | |
| 79 | size_t Trim(); |
| 80 | void Walk(WalkCallback callback, void* arg) LOCKS_EXCLUDED(lock_); |
| 81 | size_t GetFootprint(); |
| 82 | size_t GetFootprintLimit(); |
| 83 | void SetFootprintLimit(size_t limit); |
| 84 | |
Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 85 | virtual void Clear(); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 86 | MallocSpace* CreateInstance(const std::string& name, MemMap* mem_map, void* allocator, |
| 87 | byte* begin, byte* end, byte* limit, size_t growth_limit); |
| 88 | |
| 89 | uint64_t GetBytesAllocated(); |
| 90 | uint64_t GetObjectsAllocated(); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 91 | |
| 92 | void RevokeThreadLocalBuffers(Thread* thread); |
| 93 | void RevokeAllThreadLocalBuffers(); |
| 94 | |
| 95 | // Returns the class of a recently freed object. |
| 96 | mirror::Class* FindRecentFreedObject(const mirror::Object* obj); |
| 97 | |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 98 | virtual bool IsRosAllocSpace() const { |
| 99 | return true; |
| 100 | } |
| 101 | virtual RosAllocSpace* AsRosAllocSpace() { |
| 102 | return this; |
| 103 | } |
| 104 | |
| 105 | protected: |
| 106 | RosAllocSpace(const std::string& name, MemMap* mem_map, allocator::RosAlloc* rosalloc, |
| 107 | byte* begin, byte* end, byte* limit, size_t growth_limit); |
| 108 | |
| 109 | private: |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 110 | mirror::Object* AllocWithoutGrowthLocked(Thread* self, size_t num_bytes, size_t* bytes_allocated); |
| 111 | |
Hiroshi Yamauchi | 573f7d2 | 2013-12-17 11:54:23 -0800 | [diff] [blame] | 112 | void* CreateAllocator(void* base, size_t morecore_start, size_t initial_size, bool low_memory_mode) { |
| 113 | return CreateRosAlloc(base, morecore_start, initial_size, low_memory_mode); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 114 | } |
Hiroshi Yamauchi | 573f7d2 | 2013-12-17 11:54:23 -0800 | [diff] [blame] | 115 | static allocator::RosAlloc* CreateRosAlloc(void* base, size_t morecore_start, size_t initial_size, |
| 116 | bool low_memory_mode); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 117 | |
| 118 | void InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg), |
| 119 | void* arg) |
| 120 | LOCKS_EXCLUDED(Locks::runtime_shutdown_lock_, Locks::thread_list_lock_); |
| 121 | |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 122 | // Underlying rosalloc. |
Hiroshi Yamauchi | 4ce1f00 | 2013-11-18 14:49:09 -0800 | [diff] [blame] | 123 | art::gc::allocator::RosAlloc* const rosalloc_; |
| 124 | |
| 125 | // A rosalloc pointer used for allocation. Equals to what rosalloc_ |
| 126 | // points to or nullptr after InvalidateAllocator() is called. |
| 127 | art::gc::allocator::RosAlloc* rosalloc_for_alloc_; |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 128 | |
| 129 | friend class collector::MarkSweep; |
| 130 | |
| 131 | DISALLOW_COPY_AND_ASSIGN(RosAllocSpace); |
| 132 | }; |
| 133 | |
| 134 | } // namespace space |
| 135 | } // namespace gc |
| 136 | } // namespace art |
| 137 | |
| 138 | #endif // ART_RUNTIME_GC_SPACE_ROSALLOC_SPACE_H_ |