Home
last modified time | relevance | path

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

/external/v8/src/codegen/
Dcompiler.h30 class BackgroundCompileTask; variable
88 BackgroundCompileTask* task, Handle<SharedFunctionInfo> shared_info,
456 class V8_EXPORT_PRIVATE BackgroundCompileTask {
462 BackgroundCompileTask(ScriptStreamingData* data, Isolate* isolate);
463 ~BackgroundCompileTask();
468 BackgroundCompileTask(
537 DISALLOW_COPY_AND_ASSIGN(BackgroundCompileTask);
555 std::unique_ptr<BackgroundCompileTask> task;
Dcompiler.cc1448 BackgroundCompileTask::BackgroundCompileTask(ScriptStreamingData* streamed_data, in BackgroundCompileTask() function in v8::internal::BackgroundCompileTask
1477 BackgroundCompileTask::BackgroundCompileTask( in BackgroundCompileTask() function in v8::internal::BackgroundCompileTask
1515 BackgroundCompileTask::~BackgroundCompileTask() = default;
1552 void BackgroundCompileTask::Run() { in Run()
1628 MaybeHandle<SharedFunctionInfo> BackgroundCompileTask::GetOuterFunctionSfi( in GetOuterFunctionSfi()
1640 Handle<Script> BackgroundCompileTask::GetScript(Isolate* isolate) { in GetScript()
1872 BackgroundCompileTask* task, Handle<SharedFunctionInfo> shared_info, in FinalizeBackgroundCompileTask()
2515 data()->task = std::make_unique<i::BackgroundCompileTask>(data(), isolate); in StressBackgroundCompileThread()
2855 BackgroundCompileTask* task = streaming_data->task.get(); in GetSharedFunctionInfoForStreamedScript()
/external/v8/src/compiler-dispatcher/
Dcompiler-dispatcher.h34 class BackgroundCompileTask; variable
120 explicit Job(BackgroundCompileTask* task_arg);
132 std::unique_ptr<BackgroundCompileTask> task;
Dcompiler-dispatcher.cc22 CompilerDispatcher::Job::Job(BackgroundCompileTask* task_arg) in Job()
67 std::unique_ptr<Job> job = std::make_unique<Job>(new BackgroundCompileTask( in Enqueue()
/external/v8/src/api/
Dapi.cc2649 std::unique_ptr<i::BackgroundCompileTask> task = in StartStreaming()
2650 std::make_unique<i::BackgroundCompileTask>(data, isolate); in StartStreaming()