Searched refs:CODE_SPACE (Results 1 – 23 of 23) sorted by relevance
/third_party/node/deps/v8/src/heap/ |
D | paged-spaces.cc | 64 DCHECK(owner == OLD_SPACE || owner == MAP_SPACE || owner == CODE_SPACE); in PagedSpaceObjectIterator() 119 if (identity() != OLD_SPACE && identity() != CODE_SPACE && in RefillFreeList() 363 if (identity() == CODE_SPACE || identity() == CODE_LO_SPACE) { in ExpandBackground() 398 if (identity() == CODE_SPACE) { in DecreaseLimit() 439 if (identity() == CODE_SPACE) { in MakeLinearAllocationAreaIterable() 487 if (identity() == CODE_SPACE) { in FreeLinearAllocationArea() 512 if (identity() == CODE_SPACE) { in ReleasePage() 524 DCHECK(identity() == CODE_SPACE); in SetReadable() 532 DCHECK(identity() == CODE_SPACE); in SetReadAndExecutable() 540 DCHECK(identity() == CODE_SPACE); in SetCodeModificationPermissions() [all …]
|
D | memory-chunk-layout.cc | 50 if (space == CODE_SPACE || space == CODE_LO_SPACE) { in ObjectStartOffsetInMemoryChunk() 64 if (space == CODE_SPACE) { in AllocatableMemoryInMemoryChunk()
|
D | evacuation-allocator-inl.h | 28 case CODE_SPACE: in Allocate() 29 return compaction_spaces_.Get(CODE_SPACE) in Allocate()
|
D | concurrent-allocator.cc | 87 if (lab_.IsValid() && space_->identity() == CODE_SPACE) { in FreeLinearAllocationArea() 97 if (lab_.IsValid() && space_->identity() == CODE_SPACE) { in MakeLinearAllocationAreaIterable()
|
D | base-space.cc | 18 case CODE_SPACE: in GetSpaceName()
|
D | paged-spaces.h | 479 code_space_(heap, CODE_SPACE, Executability::EXECUTABLE, in CompactionSpaceCollection() 488 case CODE_SPACE: in Get() 533 : PagedSpace(heap, CODE_SPACE, EXECUTABLE, FreeList::CreateFreeList(), in CodeSpace()
|
D | memory-chunk.cc | 50 DCHECK(owner_identity() == CODE_SPACE || owner_identity() == CODE_LO_SPACE); in DecrementWriteUnprotectCounterAndMaybeSetPermissions() 84 DCHECK(owner_identity() == CODE_SPACE || owner_identity() == CODE_LO_SPACE); in SetCodeModificationPermissions() 172 if (owner()->identity() == CODE_SPACE) { in MemoryChunk()
|
D | evacuation-allocator.h | 37 compaction_spaces_.Get(CODE_SPACE)); in Finalize()
|
D | paged-spaces-inl.h | 37 DCHECK_EQ(space_->identity(), CODE_SPACE); in FromCurrentPage()
|
D | heap-inl.h | 155 DCHECK(idx == OLD_SPACE || idx == CODE_SPACE || idx == MAP_SPACE); in paged_space() 448 case CODE_SPACE: in IsPendingAllocationInternal() 662 DCHECK(chunk_->owner()->identity() == CODE_SPACE || in CodePageMemoryModificationScope()
|
D | sweeper.cc | 108 if (space_id == CODE_SPACE) continue; in RunImpl() 134 if (!sweeper_->IncrementalSweepSpace(CODE_SPACE)) { in RunInternal() 337 space->identity() == CODE_SPACE || space->identity() == MAP_SPACE); in RawSweep()
|
D | sweeper.h | 129 callback(CODE_SPACE); in ForAllSweepingSpaces()
|
D | heap-allocator-inl.h | 22 return static_cast<PagedSpace*>(spaces_[CODE_SPACE]); in code_space()
|
D | spaces.cc | 416 if (identity() == CODE_SPACE) { in InvokeAllocationObservers()
|
D | spaces.h | 154 if (id_ == CODE_SPACE) { in RoundSizeDownToObjectAlignment()
|
D | free-list.cc | 60 if (chunk->owner_identity() == CODE_SPACE) { in SearchForNodeInList()
|
D | heap.cc | 707 SpaceStatistics(CODE_SPACE) << "," << in DumpJSONHeapStatistics() 4541 case CODE_SPACE: in InSpace() 4571 case CODE_SPACE: in InSpaceSlow() 4592 case CODE_SPACE: in IsValidAllocationSpace() 5828 space_[CODE_SPACE] = code_space_ = new CodeSpace(this); in SetUpSpaces() 5979 if (space == CODE_SPACE || space == CODE_LO_SPACE) { in NotifyOldGenerationExpansion() 7137 case CODE_SPACE: in AllowedToBeMigrated() 7138 return dst == CODE_SPACE && type == CODE_TYPE; in AllowedToBeMigrated()
|
D | memory-allocator.cc | 613 DCHECK_NE(CODE_SPACE, space->identity()); in AllocateUninitializedPageFromPool()
|
D | mark-compact.cc | 795 DCHECK(space->identity() == OLD_SPACE || space->identity() == CODE_SPACE || in CollectEvacuationCandidates() 1565 if (dest == CODE_SPACE || (dest == OLD_SPACE && dst.IsBytecodeArray())) { in Move() 1629 } else if (dest == CODE_SPACE) { in RawMigrateObject() 1681 if (target_space == CODE_SPACE) in TryEvacuateObject() 3942 if (!FLAG_compact_with_stack || page->owner_identity() == CODE_SPACE) { in EvacuatePagesInParallel()
|
/third_party/node/deps/v8/src/snapshot/ |
D | serializer.cc | 795 case CODE_SPACE: in GetSnapshotSpace()
|
/third_party/node/deps/v8/src/common/ |
D | globals.h | 823 CODE_SPACE, // Old generation code object space, marked executable. enumerator
|
/third_party/node/deps/v8/src/execution/ |
D | frames.cc | 306 } else if (!isolate->heap()->InSpaceSlow(pc, CODE_SPACE)) { in IsInterpreterFramePc()
|
/third_party/node/deps/v8/src/diagnostics/ |
D | objects-printer.cc | 2879 if (!isolate->heap()->InSpaceSlow(address, i::CODE_SPACE) && in _v8_internal_Print_Code()
|