Home
last modified time | relevance | path

Searched refs:SweeperTask (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dconcurrent_sweeper.h92 class SweeperTask : public Task {
94 SweeperTask(int32_t id, ConcurrentSweeper *sweeper, MemSpaceType type) in SweeperTask() function
96 ~SweeperTask() override = default;
99 NO_COPY_SEMANTIC(SweeperTask);
100 NO_MOVE_SEMANTIC(SweeperTask);
Dconcurrent_sweeper.cpp37 … std::make_unique<SweeperTask>(heap_->GetJSThread()->GetThreadId(), this, OLD_SPACE)); in PostTask()
40 std::make_unique<SweeperTask>(heap_->GetJSThread()->GetThreadId(), this, NON_MOVABLE)); in PostTask()
42 … std::make_unique<SweeperTask>(heap_->GetJSThread()->GetThreadId(), this, MACHINE_CODE_SPACE)); in PostTask()
158 bool ConcurrentSweeper::SweeperTask::Run([[maybe_unused]] uint32_t threadIndex) in Run()