Lines Matching defs:identity
184 SweptList& list = swept_list_[GetSweepSpaceIndex(space->identity())];
336 DCHECK(free_list_mode == IGNORE_FREE_LIST || space->identity() == OLD_SPACE ||
337 space->identity() == CODE_SPACE || space->identity() == MAP_SPACE);
461 bool Sweeper::ConcurrentSweepSpace(AllocationSpace identity,
464 Page* page = GetSweepingPageSafe(identity);
470 ParallelSweepPage(page, identity, SweepingMode::kLazyOrConcurrent);
475 bool Sweeper::IncrementalSweepSpace(AllocationSpace identity) {
479 if (Page* page = GetSweepingPageSafe(identity)) {
480 ParallelSweepPage(page, identity, SweepingMode::kLazyOrConcurrent);
484 return sweeping_list_[GetSweepSpaceIndex(identity)].empty();
487 int Sweeper::ParallelSweepSpace(AllocationSpace identity,
493 while ((page = GetSweepingPageSafe(identity)) != nullptr) {
494 int freed = ParallelSweepPage(page, identity, sweeping_mode);
509 int Sweeper::ParallelSweepPage(Page* page, AllocationSpace identity,
511 DCHECK(IsValidSweepingSpace(identity));
537 swept_list_[GetSweepSpaceIndex(identity)].push_back(page);