Lines Matching defs:function
23 #include "src/objects/js-function-inl.h"
244 void BaselineBatchCompiler::EnqueueFunction(Handle<JSFunction> function) {
245 Handle<SharedFunctionInfo> shared(function->shared(), isolate_);
246 // Early return if the function is compiled with baseline already or it is not
251 // Immediately compile the function if batch compilation is disabled.
254 function->shared().is_compiled_scope(isolate_));
255 Compiler::CompileBaseline(isolate_, function, Compiler::CLEAR_EXCEPTION,
270 "[Baseline batch compilation] Enqueued function ");
271 function->PrintName(trace_scope.file());
290 CompileBatch(function);
323 void BaselineBatchCompiler::CompileBatch(Handle<JSFunction> function) {
327 function->shared().is_compiled_scope(isolate_));
328 Compiler::CompileBaseline(isolate_, function, Compiler::CLEAR_EXCEPTION,