Home
last modified time | relevance | path

Searched refs:compilerThread (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/
Dcompiler_task_manager_worker.cpp62 compiler::BackgroundCompilerContext::CompilerThread compilerThread( in BackgroundCompileMethod() local
70 … compiler::BackgroundCompilerTaskRunner taskRunner(compilerTaskManagerQueue_, compilerThread.get(), in BackgroundCompileMethod()
73 compilerCtx.SetCompilerThread(std::move(compilerThread)); in BackgroundCompileMethod()
Dcompiler_thread_pool_worker.cpp80 Thread compilerThread(ctx.GetVM(), Thread::ThreadType::THREAD_TYPE_COMPILER); in InPlaceCompileMethod() local
81 ScopedCurrentThread sct(&compilerThread); in InPlaceCompileMethod()
/arkcompiler/runtime_core/static_core/compiler/
Dbackground_task_runner.h53 void SetCompilerThread(CompilerThread compilerThread) in SetCompilerThread() argument
55 compilerThread_ = std::move(compilerThread); in SetCompilerThread()
196 …ackgroundCompilerTaskRunner(taskmanager::TaskQueueInterface *compilerQueue, Thread *compilerThread, in BackgroundCompilerTaskRunner() argument
198 … : compilerQueue_(compilerQueue), compilerThread_(compilerThread), runtimeIface_(runtimeIface) in BackgroundCompilerTaskRunner()
/arkcompiler/ets_runtime/ecmascript/jit/
Djit_task.cpp37 JitTask::JitTask(JSThread *hostThread, JSThread *compilerThread, Jit *jit, JSHandle<JSFunction> &js… in JitTask() argument
40 compilerThread_(compilerThread), in JitTask()
492 JSThread *compilerThread = jitTask_->GetCompilerThread(); in AsyncTaskRunScope() local
493 ASSERT(compilerThread->IsJitThread()); in AsyncTaskRunScope()
494 JitThread *jitThread = static_cast<JitThread*>(compilerThread); in AsyncTaskRunScope()
502 JSThread *compilerThread = jitTask_->GetCompilerThread(); in ~AsyncTaskRunScope() local
503 JitThread *jitThread = static_cast<JitThread*>(compilerThread); in ~AsyncTaskRunScope()
Djit_task.h105 JitTask(JSThread *hostThread, JSThread *compilerThread, Jit *jit,