OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_MEMORY_DISCARDABLE_MEMORY_ALLOCATOR_H_ | 5 #ifndef BASE_MEMORY_DISCARDABLE_MEMORY_ALLOCATION_ASHMEM_FACTORY_H_ |
6 #define BASE_MEMORY_DISCARDABLE_MEMORY_ALLOCATOR_H_ | 6 #define BASE_MEMORY_DISCARDABLE_MEMORY_ALLOCATION_ASHMEM_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/base_export.h" | 10 #include "base/base_export.h" |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/discardable_memory_allocation.h" |
12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
14 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
15 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 | |
19 class DiscardableMemory; | |
20 | |
21 namespace internal { | 19 namespace internal { |
22 | 20 |
23 // On Android ashmem is used to implement discardable memory. It is backed by a | 21 // On Android/ChromeOS ashmem is used to implement discardable memory. It is |
24 // file (descriptor) thus is a limited resource. This allocator minimizes the | 22 // backed by a file (descriptor) therefore it is a limited resource. This |
25 // problem by allocating large ashmem regions internally and returning smaller | 23 // factory class (which is in fact more an allocator) minimizes the problem by |
26 // chunks to the client. | 24 // allocating large ashmem regions internally and returning smaller chunks to |
| 25 // the client. |
27 // Allocated chunks are systematically aligned on a page boundary therefore this | 26 // Allocated chunks are systematically aligned on a page boundary therefore this |
28 // allocator should not be used for small allocations. | 27 // allocator should not be used for small allocations. |
29 // | 28 // |
30 // Threading: The allocator must be deleted on the thread it was constructed on | 29 // Threading: The factory must be deleted on the thread it was constructed on |
31 // although its Allocate() method can be invoked on any thread. See | 30 // although its Allocate() method can be invoked on any thread. See |
32 // discardable_memory.h for DiscardableMemory's threading guarantees. | 31 // discardable_memory.h for DiscardableMemory's threading guarantees. |
33 class BASE_EXPORT_PRIVATE DiscardableMemoryAllocator { | 32 class BASE_EXPORT_PRIVATE DiscardableMemoryAllocationAshmemFactory : |
| 33 public DiscardableMemoryAllocation::Factory { |
34 public: | 34 public: |
35 // Note that |name| is only used for debugging/measurement purposes. | 35 // Note that |name| is only used for debugging/measurement purposes. |
36 // |ashmem_region_size| is the size that will be used to create the underlying | 36 // |ashmem_region_size| is the size that will be used to create the underlying |
37 // ashmem regions and is expected to be greater or equal than 32 MBytes. | 37 // ashmem regions and is expected to be greater or equal than 32 MBytes. |
38 DiscardableMemoryAllocator(const std::string& name, | 38 DiscardableMemoryAllocationAshmemFactory(const std::string& name, |
39 size_t ashmem_region_size); | 39 size_t ashmem_region_size); |
40 | 40 |
41 ~DiscardableMemoryAllocator(); | 41 ~DiscardableMemoryAllocationAshmemFactory(); |
42 | 42 |
43 // Note that the allocator must outlive the returned DiscardableMemory | 43 // Note that the factory must outlive the returned DiscardableMemoryAllocation |
44 // instance. | 44 // instance. |
45 scoped_ptr<DiscardableMemory> Allocate(size_t size); | 45 // DiscardableMemoryAllocation::Factory: |
| 46 virtual scoped_ptr<DiscardableMemoryAllocation> CreateLockedAllocation( |
| 47 size_t size) OVERRIDE; |
46 | 48 |
47 // Returns the size of the last ashmem region which was created. This is used | 49 // Returns the size of the last ashmem region which was created. This is used |
48 // for testing only. | 50 // for testing only. |
49 size_t last_ashmem_region_size() const; | 51 size_t last_ashmem_region_size() const; |
50 | 52 |
51 private: | 53 private: |
52 class AshmemRegion; | 54 class AshmemRegion; |
53 class DiscardableAshmemChunk; | 55 class DiscardableAshmemChunk; |
54 | 56 |
55 void DeleteAshmemRegion_Locked(AshmemRegion* region); | 57 void DeleteAshmemRegion(AshmemRegion* region); |
56 | 58 |
57 ThreadChecker thread_checker_; | 59 ThreadChecker thread_checker_; |
58 const std::string name_; | 60 const std::string name_; |
59 const size_t ashmem_region_size_; | 61 const size_t ashmem_region_size_; |
60 mutable Lock lock_; | |
61 size_t last_ashmem_region_size_; | 62 size_t last_ashmem_region_size_; |
62 ScopedVector<AshmemRegion> ashmem_regions_; | 63 ScopedVector<AshmemRegion> ashmem_regions_; |
63 | 64 |
64 DISALLOW_COPY_AND_ASSIGN(DiscardableMemoryAllocator); | 65 DISALLOW_COPY_AND_ASSIGN(DiscardableMemoryAllocationAshmemFactory); |
65 }; | 66 }; |
66 | 67 |
67 } // namespace internal | 68 } // namespace internal |
68 } // namespace base | 69 } // namespace base |
69 | 70 |
70 #endif // BASE_MEMORY_DISCARDABLE_MEMORY_ALLOCATOR_H_ | 71 #endif // BASE_MEMORY_DISCARDABLE_MEMORY_ALLOCATION_ASHMEM_FACTORY_H_ |
OLD | NEW |