Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: src/compiler.cc

Issue 1923893002: [counters] Annotate v8 with more runtime call counters. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixing few more things Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler.h" 5 #include "src/compiler.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "src/ast/ast-numbering.h" 9 #include "src/ast/ast-numbering.h"
10 #include "src/ast/prettyprinter.h" 10 #include "src/ast/prettyprinter.h"
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 671
672 bool GetOptimizedCodeNow(CompilationJob* job) { 672 bool GetOptimizedCodeNow(CompilationJob* job) {
673 CompilationInfo* info = job->info(); 673 CompilationInfo* info = job->info();
674 Isolate* isolate = info->isolate(); 674 Isolate* isolate = info->isolate();
675 675
676 // Parsing is not required when optimizing from existing bytecode. 676 // Parsing is not required when optimizing from existing bytecode.
677 if (!info->is_optimizing_from_bytecode()) { 677 if (!info->is_optimizing_from_bytecode()) {
678 if (!Compiler::ParseAndAnalyze(info->parse_info())) return false; 678 if (!Compiler::ParseAndAnalyze(info->parse_info())) return false;
679 } 679 }
680 680
681 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
682 RuntimeCallTimerScope runtimeTimer(isolate, &stats->RecompileSynchronous);
681 TimerEventScope<TimerEventRecompileSynchronous> timer(isolate); 683 TimerEventScope<TimerEventRecompileSynchronous> timer(isolate);
682 TRACE_EVENT0("v8", "V8.RecompileSynchronous"); 684 TRACE_EVENT0("v8", "V8.RecompileSynchronous");
683 685
684 if (job->CreateGraph() != CompilationJob::SUCCEEDED || 686 if (job->CreateGraph() != CompilationJob::SUCCEEDED ||
685 job->OptimizeGraph() != CompilationJob::SUCCEEDED || 687 job->OptimizeGraph() != CompilationJob::SUCCEEDED ||
686 job->GenerateCode() != CompilationJob::SUCCEEDED) { 688 job->GenerateCode() != CompilationJob::SUCCEEDED) {
687 if (FLAG_trace_opt) { 689 if (FLAG_trace_opt) {
688 PrintF("[aborted optimizing "); 690 PrintF("[aborted optimizing ");
689 info->closure()->ShortPrint(); 691 info->closure()->ShortPrint();
690 PrintF(" because: %s]\n", GetBailoutReason(info->bailout_reason())); 692 PrintF(" because: %s]\n", GetBailoutReason(info->bailout_reason()));
(...skipping 28 matching lines...) Expand all
719 721
720 // Parsing is not required when optimizing from existing bytecode. 722 // Parsing is not required when optimizing from existing bytecode.
721 if (!info->is_optimizing_from_bytecode()) { 723 if (!info->is_optimizing_from_bytecode()) {
722 if (!Compiler::ParseAndAnalyze(info->parse_info())) return false; 724 if (!Compiler::ParseAndAnalyze(info->parse_info())) return false;
723 } 725 }
724 726
725 // Reopen handles in the new CompilationHandleScope. 727 // Reopen handles in the new CompilationHandleScope.
726 info->ReopenHandlesInNewHandleScope(); 728 info->ReopenHandlesInNewHandleScope();
727 info->parse_info()->ReopenHandlesInNewHandleScope(); 729 info->parse_info()->ReopenHandlesInNewHandleScope();
728 730
731 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
732 RuntimeCallTimerScope runtimeTimer(info->isolate(),
733 &stats->RecompileSynchronous);
729 TimerEventScope<TimerEventRecompileSynchronous> timer(info->isolate()); 734 TimerEventScope<TimerEventRecompileSynchronous> timer(info->isolate());
730 TRACE_EVENT0("v8", "V8.RecompileSynchronous"); 735 TRACE_EVENT0("v8", "V8.RecompileSynchronous");
731 736
732 if (job->CreateGraph() != CompilationJob::SUCCEEDED) return false; 737 if (job->CreateGraph() != CompilationJob::SUCCEEDED) return false;
733 isolate->optimizing_compile_dispatcher()->QueueForOptimization(job); 738 isolate->optimizing_compile_dispatcher()->QueueForOptimization(job);
734 739
735 if (FLAG_trace_concurrent_recompilation) { 740 if (FLAG_trace_concurrent_recompilation) {
736 PrintF(" ** Queued "); 741 PrintF(" ** Queued ");
737 info->closure()->ShortPrint(); 742 info->closure()->ShortPrint();
738 PrintF(" for concurrent optimization.\n"); 743 PrintF(" for concurrent optimization.\n");
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 803
799 // Limit the number of times we try to optimize functions. 804 // Limit the number of times we try to optimize functions.
800 const int kMaxOptCount = 805 const int kMaxOptCount =
801 FLAG_deopt_every_n_times == 0 ? FLAG_max_opt_count : 1000; 806 FLAG_deopt_every_n_times == 0 ? FLAG_max_opt_count : 1000;
802 if (info->shared_info()->opt_count() > kMaxOptCount) { 807 if (info->shared_info()->opt_count() > kMaxOptCount) {
803 info->AbortOptimization(kOptimizedTooManyTimes); 808 info->AbortOptimization(kOptimizedTooManyTimes);
804 return MaybeHandle<Code>(); 809 return MaybeHandle<Code>();
805 } 810 }
806 811
807 CanonicalHandleScope canonical(isolate); 812 CanonicalHandleScope canonical(isolate);
813 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
814 RuntimeCallTimerScope runtimeTimer(isolate, &stats->OptimizeCode);
808 TimerEventScope<TimerEventOptimizeCode> optimize_code_timer(isolate); 815 TimerEventScope<TimerEventOptimizeCode> optimize_code_timer(isolate);
809 TRACE_EVENT0("v8", "V8.OptimizeCode"); 816 TRACE_EVENT0("v8", "V8.OptimizeCode");
810 817
811 // TurboFan can optimize directly from existing bytecode. 818 // TurboFan can optimize directly from existing bytecode.
812 if (FLAG_turbo_from_bytecode && use_turbofan && 819 if (FLAG_turbo_from_bytecode && use_turbofan &&
813 info->shared_info()->HasBytecodeArray()) { 820 info->shared_info()->HasBytecodeArray()) {
814 info->MarkAsOptimizeFromBytecode(); 821 info->MarkAsOptimizeFromBytecode();
815 } 822 }
816 823
817 if (mode == Compiler::CONCURRENT) { 824 if (mode == Compiler::CONCURRENT) {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 // Record the function compilation event. 950 // Record the function compilation event.
944 RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, &info); 951 RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, &info);
945 952
946 return info.code(); 953 return info.code();
947 } 954 }
948 955
949 MaybeHandle<Code> GetLazyCode(Handle<JSFunction> function) { 956 MaybeHandle<Code> GetLazyCode(Handle<JSFunction> function) {
950 Isolate* isolate = function->GetIsolate(); 957 Isolate* isolate = function->GetIsolate();
951 DCHECK(!isolate->has_pending_exception()); 958 DCHECK(!isolate->has_pending_exception());
952 DCHECK(!function->is_compiled()); 959 DCHECK(!function->is_compiled());
960 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
961 RuntimeCallTimerScope runtimeTimer(isolate, &stats->CompileCode);
953 TimerEventScope<TimerEventCompileCode> compile_timer(isolate); 962 TimerEventScope<TimerEventCompileCode> compile_timer(isolate);
954 TRACE_EVENT0("v8", "V8.CompileCode"); 963 TRACE_EVENT0("v8", "V8.CompileCode");
955 AggregatedHistogramTimerScope timer(isolate->counters()->compile_lazy()); 964 AggregatedHistogramTimerScope timer(isolate->counters()->compile_lazy());
956 965
957 if (FLAG_turbo_cache_shared_code) { 966 if (FLAG_turbo_cache_shared_code) {
958 Handle<Code> cached_code; 967 Handle<Code> cached_code;
959 if (GetCodeFromOptimizedCodeMap(function, BailoutId::None()) 968 if (GetCodeFromOptimizedCodeMap(function, BailoutId::None())
960 .ToHandle(&cached_code)) { 969 .ToHandle(&cached_code)) {
961 if (FLAG_trace_opt) { 970 if (FLAG_trace_opt) {
962 PrintF("[found optimized code for "); 971 PrintF("[found optimized code for ");
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 Handle<SharedFunctionInfo> result = isolate->factory()->NewSharedFunctionInfo( 1024 Handle<SharedFunctionInfo> result = isolate->factory()->NewSharedFunctionInfo(
1016 literal->name(), literal->materialized_literal_count(), literal->kind(), 1025 literal->name(), literal->materialized_literal_count(), literal->kind(),
1017 code, scope_info); 1026 code, scope_info);
1018 SharedFunctionInfo::InitFromFunctionLiteral(result, literal); 1027 SharedFunctionInfo::InitFromFunctionLiteral(result, literal);
1019 SharedFunctionInfo::SetScript(result, script); 1028 SharedFunctionInfo::SetScript(result, script);
1020 return result; 1029 return result;
1021 } 1030 }
1022 1031
1023 Handle<SharedFunctionInfo> CompileToplevel(CompilationInfo* info) { 1032 Handle<SharedFunctionInfo> CompileToplevel(CompilationInfo* info) {
1024 Isolate* isolate = info->isolate(); 1033 Isolate* isolate = info->isolate();
1034 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
1035 RuntimeCallTimerScope runtimeTimer(isolate, &stats->CompileCode);
1025 TimerEventScope<TimerEventCompileCode> timer(isolate); 1036 TimerEventScope<TimerEventCompileCode> timer(isolate);
1026 TRACE_EVENT0("v8", "V8.CompileCode"); 1037 TRACE_EVENT0("v8", "V8.CompileCode");
1027 PostponeInterruptsScope postpone(isolate); 1038 PostponeInterruptsScope postpone(isolate);
1028 DCHECK(!isolate->native_context().is_null()); 1039 DCHECK(!isolate->native_context().is_null());
1029 ParseInfo* parse_info = info->parse_info(); 1040 ParseInfo* parse_info = info->parse_info();
1030 Handle<Script> script = parse_info->script(); 1041 Handle<Script> script = parse_info->script();
1031 1042
1032 // TODO(svenpanne) Obscure place for this, perhaps move to OnBeforeCompile? 1043 // TODO(svenpanne) Obscure place for this, perhaps move to OnBeforeCompile?
1033 FixedArray* array = isolate->native_context()->embedder_data(); 1044 FixedArray* array = isolate->native_context()->embedder_data();
1034 script->set_context_data(array->get(v8::Context::kDebugIdIndex)); 1045 script->set_context_data(array->get(v8::Context::kDebugIdIndex));
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 } 1088 }
1078 1089
1079 DCHECK(!info->is_debug() || !parse_info->allow_lazy_parsing()); 1090 DCHECK(!info->is_debug() || !parse_info->allow_lazy_parsing());
1080 1091
1081 FunctionLiteral* lit = parse_info->literal(); 1092 FunctionLiteral* lit = parse_info->literal();
1082 LiveEditFunctionTracker live_edit_tracker(isolate, lit); 1093 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
1083 1094
1084 // Measure how long it takes to do the compilation; only take the 1095 // Measure how long it takes to do the compilation; only take the
1085 // rest of the function into account to avoid overlap with the 1096 // rest of the function into account to avoid overlap with the
1086 // parsing statistics. 1097 // parsing statistics.
1098 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
1099 RuntimeCallTimerScope runtimeTimer(
1100 isolate, info->is_eval() ? &stats->CompileEval : &stats->Compile);
1087 HistogramTimer* rate = info->is_eval() 1101 HistogramTimer* rate = info->is_eval()
1088 ? info->isolate()->counters()->compile_eval() 1102 ? info->isolate()->counters()->compile_eval()
1089 : info->isolate()->counters()->compile(); 1103 : info->isolate()->counters()->compile();
1090 HistogramTimerScope timer(rate); 1104 HistogramTimerScope timer(rate);
1091 TRACE_EVENT0("v8", info->is_eval() ? "V8.CompileEval" : "V8.Compile"); 1105 TRACE_EVENT0("v8", info->is_eval() ? "V8.CompileEval" : "V8.Compile");
1092 1106
1093 // Allocate a shared function info object. 1107 // Allocate a shared function info object.
1094 DCHECK_EQ(RelocInfo::kNoPosition, lit->function_token_position()); 1108 DCHECK_EQ(RelocInfo::kNoPosition, lit->function_token_position());
1095 result = NewSharedFunctionInfoForLiteral(isolate, lit, script); 1109 result = NewSharedFunctionInfoForLiteral(isolate, lit, script);
1096 result->set_is_toplevel(true); 1110 result->set_is_toplevel(true);
1097 if (info->is_eval()) { 1111 if (info->is_eval()) {
1098 // Eval scripts cannot be (re-)compiled without context. 1112 // Eval scripts cannot be (re-)compiled without context.
1099 result->set_allows_lazy_compilation_without_context(false); 1113 result->set_allows_lazy_compilation_without_context(false);
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 Handle<SharedFunctionInfo> result; 1470 Handle<SharedFunctionInfo> result;
1457 if (extension == NULL) { 1471 if (extension == NULL) {
1458 // First check per-isolate compilation cache. 1472 // First check per-isolate compilation cache.
1459 maybe_result = compilation_cache->LookupScript( 1473 maybe_result = compilation_cache->LookupScript(
1460 source, script_name, line_offset, column_offset, resource_options, 1474 source, script_name, line_offset, column_offset, resource_options,
1461 context, language_mode); 1475 context, language_mode);
1462 if (maybe_result.is_null() && FLAG_serialize_toplevel && 1476 if (maybe_result.is_null() && FLAG_serialize_toplevel &&
1463 compile_options == ScriptCompiler::kConsumeCodeCache && 1477 compile_options == ScriptCompiler::kConsumeCodeCache &&
1464 !isolate->debug()->is_loaded()) { 1478 !isolate->debug()->is_loaded()) {
1465 // Then check cached code provided by embedder. 1479 // Then check cached code provided by embedder.
1480 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
1481 RuntimeCallTimerScope runtimeTimer(isolate, &stats->CompileDeserialize);
1466 HistogramTimerScope timer(isolate->counters()->compile_deserialize()); 1482 HistogramTimerScope timer(isolate->counters()->compile_deserialize());
1467 TRACE_EVENT0("v8", "V8.CompileDeserialize"); 1483 TRACE_EVENT0("v8", "V8.CompileDeserialize");
1468 Handle<SharedFunctionInfo> result; 1484 Handle<SharedFunctionInfo> result;
1469 if (CodeSerializer::Deserialize(isolate, *cached_data, source) 1485 if (CodeSerializer::Deserialize(isolate, *cached_data, source)
1470 .ToHandle(&result)) { 1486 .ToHandle(&result)) {
1471 // Promote to per-isolate compilation cache. 1487 // Promote to per-isolate compilation cache.
1472 compilation_cache->PutScript(source, context, language_mode, result); 1488 compilation_cache->PutScript(source, context, language_mode, result);
1473 return result; 1489 return result;
1474 } 1490 }
1475 // Deserializer failed. Fall through to compile. 1491 // Deserializer failed. Fall through to compile.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1526 info.PrepareForSerializing(); 1542 info.PrepareForSerializing();
1527 } 1543 }
1528 1544
1529 parse_info.set_language_mode( 1545 parse_info.set_language_mode(
1530 static_cast<LanguageMode>(info.language_mode() | language_mode)); 1546 static_cast<LanguageMode>(info.language_mode() | language_mode));
1531 result = CompileToplevel(&info); 1547 result = CompileToplevel(&info);
1532 if (extension == NULL && !result.is_null()) { 1548 if (extension == NULL && !result.is_null()) {
1533 compilation_cache->PutScript(source, context, language_mode, result); 1549 compilation_cache->PutScript(source, context, language_mode, result);
1534 if (FLAG_serialize_toplevel && 1550 if (FLAG_serialize_toplevel &&
1535 compile_options == ScriptCompiler::kProduceCodeCache) { 1551 compile_options == ScriptCompiler::kProduceCodeCache) {
1552 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
1553 RuntimeCallTimerScope runtimeTimer(isolate, &stats->CompileSerialize);
1536 HistogramTimerScope histogram_timer( 1554 HistogramTimerScope histogram_timer(
1537 isolate->counters()->compile_serialize()); 1555 isolate->counters()->compile_serialize());
1538 TRACE_EVENT0("v8", "V8.CompileSerialize"); 1556 TRACE_EVENT0("v8", "V8.CompileSerialize");
1539 *cached_data = CodeSerializer::Serialize(isolate, result, source); 1557 *cached_data = CodeSerializer::Serialize(isolate, result, source);
1540 if (FLAG_profile_deserialization) { 1558 if (FLAG_profile_deserialization) {
1541 PrintF("[Compiling and serializing took %0.3f ms]\n", 1559 PrintF("[Compiling and serializing took %0.3f ms]\n",
1542 timer.Elapsed().InMillisecondsF()); 1560 timer.Elapsed().InMillisecondsF());
1543 } 1561 }
1544 } 1562 }
1545 } 1563 }
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
1649 bool lazy = FLAG_lazy && allow_lazy && !literal->should_eager_compile(); 1667 bool lazy = FLAG_lazy && allow_lazy && !literal->should_eager_compile();
1650 1668
1651 // Consider compiling eagerly when targeting the code cache. 1669 // Consider compiling eagerly when targeting the code cache.
1652 lazy &= !(FLAG_serialize_eager && info.will_serialize()); 1670 lazy &= !(FLAG_serialize_eager && info.will_serialize());
1653 1671
1654 // Consider compiling eagerly when compiling bytecode for Ignition. 1672 // Consider compiling eagerly when compiling bytecode for Ignition.
1655 lazy &= 1673 lazy &=
1656 !(FLAG_ignition && FLAG_ignition_eager && !isolate->serializer_enabled()); 1674 !(FLAG_ignition && FLAG_ignition_eager && !isolate->serializer_enabled());
1657 1675
1658 // Generate code 1676 // Generate code
1677 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
1678 RuntimeCallTimerScope runtimeTimer(isolate, &stats->CompileCode);
1659 TimerEventScope<TimerEventCompileCode> timer(isolate); 1679 TimerEventScope<TimerEventCompileCode> timer(isolate);
1660 TRACE_EVENT0("v8", "V8.CompileCode"); 1680 TRACE_EVENT0("v8", "V8.CompileCode");
1661 if (lazy) { 1681 if (lazy) {
1662 info.SetCode(isolate->builtins()->CompileLazy()); 1682 info.SetCode(isolate->builtins()->CompileLazy());
1663 } else if (Renumber(info.parse_info()) && GenerateUnoptimizedCode(&info)) { 1683 } else if (Renumber(info.parse_info()) && GenerateUnoptimizedCode(&info)) {
1664 // Code generation will ensure that the feedback vector is present and 1684 // Code generation will ensure that the feedback vector is present and
1665 // appropriately sized. 1685 // appropriately sized.
1666 DCHECK(!info.code().is_null()); 1686 DCHECK(!info.code().is_null());
1667 if (literal->should_eager_compile() && 1687 if (literal->should_eager_compile() &&
1668 literal->should_be_used_once_hint()) { 1688 literal->should_be_used_once_hint()) {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
1724 return GetOptimizedCode(function, NOT_CONCURRENT, osr_ast_id, osr_frame); 1744 return GetOptimizedCode(function, NOT_CONCURRENT, osr_ast_id, osr_frame);
1725 } 1745 }
1726 1746
1727 void Compiler::FinalizeCompilationJob(CompilationJob* raw_job) { 1747 void Compiler::FinalizeCompilationJob(CompilationJob* raw_job) {
1728 // Take ownership of compilation job. Deleting job also tears down the zone. 1748 // Take ownership of compilation job. Deleting job also tears down the zone.
1729 base::SmartPointer<CompilationJob> job(raw_job); 1749 base::SmartPointer<CompilationJob> job(raw_job);
1730 CompilationInfo* info = job->info(); 1750 CompilationInfo* info = job->info();
1731 Isolate* isolate = info->isolate(); 1751 Isolate* isolate = info->isolate();
1732 1752
1733 VMState<COMPILER> state(isolate); 1753 VMState<COMPILER> state(isolate);
1754 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
1755 RuntimeCallTimerScope runtimeTimer(isolate, &stats->RecompileSynchronous);
1734 TimerEventScope<TimerEventRecompileSynchronous> timer(info->isolate()); 1756 TimerEventScope<TimerEventRecompileSynchronous> timer(info->isolate());
1735 TRACE_EVENT0("v8", "V8.RecompileSynchronous"); 1757 TRACE_EVENT0("v8", "V8.RecompileSynchronous");
1736 1758
1737 Handle<SharedFunctionInfo> shared = info->shared_info(); 1759 Handle<SharedFunctionInfo> shared = info->shared_info();
1738 shared->code()->set_profiler_ticks(0); 1760 shared->code()->set_profiler_ticks(0);
1739 1761
1740 DCHECK(!shared->HasDebugInfo()); 1762 DCHECK(!shared->HasDebugInfo());
1741 1763
1742 // 1) Optimization on the concurrent thread may have failed. 1764 // 1) Optimization on the concurrent thread may have failed.
1743 // 2) The function may have already been optimized by OSR. Simply continue. 1765 // 2) The function may have already been optimized by OSR. Simply continue.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
1806 MaybeHandle<Code> code; 1828 MaybeHandle<Code> code;
1807 if (cached.code != nullptr) code = handle(cached.code); 1829 if (cached.code != nullptr) code = handle(cached.code);
1808 Handle<Context> native_context(function->context()->native_context()); 1830 Handle<Context> native_context(function->context()->native_context());
1809 SharedFunctionInfo::AddToOptimizedCodeMap(shared, native_context, code, 1831 SharedFunctionInfo::AddToOptimizedCodeMap(shared, native_context, code,
1810 literals, BailoutId::None()); 1832 literals, BailoutId::None());
1811 } 1833 }
1812 } 1834 }
1813 1835
1814 } // namespace internal 1836 } // namespace internal
1815 } // namespace v8 1837 } // namespace v8
OLDNEW
« src/api.cc ('K') | « src/api-arguments.cc ('k') | src/counters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698