rosalloc_space.h revision 13735955f39b3b304c37d2b2840663c131262c18
1cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi/*
2cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * Copyright (C) 2013 The Android Open Source Project
3cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi *
4cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * Licensed under the Apache License, Version 2.0 (the "License");
5cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * you may not use this file except in compliance with the License.
6cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * You may obtain a copy of the License at
7cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi *
8cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi *      http://www.apache.org/licenses/LICENSE-2.0
9cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi *
10cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * Unless required by applicable law or agreed to in writing, software
11cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * distributed under the License is distributed on an "AS IS" BASIS,
12cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * See the License for the specific language governing permissions and
14cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi * limitations under the License.
15cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi */
16cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
17cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#ifndef ART_RUNTIME_GC_SPACE_ROSALLOC_SPACE_H_
18cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#define ART_RUNTIME_GC_SPACE_ROSALLOC_SPACE_H_
19cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
20cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#include "gc/allocator/rosalloc.h"
21cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#include "malloc_space.h"
22cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#include "space.h"
23cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
24cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchinamespace art {
25cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchinamespace gc {
26cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
27cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchinamespace collector {
28cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  class MarkSweep;
29cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace collector
30cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
31cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchinamespace space {
32cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
336fac447555dc94a935b78198479cce645c837b89Ian Rogers// An alloc space implemented using a runs-of-slots memory allocator. Not final as may be
346fac447555dc94a935b78198479cce645c837b89Ian Rogers// overridden by a ValgrindMallocSpace.
35cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchiclass RosAllocSpace : public MallocSpace {
36cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi public:
37cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // Create a RosAllocSpace with the requested sizes. The requested
38cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // base address is not guaranteed to be granted, if it is required,
39cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // the caller should call Begin on the returned space to confirm the
40cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // request was granted.
41cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  static RosAllocSpace* Create(const std::string& name, size_t initial_size, size_t growth_limit,
4213735955f39b3b304c37d2b2840663c131262c18Ian Rogers                               size_t capacity, uint8_t* requested_begin, bool low_memory_mode,
4331f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier                               bool can_move_objects);
44e6da9af8dfe0a3e3fbc2be700554f6478380e7b9Mathieu Chartier  static RosAllocSpace* CreateFromMemMap(MemMap* mem_map, const std::string& name,
45e6da9af8dfe0a3e3fbc2be700554f6478380e7b9Mathieu Chartier                                         size_t starting_size, size_t initial_size,
46e6da9af8dfe0a3e3fbc2be700554f6478380e7b9Mathieu Chartier                                         size_t growth_limit, size_t capacity,
4731f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier                                         bool low_memory_mode, bool can_move_objects);
48cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
496fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated,
506fac447555dc94a935b78198479cce645c837b89Ian Rogers                                  size_t* usable_size) OVERRIDE LOCKS_EXCLUDED(lock_);
516fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
526fac447555dc94a935b78198479cce645c837b89Ian Rogers                        size_t* usable_size) OVERRIDE {
536fac447555dc94a935b78198479cce645c837b89Ian Rogers    return AllocNonvirtual(self, num_bytes, bytes_allocated, usable_size);
546fac447555dc94a935b78198479cce645c837b89Ian Rogers  }
550651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
560651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier                                    size_t* usable_size)
570651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier      OVERRIDE EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
580651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier    return AllocNonvirtualThreadUnsafe(self, num_bytes, bytes_allocated, usable_size);
590651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  }
606fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE {
616fac447555dc94a935b78198479cce645c837b89Ian Rogers    return AllocationSizeNonvirtual(obj, usable_size);
626fac447555dc94a935b78198479cce645c837b89Ian Rogers  }
636fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t Free(Thread* self, mirror::Object* ptr) OVERRIDE
64ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
656fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) OVERRIDE
66ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
67cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
686fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
696fac447555dc94a935b78198479cce645c837b89Ian Rogers                                  size_t* usable_size) {
706fac447555dc94a935b78198479cce645c837b89Ian Rogers    // RosAlloc zeroes memory internally.
716fac447555dc94a935b78198479cce645c837b89Ian Rogers    return AllocCommon(self, num_bytes, bytes_allocated, usable_size);
72cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
730651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  mirror::Object* AllocNonvirtualThreadUnsafe(Thread* self, size_t num_bytes,
740651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier                                              size_t* bytes_allocated, size_t* usable_size) {
750651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier    // RosAlloc zeroes memory internally. Pass in false for thread unsafe.
760651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier    return AllocCommon<false>(self, num_bytes, bytes_allocated, usable_size);
770651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  }
78cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
796fac447555dc94a935b78198479cce645c837b89Ian Rogers  // TODO: NO_THREAD_SAFETY_ANALYSIS because SizeOf() requires that mutator_lock is held.
806fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size)
816fac447555dc94a935b78198479cce645c837b89Ian Rogers      NO_THREAD_SAFETY_ANALYSIS;
826fac447555dc94a935b78198479cce645c837b89Ian Rogers
836fac447555dc94a935b78198479cce645c837b89Ian Rogers  allocator::RosAlloc* GetRosAlloc() const {
84cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi    return rosalloc_;
85cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
86cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
876fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t Trim() OVERRIDE;
886fac447555dc94a935b78198479cce645c837b89Ian Rogers  void Walk(WalkCallback callback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_);
896fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t GetFootprint() OVERRIDE;
906fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t GetFootprintLimit() OVERRIDE;
916fac447555dc94a935b78198479cce645c837b89Ian Rogers  void SetFootprintLimit(size_t limit) OVERRIDE;
92cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
936fac447555dc94a935b78198479cce645c837b89Ian Rogers  void Clear() OVERRIDE;
9431f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier
95cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  MallocSpace* CreateInstance(const std::string& name, MemMap* mem_map, void* allocator,
9613735955f39b3b304c37d2b2840663c131262c18Ian Rogers                              uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit,
9731f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier                              bool can_move_objects) OVERRIDE;
98cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
996fac447555dc94a935b78198479cce645c837b89Ian Rogers  uint64_t GetBytesAllocated() OVERRIDE;
1006fac447555dc94a935b78198479cce645c837b89Ian Rogers  uint64_t GetObjectsAllocated() OVERRIDE;
101cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
102cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  void RevokeThreadLocalBuffers(Thread* thread);
103cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  void RevokeAllThreadLocalBuffers();
10468d8b42ddec39ec0174162d90d4abaa004d1983eIan Rogers  void AssertThreadLocalBuffersAreRevoked(Thread* thread);
105c93c530efc175954160c3834c93961a1a946a35aHiroshi Yamauchi  void AssertAllThreadLocalBuffersAreRevoked();
106cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
107cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // Returns the class of a recently freed object.
108cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  mirror::Class* FindRecentFreedObject(const mirror::Object* obj);
109cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1106fac447555dc94a935b78198479cce645c837b89Ian Rogers  bool IsRosAllocSpace() const OVERRIDE {
111cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi    return true;
112cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
1136fac447555dc94a935b78198479cce645c837b89Ian Rogers
1146fac447555dc94a935b78198479cce645c837b89Ian Rogers  RosAllocSpace* AsRosAllocSpace() OVERRIDE {
115cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi    return this;
116cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
117cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
118a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi  void Verify() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
119a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi    rosalloc_->Verify();
120a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi  }
121a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi
122661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier  virtual ~RosAllocSpace();
123661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier
124654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi  void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE {
125654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi    rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes);
126654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi  }
127654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi
128cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi protected:
129cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  RosAllocSpace(const std::string& name, MemMap* mem_map, allocator::RosAlloc* rosalloc,
13013735955f39b3b304c37d2b2840663c131262c18Ian Rogers                uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit, bool can_move_objects,
13131f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier                size_t starting_size, size_t initial_size, bool low_memory_mode);
132cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
133cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi private:
1340651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  template<bool kThreadSafe = true>
1356fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* AllocCommon(Thread* self, size_t num_bytes, size_t* bytes_allocated,
1366fac447555dc94a935b78198479cce645c837b89Ian Rogers                              size_t* usable_size);
137cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1386fac447555dc94a935b78198479cce645c837b89Ian Rogers  void* CreateAllocator(void* base, size_t morecore_start, size_t initial_size,
13926d69ffc0ebc98fbc5f316d8cd3ee6ba5b2001acHiroshi Yamauchi                        size_t maximum_size, bool low_memory_mode) OVERRIDE {
14026d69ffc0ebc98fbc5f316d8cd3ee6ba5b2001acHiroshi Yamauchi    return CreateRosAlloc(base, morecore_start, initial_size, maximum_size, low_memory_mode);
141cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
142573f7d2d68e1838a0485e6b40d90c967526e00c2Hiroshi Yamauchi  static allocator::RosAlloc* CreateRosAlloc(void* base, size_t morecore_start, size_t initial_size,
14326d69ffc0ebc98fbc5f316d8cd3ee6ba5b2001acHiroshi Yamauchi                                             size_t maximum_size, bool low_memory_mode);
144cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
145cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  void InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
1461cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi                          void* arg, bool do_null_callback_at_end)
1471cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi      LOCKS_EXCLUDED(Locks::runtime_shutdown_lock_, Locks::thread_list_lock_);
1481cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi  void InspectAllRosAllocWithSuspendAll(
1491cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi      void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
1501cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi      void* arg, bool do_null_callback_at_end)
151cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi      LOCKS_EXCLUDED(Locks::runtime_shutdown_lock_, Locks::thread_list_lock_);
152cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
153cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // Underlying rosalloc.
15431f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier  allocator::RosAlloc* rosalloc_;
15531f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier
15631f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier  const bool low_memory_mode_;
1574ce1f00cc74867188347e463f4a5ecb9fe55cde5Hiroshi Yamauchi
158cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  friend class collector::MarkSweep;
159cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
160cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  DISALLOW_COPY_AND_ASSIGN(RosAllocSpace);
161cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi};
162cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
163cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace space
164cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace gc
165cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace art
166cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
167cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#endif  // ART_RUNTIME_GC_SPACE_ROSALLOC_SPACE_H_
168