Home
last modified time | relevance | path

Searched refs:AsyncCompileJob (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dmodule-compiler.cc2001 AsyncCompileJob::AsyncCompileJob( in AsyncCompileJob() function in v8::internal::wasm::AsyncCompileJob
2033 void AsyncCompileJob::Start() { in Start()
2038 void AsyncCompileJob::Abort() { in Abort()
2046 explicit AsyncStreamingProcessor(AsyncCompileJob* job,
2086 AsyncCompileJob* job_;
2100 std::shared_ptr<StreamingDecoder> AsyncCompileJob::CreateStreamingDecoder() { in CreateStreamingDecoder()
2108 AsyncCompileJob::~AsyncCompileJob() { in ~AsyncCompileJob()
2129 void AsyncCompileJob::CreateNativeModule( in CreateNativeModule()
2148 bool AsyncCompileJob::GetOrCreateNativeModule( in GetOrCreateNativeModule()
2159 void AsyncCompileJob::PrepareRuntimeObjects() { in PrepareRuntimeObjects()
[all …]
Dwasm-engine.h46 class AsyncCompileJob; variable
237 std::unique_ptr<AsyncCompileJob> RemoveCompileJob(AsyncCompileJob* job);
372 AsyncCompileJob* CreateAsyncCompileJob(
409 std::unordered_map<AsyncCompileJob*, std::unique_ptr<AsyncCompileJob>>
Dmodule-compiler.h123 class AsyncCompileJob {
125 AsyncCompileJob(Isolate* isolate, const WasmFeatures& enabled_features,
131 ~AsyncCompileJob();
Dwasm-engine.cc677 AsyncCompileJob* job = CreateAsyncCompileJob( in AsyncCompile()
692 AsyncCompileJob* job = CreateAsyncCompileJob( in StartStreamingCompilation()
915 AsyncCompileJob* WasmEngine::CreateAsyncCompileJob( in CreateAsyncCompileJob()
921 AsyncCompileJob* job = new AsyncCompileJob( in CreateAsyncCompileJob()
926 async_compile_jobs_[job] = std::unique_ptr<AsyncCompileJob>(job); in CreateAsyncCompileJob()
930 std::unique_ptr<AsyncCompileJob> WasmEngine::RemoveCompileJob( in RemoveCompileJob()
931 AsyncCompileJob* job) { in RemoveCompileJob()
935 std::unique_ptr<AsyncCompileJob> result = std::move(item->second); in RemoveCompileJob()
952 std::vector<std::unique_ptr<AsyncCompileJob>> jobs_to_delete; in DeleteCompileJobsOnContext()
970 std::vector<std::unique_ptr<AsyncCompileJob>> jobs_to_delete; in DeleteCompileJobsOnIsolate()