Home
last modified time | relevance | path

Searched refs:is_compiled_scope (Results 1 - 20 of 20) sorted by relevance

/third_party/node/deps/v8/src/codegen/
H A Dcompiler.cc784 AccountingAllocator* allocator, IsCompiledScope* is_compiled_scope, in IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs()
830 *is_compiled_scope = shared_info->is_compiled_scope(isolate); in IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs()
831 DCHECK(is_compiled_scope->is_compiled()); in IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs()
1352 IsCompiledScope is_compiled_scope(*shared_info, isolate); in FinalizeUnoptimizedCompilation()
1353 if (!is_compiled_scope.is_compiled()) continue; in FinalizeUnoptimizedCompilation()
1403 IsCompiledScope is_compiled_scope(*shared_info, isolate); in CompileAllWithBaseline()
1404 if (!is_compiled_scope.is_compiled()) continue; in CompileAllWithBaseline()
1407 isolate, shared_info, Compiler::CLEAR_EXCEPTION, &is_compiled_scope); in CompileAllWithBaseline()
1426 IsCompiledScope* is_compiled_scope) { in CompileToplevel()
781 IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs( IsolateT* isolate, Handle<SharedFunctionInfo> outer_shared_info, Handle<Script> script, ParseInfo* parse_info, AccountingAllocator* allocator, IsCompiledScope* is_compiled_scope, FinalizeUnoptimizedCompilationDataList* finalize_unoptimized_compilation_data_list, DeferredFinalizationJobDataList* jobs_to_retry_finalization_on_main_thread) IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs() argument
1423 CompileToplevel( ParseInfo* parse_info, Handle<Script> script, MaybeHandle<ScopeInfo> maybe_outer_scope_info, Isolate* isolate, IsCompiledScope* is_compiled_scope) CompileToplevel() argument
1979 Compile(Isolate* isolate, Handle<SharedFunctionInfo> shared_info, ClearExceptionFlag flag, IsCompiledScope* is_compiled_scope, CreateSourcePositions create_source_positions_flag) Compile() argument
2060 Compile(Isolate* isolate, Handle<JSFunction> function, ClearExceptionFlag flag, IsCompiledScope* is_compiled_scope) Compile() argument
2135 CompileSharedWithBaseline(Isolate* isolate, Handle<SharedFunctionInfo> shared, Compiler::ClearExceptionFlag flag, IsCompiledScope* is_compiled_scope) Compile() argument
2187 CompileBaseline(Isolate* isolate, Handle<JSFunction> function, ClearExceptionFlag flag, IsCompiledScope* is_compiled_scope) Compile() argument
2206 CompileMaglev(Isolate* isolate, Handle<JSFunction> function, ConcurrencyMode mode, IsCompiledScope* is_compiled_scope) Compile() argument
2232 CompileToplevel( ParseInfo* parse_info, Handle<Script> script, Isolate* isolate, IsCompiledScope* is_compiled_scope) Compile() argument
2289 IsCompiledScope is_compiled_scope; Compile() local
2331 IsCompiledScope is_compiled_scope; Compile() local
2809 CompileScriptOnMainThread( const UnoptimizedCompileFlags flags, Handle<String> source, const ScriptDetails& script_details, NativesFlag natives, v8::Extension* extension, Isolate* isolate, IsCompiledScope* is_compiled_scope) Compile() argument
2898 CompileScriptOnBothBackgroundAndMainThread( Handle<String> source, const ScriptDetails& script_details, Isolate* isolate, IsCompiledScope* is_compiled_scope) Compile() argument
3018 IsCompiledScope is_compiled_scope; Compile() local
3191 IsCompiledScope is_compiled_scope; Compile() local
[all...]
H A Dcompiler.h73 IsCompiledScope* is_compiled_scope,
78 IsCompiledScope* is_compiled_scope);
81 IsCompiledScope* is_compiled_scope);
86 IsCompiledScope* is_compiled_scope);
89 IsCompiledScope* is_compiled_scope);
93 IsCompiledScope* is_compiled_scope);
H A Dpending-optimization-table.cc35 IsCompiledScope is_compiled_scope; in PreparedForOptimization() local
37 &is_compiled_scope); in PreparedForOptimization()
/third_party/node/deps/v8/src/runtime/
H A Druntime-test.cc226 IsCompiledScope* is_compiled_scope);
231 IsCompiledScope* is_compiled_scope) { in CanOptimizeFunction()
240 if (!is_compiled_scope->is_compiled() && in CanOptimizeFunction()
242 is_compiled_scope)) { in CanOptimizeFunction()
280 IsCompiledScope* is_compiled_scope) { in CanOptimizeFunction()
303 IsCompiledScope is_compiled_scope( in OptimizeFunctionOnNextCall()
304 function->shared().is_compiled_scope(isolate)); in OptimizeFunctionOnNextCall()
305 if (!CanOptimizeFunction<kCodeKind>(function, isolate, &is_compiled_scope)) { in OptimizeFunctionOnNextCall()
332 JSFunction::EnsureFeedbackVector(isolate, function, &is_compiled_scope); in OptimizeFunctionOnNextCall()
345 IsCompiledScope is_compiled_scope( in EnsureFeedbackVector()
229 CanOptimizeFunction( Handle<JSFunction> function, Isolate* isolate, IsCompiledScope* is_compiled_scope) CanOptimizeFunction() argument
278 CanOptimizeFunction(Handle<JSFunction> function, Isolate* isolate, IsCompiledScope* is_compiled_scope) CanOptimizeFunction() argument
376 IsCompiledScope is_compiled_scope = RUNTIME_FUNCTION() local
1197 IsCompiledScope is_compiled_scope; RUNTIME_FUNCTION() local
[all...]
H A Druntime-compiler.cc36 IsCompiledScope is_compiled_scope(function->shared(), isolate); in CompileOptimized()
37 DCHECK(is_compiled_scope.is_compiled()); in CompileOptimized()
70 IsCompiledScope is_compiled_scope; in RUNTIME_FUNCTION() local
72 &is_compiled_scope)) { in RUNTIME_FUNCTION()
85 IsCompiledScope is_compiled_scope(*sfi, isolate); in RUNTIME_FUNCTION()
89 &is_compiled_scope); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/baseline/
H A Dbaseline-batch-compiler.cc253 IsCompiledScope is_compiled_scope( in EnqueueFunction()
254 function->shared().is_compiled_scope(isolate_)); in EnqueueFunction()
256 &is_compiled_scope); in EnqueueFunction()
326 IsCompiledScope is_compiled_scope( in CompileBatch()
327 function->shared().is_compiled_scope(isolate_)); in CompileBatch()
329 &is_compiled_scope); in CompileBatch()
353 IsCompiledScope is_compiled_scope(shared->is_compiled_scope(isolate_)); in MaybeCompileFunction()
355 isolate_, shared, Compiler::CLEAR_EXCEPTION, &is_compiled_scope); in MaybeCompileFunction()
/third_party/node/deps/v8/src/execution/
H A Dtiering-manager.cc378 IsCompiledScope is_compiled_scope( in OnInterruptTick()
379 function->shared().is_compiled_scope(isolate_)); in OnInterruptTick()
393 &is_compiled_scope); in OnInterruptTick()
394 DCHECK(is_compiled_scope.is_compiled()); in OnInterruptTick()
418 IsCompiledScope is_compiled_scope( in OnInterruptTick()
419 function->shared().is_compiled_scope(isolate_)); in OnInterruptTick()
421 &is_compiled_scope); in OnInterruptTick()
/third_party/node/deps/v8/src/debug/
H A Ddebug.cc1615 IsCompiledScope is_compiled_scope; in InstallDebugBreakTrampoline() local
1617 &is_compiled_scope); in InstallDebugBreakTrampoline()
1618 DCHECK(is_compiled_scope.is_compiled()); in InstallDebugBreakTrampoline()
1649 IsCompiledScope is_compiled_scope; in CompileTopLevel() local
1652 &is_compiled_scope); in CompileTopLevel()
1851 IsCompiledScope is_compiled_scope(candidate->is_compiled_scope(isolate_)); in FindSharedFunctionInfosIntersectingRange()
1852 if (!is_compiled_scope.is_compiled()) { in FindSharedFunctionInfosIntersectingRange()
1856 &is_compiled_scope)) { in FindSharedFunctionInfosIntersectingRange()
1862 DCHECK(is_compiled_scope in FindSharedFunctionInfosIntersectingRange()
1890 IsCompiledScope is_compiled_scope; FindInnermostContainingFunctionInfo() local
1936 IsCompiledScope is_compiled_scope = shared->is_compiled_scope(isolate_); EnsureBreakInfo() local
[all...]
H A Dliveedit.cc1082 IsCompiledScope is_compiled_scope( in PatchScript()
1083 js_function->shared().is_compiled_scope(isolate)); in PatchScript()
1085 &is_compiled_scope); in PatchScript()
1126 IsCompiledScope is_compiled_scope( in PatchScript()
1127 js_function->shared().is_compiled_scope(isolate)); in PatchScript()
1129 &is_compiled_scope); in PatchScript()
H A Ddebug-coverage.cc811 IsCompiledScope is_compiled_scope( in SelectMode()
812 func->shared().is_compiled_scope(isolate)); in SelectMode()
813 CHECK(is_compiled_scope.is_compiled()); in SelectMode()
814 JSFunction::EnsureFeedbackVector(isolate, func, &is_compiled_scope); in SelectMode()
/third_party/node/deps/v8/src/objects/
H A Djs-function.cc581 Handle<JSFunction> function, IsCompiledScope* is_compiled_scope, in InitializeFeedbackCell()
613 CreateAndAttachFeedbackVector(isolate, function, is_compiled_scope); in InitializeFeedbackCell()
1269 IsCompiledScope is_compiled_scope(shared->is_compiled_scope(isolate)); in CalculateExpectedNofProperties()
1270 if (is_compiled_scope.is_compiled() || in CalculateExpectedNofProperties()
1272 &is_compiled_scope)) { in CalculateExpectedNofProperties()
580 InitializeFeedbackCell( Handle<JSFunction> function, IsCompiledScope* is_compiled_scope, bool reset_budget_for_feedback_allocation) InitializeFeedbackCell() argument
H A Dcompilation-cache-table-inl.h99 : is_compiled_scope_(!shared.is_null() ? shared.is_compiled_scope(isolate) in InfoCellPair()
H A Dfeedback-vector.cc250 IsCompiledScope* is_compiled_scope) { in New()
251 DCHECK(is_compiled_scope->is_compiled()); in New()
349 IsCompiledScope is_compiled_scope(shared->is_compiled_scope(isolate)); in NewFeedbackVectorForTesting()
351 &is_compiled_scope); in NewFeedbackVectorForTesting()
247 New( Isolate* isolate, Handle<SharedFunctionInfo> shared, Handle<ClosureFeedbackCellArray> closure_feedback_cell_array, IsCompiledScope* is_compiled_scope) New() argument
H A Dshared-function-info.cc721 IsCompiledScope* is_compiled_scope, CreateSourcePositions flag) { in EnsureBytecodeArrayAvailable()
724 is_compiled_scope, flag)) { in EnsureBytecodeArrayAvailable()
719 EnsureBytecodeArrayAvailable( Isolate* isolate, Handle<SharedFunctionInfo> shared_info, IsCompiledScope* is_compiled_scope, CreateSourcePositions flag) EnsureBytecodeArrayAvailable() argument
H A Dshared-function-info.h292 inline IsCompiledScope is_compiled_scope(IsolateT* isolate) const;
H A Dfeedback-vector.h278 IsCompiledScope* is_compiled_scope);
H A Dshared-function-info-inl.h508 IsCompiledScope SharedFunctionInfo::is_compiled_scope(IsolateT* isolate) const { in is_compiled_scope() function in v8::internal::SharedFunctionInfo
H A Djs-objects.cc5594 IsCompiledScope is_compiled_scope; in EnsureSourcePositionsAvailable() local
5596 isolate, shared_info, &is_compiled_scope, CreateSourcePositions::kYes); in EnsureSourcePositionsAvailable()
/third_party/node/deps/v8/src/heap/
H A Dfactory.cc3950 IsCompiledScope is_compiled_scope(sfi_->is_compiled_scope(isolate_)); in Build()
3951 JSFunction::EnsureFeedbackVector(isolate_, result, &is_compiled_scope); in Build()
/third_party/node/deps/v8/src/compiler/
H A Dwasm-compiler.cc7930 IsCompiledScope is_compiled_scope(shared->is_compiled_scope(isolate));
7931 if (!is_compiled_scope.is_compiled()) {
7933 &is_compiled_scope);

Completed in 98 milliseconds