• Home
  • Raw
  • Download

Lines Matching full:allocate

46 …(object) = reinterpret_cast<TaggedObject *>((space)->Allocate(size));                             …
55 …(object) = reinterpret_cast<TaggedObject *>((space)->Allocate(thread, size)); …
64 …(object) = reinterpret_cast<TaggedObject *>((space)->Allocate(size, desc)); …
73 …(object) = reinterpret_cast<TaggedObject *>((space)->Allocate(size)); …
234 auto object = reinterpret_cast<TaggedObject *>(edenSpace_->Allocate(size)); in AllocateInGeneralNewSpace()
239 return reinterpret_cast<TaggedObject *>(activeSemiSpace_->Allocate(size)); in AllocateInGeneralNewSpace()
298 auto object = reinterpret_cast<TaggedObject *>(activeSemiSpace_->Allocate(size)); in TryAllocateYoungGeneration()
328 object = reinterpret_cast<TaggedObject *>(oldSpace_->Allocate(size)); in AllocateOldOrHugeObject()
355 object = reinterpret_cast<TaggedObject *>(readOnlySpace_->Allocate(size)); in AllocateReadOnlyOrHugeObject()
399 auto object = reinterpret_cast<TaggedObject *>(nonMovableSpace_->Allocate(size)); in AllocateClassClass()
401 LOG_ECMA_MEM(FATAL) << "Heap::AllocateClassClass can not allocate any space"; in AllocateClassClass()
414 auto object = reinterpret_cast<TaggedObject *>(sReadOnlySpace_->Allocate(thread, size)); in AllocateClassClass()
416 LOG_ECMA_MEM(FATAL) << "Heap::AllocateClassClass can not allocate any space"; in AllocateClassClass()
431 auto *object = reinterpret_cast<TaggedObject *>(hugeObjectSpace_->Allocate(size, thread_)); in AllocateHugeObject()
434 object = reinterpret_cast<TaggedObject *>(hugeObjectSpace_->Allocate(size, thread_)); in AllocateHugeObject()
436 // if allocate huge object OOM, temporarily increase space size to avoid vm crash in AllocateHugeObject()
441 object = reinterpret_cast<TaggedObject *>(hugeObjectSpace_->Allocate(size, thread_)); in AllocateHugeObject()
443 object = reinterpret_cast<TaggedObject *>(hugeObjectSpace_->Allocate(size, thread_)); in AllocateHugeObject()
468 object = reinterpret_cast<TaggedObject *>(hugeMachineCodeSpace_->Allocate( in AllocateHugeMachineCodeObject()
471 object = reinterpret_cast<TaggedObject *>(hugeMachineCodeSpace_->Allocate( in AllocateHugeMachineCodeObject()
486 reinterpret_cast<TaggedObject *>(machineCodeSpace_->Allocate(size)); in AllocateMachineCodeObject()
501 // for non huge code cache obj, allocate fort space before allocating the code object in AllocateMachineCodeObject()
511 reinterpret_cast<TaggedObject *>(machineCodeSpace_->Allocate(size, desc, true)); in AllocateMachineCodeObject()
524 uintptr_t object = snapshotSpace_->Allocate(size); in AllocateSnapshotSpace()
538 TaggedObject *object = reinterpret_cast<TaggedObject*>(sNonMovableTlab_->Allocate(size)); in AllocateSharedNonMovableSpaceFromTlab()
565 TaggedObject *object = reinterpret_cast<TaggedObject*>(sOldTlab_->Allocate(size)); in AllocateSharedOldSpaceFromTlab()
811 object = reinterpret_cast<TaggedObject *>(sNonMovableSpace_->Allocate(thread, size)); in AllocateNonMovableOrHugeObject()
834 object = reinterpret_cast<TaggedObject *>(sNonMovableSpace_->Allocate(thread, size)); in AllocateNonMovableOrHugeObject()
928 auto *object = reinterpret_cast<TaggedObject *>(sHugeObjectSpace_->Allocate(thread, size)); in AllocateHugeObject()
931 object = reinterpret_cast<TaggedObject *>(sHugeObjectSpace_->Allocate(thread, size)); in AllocateHugeObject()
933 // if allocate huge object OOM, temporarily increase space size to avoid vm crash in AllocateHugeObject()
938 object = reinterpret_cast<TaggedObject *>(sHugeObjectSpace_->Allocate(thread, size)); in AllocateHugeObject()
960 auto object = reinterpret_cast<TaggedObject *>(sReadOnlySpace_->Allocate(thread, size)); in AllocateReadOnlyOrHugeObject()
989 object = reinterpret_cast<TaggedObject *>(sNonMovableSpace_->Allocate(thread, size)); in AllocateSNonMovableTlab()