HomeSort by relevance Sort by last modified time
    Searched refs:AllocationSpace (Results 1 - 25 of 31) sorted by null

1 2

  /external/v8/src/heap/
sweeper.h 95 void AddPage(AllocationSpace space, Page* page, AddPageMode mode);
97 int ParallelSweepSpace(AllocationSpace identity, int required_freed_bytes,
99 int ParallelSweepPage(Page* page, AllocationSpace identity);
141 ForAllSweepingSpaces([this, &is_done](AllocationSpace space) {
147 void SweepSpaceFromTask(AllocationSpace identity);
151 bool SweepSpaceIncrementallyFromTask(AllocationSpace identity);
155 Page* GetSweepingPageSafe(AllocationSpace space);
157 void PrepareToBeSweptPage(AllocationSpace space, Page* page);
163 bool IsValidIterabilitySpace(AllocationSpace space) {
167 static bool IsValidSweepingSpace(AllocationSpace space)
    [all...]
local-allocator.h 44 inline AllocationResult Allocate(AllocationSpace space, int object_size,
46 inline void FreeLast(AllocationSpace space, HeapObject* object,
sweeper.cc 71 AllocationSpace space_to_start)
88 const AllocationSpace space_id = static_cast<AllocationSpace>(
103 AllocationSpace space_to_start_;
141 ForAllSweepingSpaces([this, marking_state](AllocationSpace space) {
157 ForAllSweepingSpaces([this](AllocationSpace space) {
218 [this](AllocationSpace space) { ParallelSweepSpace(space, 0); });
222 ForAllSweepingSpaces([this](AllocationSpace space) {
374 void Sweeper::SweepSpaceFromTask(AllocationSpace identity) {
382 bool Sweeper::SweepSpaceIncrementallyFromTask(AllocationSpace identity)
    [all...]
local-allocator-inl.h 15 AllocationResult LocalAllocator::Allocate(AllocationSpace space,
33 void LocalAllocator::FreeLast(AllocationSpace space, HeapObject* object,
heap.h 257 static inline AllocationResult Retry(AllocationSpace space = NEW_SPACE) {
273 inline AllocationSpace RetrySpace();
283 explicit AllocationResult(AllocationSpace space)
436 static bool IsValidAllocationSpace(AllocationSpace space);
577 bool AllowedToBeMigrated(HeapObject* object, AllocationSpace dest);
    [all...]
heap-inl.h 45 AllocationSpace AllocationResult::RetrySpace() {
47 return static_cast<AllocationSpace>(Smi::ToInt(object_));
118 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space,
267 AllocationSpace allocation_space = memory_chunk->owner()->identity();
scavenger.cc 110 AllocationSpace space = page->owner()->identity();
spaces.h     [all...]
heap.cc 362 GarbageCollector Heap::SelectGarbageCollector(AllocationSpace space,
    [all...]
mark-compact.cc     [all...]
  /external/v8/src/snapshot/
default-deserializer-allocator.h 29 Address Allocate(AllocationSpace space, int size);
31 void MoveToNextChunk(AllocationSpace space);
55 HeapObject* GetObject(AllocationSpace space, uint32_t chunk_index,
79 Address AllocateRaw(AllocationSpace space, int size);
builtin-serializer-allocator.cc 12 SerializerReference BuiltinSerializerAllocator::Allocate(AllocationSpace space,
49 PrintF("%16s", AllocationSpaceName(static_cast<AllocationSpace>(space)));
builtin-deserializer-allocator.h 55 Address Allocate(AllocationSpace space, int size);
57 void MoveToNextChunk(AllocationSpace space) { UNREACHABLE(); }
76 HeapObject* GetObject(AllocationSpace space, uint32_t chunk_index,
builtin-serializer-allocator.h 21 SerializerReference Allocate(AllocationSpace space, uint32_t size);
default-serializer-allocator.cc 29 MemoryAllocator::PageAreaSize(static_cast<AllocationSpace>(space)));
38 SerializerReference DefaultSerializerAllocator::Allocate(AllocationSpace space,
85 AllocationSpace space = reference.space();
139 PrintF("%16s", AllocationSpaceName(static_cast<AllocationSpace>(space)));
default-serializer-allocator.h 21 SerializerReference Allocate(AllocationSpace space, uint32_t size);
references.h 41 static SerializerReference BackReference(AllocationSpace space,
78 AllocationSpace space() const {
80 return static_cast<AllocationSpace>(SpaceBits::decode(bitfield_));
default-deserializer-allocator.cc 30 Address DefaultDeserializerAllocator::AllocateRaw(AllocationSpace space,
61 Address DefaultDeserializerAllocator::Allocate(AllocationSpace space,
86 void DefaultDeserializerAllocator::MoveToNextChunk(AllocationSpace space) {
108 HeapObject* DefaultDeserializerAllocator::GetObject(AllocationSpace space,
serializer.h 229 void CountInstanceType(Map* map, int size, AllocationSpace space);
309 void SerializePrologue(AllocationSpace space, int size, Map* map);
serializer.cc 62 AllocationSpace space) {
84 AllocationSpaceName(static_cast<AllocationSpace>(space)), #Name); \
193 AllocationSpace space = reference.space();
364 AllocationSpace space, int size, Map* map) {
551 AllocationSpace space =
652 AllocationSpace space =
    [all...]
builtin-deserializer-allocator.cc 32 Address BuiltinDeserializerAllocator::Allocate(AllocationSpace space,
deserializer.cc 304 obj = allocator()->GetObject(static_cast<AllocationSpace>(space),
312 obj = allocator()->GetObject(static_cast<AllocationSpace>(space),
338 allocator()->Allocate(static_cast<AllocationSpace>(space_number), size);
580 allocator()->MoveToNextChunk(static_cast<AllocationSpace>(space));
    [all...]
  /external/v8/src/runtime/
runtime-internal.cc 291 AllocationSpace space = AllocateTargetSpace::decode(flags);
runtime.h 762 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {};
    [all...]
  /external/v8/src/
globals.h 550 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being
552 enum AllocationSpace {
    [all...]

Completed in 171 milliseconds

1 2