Lines Matching defs:result

1071   // Default behavior, i.e. install the result, insert into caches, etc.
1073 // Used only for stress testing. The compilation result should be discarded.
1272 // (where most interesting compiles are non-concurrent). The result of the
1767 Handle<SharedFunctionInfo> result;
1768 if (!maybe_result.ToHandle(&result)) {
1778 return handle(*result, isolate);
1806 Handle<SharedFunctionInfo> result;
1807 if (!maybe_result.ToHandle(&result)) {
1817 input_shared_info->CopyFrom(*result);
1936 // Parsing failed probably as a result of stack exhaustion.
1955 // Recompiling failed probably as a result of stack exhaustion.
2387 // If caller is strict mode, the result must be in strict mode as well.
2390 Handle<JSFunction> result;
2393 result = Factory::JSFunctionBuilder{isolate, shared_info, context}
2398 result = Factory::JSFunctionBuilder{isolate, shared_info, context}
2403 JSFunction::InitializeFeedbackCell(result, &is_compiled_scope, true);
2405 // Make sure to cache this result.
2406 Handle<FeedbackCell> new_feedback_cell(result->raw_feedback_cell(),
2413 result = Factory::JSFunctionBuilder{isolate, shared_info, context}
2418 JSFunction::InitializeFeedbackCell(result, &is_compiled_scope, true);
2422 Handle<FeedbackCell> new_feedback_cell(result->raw_feedback_cell(),
2430 return result;
2462 ModifyCodeGenerationFromStringsResult result =
2469 if (result.codegen_allowed && !result.modified_source.IsEmpty()) {
2472 Utils::OpenHandle(*result.modified_source.ToLocalChecked(), false);
2474 return result.codegen_allowed;
2953 Handle<SharedFunctionInfo> result;
2954 if (maybe_result.ToHandle(&result)) {
2955 // The BackgroundCompileTask's IsCompiledScope will keep the result alive
2958 *is_compiled_scope = result->is_compiled_scope(isolate);
3014 // nor put the compilation result back into the cache.
3049 Handle<SharedFunctionInfo> result;
3050 if (maybe_result.ToHandle(&result)) {
3051 is_compiled_scope = result->is_compiled_scope(isolate);
3055 compilation_cache->PutScript(source, language_mode, result);
3071 // compilation on a background thread, and wait for its result.
3090 // Add the result to the isolate cache.
3091 Handle<SharedFunctionInfo> result;
3092 if (use_compilation_cache && maybe_result.ToHandle(&result)) {
3094 compilation_cache->PutScript(source, language_mode, result);
3284 Handle<SharedFunctionInfo> result;
3285 if (maybe_result.ToHandle(&result)) {
3290 result);
3364 Handle<SharedFunctionInfo> result =
3367 return result;
3412 MaybeHandle<CodeT> result = GetOrCompileOptimized(
3415 if (result.is_null()) {
3420 return result;