Lines Matching refs:Allocate
58 uintptr_t SharedSparseSpace::Allocate(JSThread *thread, size_t size, bool allowGC)
62 LOG_ECMA(FATAL) << "Allocate must be in jsthread running state";
89 object = Allocate(thread, size, false);
112 LOG_ECMA(FATAL) << "Allocate must be in jsthread running state";
127 uintptr_t object = allocator_->Allocate(size);
137 auto object = allocator_->Allocate(size);
139 object = allocator_->Allocate(size);
185 object = allocator_->Allocate(size);
190 object = allocator_->Allocate(size);
198 object = allocator_->Allocate(size);
487 uintptr_t SharedLocalSpace::Allocate(size_t size, bool isExpand)
489 auto object = allocator_->Allocate(size);
493 object = allocator_->Allocate(size);
528 uintptr_t SharedReadOnlySpace::Allocate(JSThread *thread, size_t size)
532 LOG_ECMA(FATAL) << "Allocate must be in jsthread running state";
538 auto object = allocator_.Allocate(size);
543 object = allocator_.Allocate(size);
589 uintptr_t SharedHugeObjectSpace::Allocate(JSThread *thread, size_t objectSize, AllocateEventType allocType)
593 LOG_ECMA(FATAL) << "Allocate must be in jsthread running state";
611 LOG_ECMA(FATAL) << "SharedHugeObjectSpace::Allocate:region is nullptr";