Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/baseline/
Dbaseline-batch-compiler.cc225 BaselineBatchCompiler::BaselineBatchCompiler(Isolate* isolate) in BaselineBatchCompiler() function in v8::internal::baseline::BaselineBatchCompiler
237 BaselineBatchCompiler::~BaselineBatchCompiler() { in ~BaselineBatchCompiler()
244 void BaselineBatchCompiler::EnqueueFunction(Handle<JSFunction> function) { in EnqueueFunction()
297 void BaselineBatchCompiler::Enqueue(Handle<SharedFunctionInfo> shared) { in Enqueue()
302 void BaselineBatchCompiler::InstallBatch() { in InstallBatch()
307 void BaselineBatchCompiler::EnsureQueueCapacity() { in EnsureQueueCapacity()
323 void BaselineBatchCompiler::CompileBatch(Handle<JSFunction> function) { in CompileBatch()
339 bool BaselineBatchCompiler::ShouldCompileBatch() const { in ShouldCompileBatch()
344 bool BaselineBatchCompiler::MaybeCompileFunction(MaybeObject maybe_sfi) { in MaybeCompileFunction()
358 void BaselineBatchCompiler::ClearBatch() { in ClearBatch()
[all …]
Dbaseline-batch-compiler.h20 class BaselineBatchCompiler {
24 explicit BaselineBatchCompiler(Isolate* isolate);
25 ~BaselineBatchCompiler();
/third_party/node/deps/v8/src/execution/
Disolate.h145 class BaselineBatchCompiler; variable
1479 baseline::BaselineBatchCompiler* baseline_batch_compiler() const { in baseline_batch_compiler()
2236 baseline::BaselineBatchCompiler* baseline_batch_compiler_ = nullptr;
Disolate.cc3932 baseline_batch_compiler_ = new baseline::BaselineBatchCompiler(this); in ThrowInternal()