Searched defs:space (Results 1 - 25 of 63) sorted by relevance

123

/art/runtime/gc/space/
H A Dmemory_tool_settings.h22 namespace space { namespace in namespace:art::gc
28 } // namespace space
H A Ddlmalloc_space_random_test.cc23 namespace space { namespace in namespace:art::gc
33 } // namespace space
H A Ddlmalloc_space_static_test.cc23 namespace space { namespace in namespace:art::gc
33 } // namespace space
H A Dmemory_tool_malloc_space.h24 namespace space { namespace in namespace:art::gc
63 } // namespace space
H A Drosalloc_space_random_test.cc21 namespace space { namespace in namespace:art::gc
32 } // namespace space
H A Drosalloc_space_static_test.cc21 namespace space { namespace in namespace:art::gc
32 } // namespace space
H A Dspace-inl.h20 #include "space.h"
29 namespace space { namespace in namespace:art::gc
57 } // namespace space
H A Dzygote_space.h27 namespace space { namespace in namespace:art::gc
29 // An zygote space is a space which you cannot allocate into or free from.
97 } // namespace space
H A Ddlmalloc_space.h21 #include "space.h"
30 namespace space { namespace in namespace:art::gc
32 // An alloc space is a space where objects may be allocated and garbage collected. Not final as may
44 // the caller should call Begin on the returned space to confirm the
109 // Returns the number of bytes that the space has currently obtained from the system. This is
110 // greater or equal to the amount of live data in the space.
161 // Underlying malloc space.
169 } // namespace space
H A Dbump_pointer_space-inl.h25 namespace space { namespace in namespace:art::gc
98 } // namespace space
H A Ddlmalloc_space-inl.h26 namespace space { namespace in namespace:art::gc
39 // Zero freshly allocated memory, done while not holding the space's lock.
63 << ") not in bounds of allocation space " << *this;
73 } // namespace space
H A Dimage_space.h22 #include "space.h"
29 namespace space { namespace in namespace:art::gc
31 // An image space is a space backed with a memory mapped image.
38 // Create a boot image space from an image file for a specified instruction
43 // creation of the alloc space. The ReleaseOatFile will later be
52 // Try to open an existing app image space.
191 // reserve space contiguous to the image. It is later released to
205 } // namespace space
H A Dimage_space_fs.h34 namespace space { namespace in namespace:art::gc
166 } // namespace space
H A Drosalloc_space.h22 #include "space.h"
31 namespace space { namespace in namespace:art::gc
33 // An alloc space implemented using a runs-of-slots memory allocator. Not final as may be
39 // the caller should call Begin on the returned space to confirm the
187 } // namespace space
H A Dbump_pointer_space.h21 #include "space.h"
30 namespace space { namespace in namespace:art::gc
32 // A bump pointer space allocates by incrementing a pointer, it doesn't provide a free
42 // Create a bump pointer space with the requested sizes. The requested base address is not
44 // space to confirm the request was granted.
48 // Allocate num_bytes, returns null if the space is full.
59 // Return the storage space required by obj.
88 // The total amount of memory reserved for the space.
101 // Reset the space to empty.
159 // Object alignment within the space
[all...]
H A Dmalloc_space.h20 #include "space.h"
32 namespace space { namespace in namespace:art::gc
55 // Allocate num_bytes allowing the underlying space to grow.
59 // Allocate num_bytes without allowing the underlying space to grow.
62 // Return the storage space required by obj. If usable_size isn't null then it is set to the
63 // amount of the storage space that may be used by obj.
90 // Returns the number of bytes that the space has currently obtained from the system. This is
91 // greater or equal to the amount of live data in the space.
113 // The total amount of memory reserved for the alloc space.
130 // Splits ourself into a zygote space an
[all...]
/art/runtime/gc/accounting/
H A Dmod_union_table-inl.h22 #include "gc/space/space.h"
28 // A mod-union table to record image references to the Zygote and alloc space.
33 space::ContinuousSpace* space)
34 : ModUnionTableReferenceCache(name, heap, space) {}
31 ModUnionTableToZygoteAllocspace(const std::string& name, Heap* heap, space::ContinuousSpace* space) argument
H A Dremembered_set.h35 namespace space { namespace in namespace:art::gc
37 } // namespace space
50 explicit RememberedSet(const std::string& name, Heap* heap, space::ContinuousSpace* space) argument
51 : name_(name), heap_(heap), space_(space) {}
56 // Mark through all references to the target space.
57 void UpdateAndMarkReferences(space::ContinuousSpace* target_space,
64 space::ContinuousSpace* GetSpace() {
78 space::ContinuousSpace* const space_;
H A Dcard_table.h35 namespace space { namespace in namespace:art::gc
37 } // namespace space
122 // Resets all of the bytes in the card table which do not map to the image space.
123 void ClearSpaceCards(space::ContinuousSpace* space);
/art/runtime/base/
H A Dstringprintf.cc25 char space[1024]; local
32 int result = vsnprintf(space, sizeof(space), format, backup_ap);
35 if (result < static_cast<int>(sizeof(space))) {
38 dst->append(space, result);
/art/runtime/gc/collector/
H A Dimmune_spaces.h22 #include "gc/space/space.h"
29 namespace space { namespace in namespace:art::gc
31 } // namespace space
40 bool operator()(space::ContinuousSpace* a, space::ContinuousSpace* b) const;
47 // Add a continuous space to the immune spaces set.
48 void AddSpace(space::ContinuousSpace* space) REQUIRES(Locks::heap_bitmap_lock_);
51 // true for the largest immune region. The object can still be inside of an immune space
[all...]
H A Dimmune_region.h28 namespace space { namespace in namespace:art::gc
30 } // namespace space
H A Dimmune_spaces.cc22 #include "gc/space/space-inl.h"
44 for (space::ContinuousSpace* space : GetSpaces()) {
45 uintptr_t space_begin = reinterpret_cast<uintptr_t>(space->Begin());
46 uintptr_t space_end = reinterpret_cast<uintptr_t>(space->Limit());
47 if (space->IsImageSpace()) {
50 space::ImageSpace* image_space = space->AsImageSpace();
106 void ImmuneSpaces::AddSpace(space argument
[all...]
H A Dmark_compact.h52 namespace space { namespace in namespace:art::gc
56 } // namespace space
81 // Sets which space we will be copying objects in.
82 void SetSpace(space::BumpPointerSpace* space);
144 // Returns true if we should sweep the space.
145 bool ShouldSweepSpace(space::ContinuousSpace* space) const;
200 // Bump pointer space which we are collecting.
201 space
[all...]
/art/runtime/
H A Doat_file_manager.h34 namespace space { namespace in namespace:art::gc
36 } // namespace space
81 std::vector<const OatFile*> RegisterImageOatFiles(std::vector<gc::space::ImageSpace*> spaces)

Completed in 176 milliseconds

123