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,
504460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                  size_t* usable_size, size_t* bytes_tl_bulk_allocated)
514460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi      OVERRIDE LOCKS_EXCLUDED(lock_);
526fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
534460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                        size_t* usable_size, size_t* bytes_tl_bulk_allocated) OVERRIDE {
544460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi    return AllocNonvirtual(self, num_bytes, bytes_allocated, usable_size,
554460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                           bytes_tl_bulk_allocated);
566fac447555dc94a935b78198479cce645c837b89Ian Rogers  }
570651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
584460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                    size_t* usable_size, size_t* bytes_tl_bulk_allocated)
590651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier      OVERRIDE EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
604460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi    return AllocNonvirtualThreadUnsafe(self, num_bytes, bytes_allocated, usable_size,
614460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                       bytes_tl_bulk_allocated);
620651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  }
636fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE {
644460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi    return AllocationSizeNonvirtual<true>(obj, usable_size);
656fac447555dc94a935b78198479cce645c837b89Ian Rogers  }
666fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t Free(Thread* self, mirror::Object* ptr) OVERRIDE
67ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
686fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) OVERRIDE
69ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
70cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
716fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
724460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                  size_t* usable_size, size_t* bytes_tl_bulk_allocated) {
736fac447555dc94a935b78198479cce645c837b89Ian Rogers    // RosAlloc zeroes memory internally.
744460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi    return AllocCommon(self, num_bytes, bytes_allocated, usable_size,
754460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                       bytes_tl_bulk_allocated);
76cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
770651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  mirror::Object* AllocNonvirtualThreadUnsafe(Thread* self, size_t num_bytes,
784460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                              size_t* bytes_allocated, size_t* usable_size,
794460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                              size_t* bytes_tl_bulk_allocated) {
800651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier    // RosAlloc zeroes memory internally. Pass in false for thread unsafe.
814460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi    return AllocCommon<false>(self, num_bytes, bytes_allocated, usable_size,
824460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                              bytes_tl_bulk_allocated);
830651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  }
84cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
854460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  // Returns true if the given allocation request can be allocated in
864460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  // an existing thread local run without allocating a new run.
874460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  ALWAYS_INLINE bool CanAllocThreadLocal(Thread* self, size_t num_bytes);
884460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  // Allocate the given allocation request in an existing thread local
894460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  // run without allocating a new run.
904460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  ALWAYS_INLINE mirror::Object* AllocThreadLocal(Thread* self, size_t num_bytes,
914460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                                                 size_t* bytes_allocated);
924460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  size_t MaxBytesBulkAllocatedFor(size_t num_bytes) OVERRIDE {
934460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi    return MaxBytesBulkAllocatedForNonvirtual(num_bytes);
944460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  }
954460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  ALWAYS_INLINE size_t MaxBytesBulkAllocatedForNonvirtual(size_t num_bytes);
964460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi
976fac447555dc94a935b78198479cce645c837b89Ian Rogers  // TODO: NO_THREAD_SAFETY_ANALYSIS because SizeOf() requires that mutator_lock is held.
984460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  template<bool kMaybeRunningOnValgrind>
996fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size)
1006fac447555dc94a935b78198479cce645c837b89Ian Rogers      NO_THREAD_SAFETY_ANALYSIS;
1016fac447555dc94a935b78198479cce645c837b89Ian Rogers
1026fac447555dc94a935b78198479cce645c837b89Ian Rogers  allocator::RosAlloc* GetRosAlloc() const {
103cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi    return rosalloc_;
104cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
105cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1066fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t Trim() OVERRIDE;
1076fac447555dc94a935b78198479cce645c837b89Ian Rogers  void Walk(WalkCallback callback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_);
1086fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t GetFootprint() OVERRIDE;
1096fac447555dc94a935b78198479cce645c837b89Ian Rogers  size_t GetFootprintLimit() OVERRIDE;
1106fac447555dc94a935b78198479cce645c837b89Ian Rogers  void SetFootprintLimit(size_t limit) OVERRIDE;
111cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1126fac447555dc94a935b78198479cce645c837b89Ian Rogers  void Clear() OVERRIDE;
11331f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier
114d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe  MallocSpace* CreateInstance(MemMap* mem_map, const std::string& name, void* allocator,
11513735955f39b3b304c37d2b2840663c131262c18Ian Rogers                              uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit,
11631f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier                              bool can_move_objects) OVERRIDE;
117cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1186fac447555dc94a935b78198479cce645c837b89Ian Rogers  uint64_t GetBytesAllocated() OVERRIDE;
1196fac447555dc94a935b78198479cce645c837b89Ian Rogers  uint64_t GetObjectsAllocated() OVERRIDE;
120cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1214460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  size_t RevokeThreadLocalBuffers(Thread* thread);
1224460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi  size_t RevokeAllThreadLocalBuffers();
12368d8b42ddec39ec0174162d90d4abaa004d1983eIan Rogers  void AssertThreadLocalBuffersAreRevoked(Thread* thread);
124c93c530efc175954160c3834c93961a1a946a35aHiroshi Yamauchi  void AssertAllThreadLocalBuffersAreRevoked();
125cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
126cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // Returns the class of a recently freed object.
127cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  mirror::Class* FindRecentFreedObject(const mirror::Object* obj);
128cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1296fac447555dc94a935b78198479cce645c837b89Ian Rogers  bool IsRosAllocSpace() const OVERRIDE {
130cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi    return true;
131cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
1326fac447555dc94a935b78198479cce645c837b89Ian Rogers
1336fac447555dc94a935b78198479cce645c837b89Ian Rogers  RosAllocSpace* AsRosAllocSpace() OVERRIDE {
134cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi    return this;
135cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
136cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
137a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi  void Verify() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
138a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi    rosalloc_->Verify();
139a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi  }
140a4adbfd44032d70e166e6f18096bbbed05a990baHiroshi Yamauchi
141661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier  virtual ~RosAllocSpace();
142661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier
143654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi  void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE {
144654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi    rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes);
145654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi  }
146654dd48e2230e16bfaa225decce72b52642e2f78Hiroshi Yamauchi
147cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi protected:
148d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe  RosAllocSpace(MemMap* mem_map, size_t initial_size, const std::string& name,
149d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe                allocator::RosAlloc* rosalloc, uint8_t* begin, uint8_t* end, uint8_t* limit,
150d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe                size_t growth_limit, bool can_move_objects, size_t starting_size,
151d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe                bool low_memory_mode);
152cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
153cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi private:
1540651d41e41341fb2e9ef3ee41dc1f1bfc832dbbbMathieu Chartier  template<bool kThreadSafe = true>
1556fac447555dc94a935b78198479cce645c837b89Ian Rogers  mirror::Object* AllocCommon(Thread* self, size_t num_bytes, size_t* bytes_allocated,
1564460a84be92b5a94ecfb5c650aef4945ab849c93Hiroshi Yamauchi                              size_t* usable_size, size_t* bytes_tl_bulk_allocated);
157cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
1586fac447555dc94a935b78198479cce645c837b89Ian Rogers  void* CreateAllocator(void* base, size_t morecore_start, size_t initial_size,
15926d69ffc0ebc98fbc5f316d8cd3ee6ba5b2001acHiroshi Yamauchi                        size_t maximum_size, bool low_memory_mode) OVERRIDE {
160d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe    return CreateRosAlloc(base, morecore_start, initial_size, maximum_size, low_memory_mode,
161d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe                          RUNNING_ON_VALGRIND != 0);
162cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  }
163573f7d2d68e1838a0485e6b40d90c967526e00c2Hiroshi Yamauchi  static allocator::RosAlloc* CreateRosAlloc(void* base, size_t morecore_start, size_t initial_size,
164d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe                                             size_t maximum_size, bool low_memory_mode,
165d7576328811e5103e99d31f834a857522cc1463fAndreas Gampe                                             bool running_on_valgrind);
166cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
167cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  void InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
1681cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi                          void* arg, bool do_null_callback_at_end)
1691cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi      LOCKS_EXCLUDED(Locks::runtime_shutdown_lock_, Locks::thread_list_lock_);
1701cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi  void InspectAllRosAllocWithSuspendAll(
1711cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi      void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
1721cd53dbb2163f18b689d2a65cf9c6bdcdb01b407Hiroshi Yamauchi      void* arg, bool do_null_callback_at_end)
173cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi      LOCKS_EXCLUDED(Locks::runtime_shutdown_lock_, Locks::thread_list_lock_);
174cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
175cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  // Underlying rosalloc.
17631f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier  allocator::RosAlloc* rosalloc_;
17731f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier
17831f441464c0c8f840aba37e236ad133f30308d70Mathieu Chartier  const bool low_memory_mode_;
1794ce1f00cc74867188347e463f4a5ecb9fe55cde5Hiroshi Yamauchi
180cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  friend class collector::MarkSweep;
181cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
182cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi  DISALLOW_COPY_AND_ASSIGN(RosAllocSpace);
183cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi};
184cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
185cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace space
186cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace gc
187cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi}  // namespace art
188cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi
189cf58d4adf461eb9b8e84baa8019054c88cd8acc6Hiroshi Yamauchi#endif  // ART_RUNTIME_GC_SPACE_ROSALLOC_SPACE_H_
190