OLD | NEW |
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 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 } | 1083 } |
1084 | 1084 |
1085 DCHECK(!info->is_debug() || !parse_info->allow_lazy_parsing()); | 1085 DCHECK(!info->is_debug() || !parse_info->allow_lazy_parsing()); |
1086 | 1086 |
1087 FunctionLiteral* lit = parse_info->literal(); | 1087 FunctionLiteral* lit = parse_info->literal(); |
1088 LiveEditFunctionTracker live_edit_tracker(isolate, lit); | 1088 LiveEditFunctionTracker live_edit_tracker(isolate, lit); |
1089 | 1089 |
1090 // Measure how long it takes to do the compilation; only take the | 1090 // Measure how long it takes to do the compilation; only take the |
1091 // rest of the function into account to avoid overlap with the | 1091 // rest of the function into account to avoid overlap with the |
1092 // parsing statistics. | 1092 // parsing statistics. |
1093 HistogramTimer* rate = parse_info->is_eval() | 1093 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats(); |
| 1094 RuntimeCallTimerScope runtimeTimer( |
| 1095 isolate, info->is_eval() ? &stats->CompileEval : &stats->Compile); |
| 1096 HistogramTimer* rate = info->is_eval() |
1094 ? info->isolate()->counters()->compile_eval() | 1097 ? info->isolate()->counters()->compile_eval() |
1095 : info->isolate()->counters()->compile(); | 1098 : info->isolate()->counters()->compile(); |
1096 HistogramTimerScope timer(rate); | 1099 HistogramTimerScope timer(rate); |
1097 TRACE_EVENT0("v8", parse_info->is_eval() ? "V8.CompileEval" : "V8.Compile"); | 1100 TRACE_EVENT0("v8", parse_info->is_eval() ? "V8.CompileEval" : "V8.Compile"); |
1098 | 1101 |
1099 // Allocate a shared function info object. | 1102 // Allocate a shared function info object. |
1100 DCHECK_EQ(RelocInfo::kNoPosition, lit->function_token_position()); | 1103 DCHECK_EQ(RelocInfo::kNoPosition, lit->function_token_position()); |
1101 result = NewSharedFunctionInfoForLiteral(isolate, lit, script); | 1104 result = NewSharedFunctionInfoForLiteral(isolate, lit, script); |
1102 result->set_is_toplevel(true); | 1105 result->set_is_toplevel(true); |
1103 if (parse_info->is_eval()) { | 1106 if (parse_info->is_eval()) { |
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1813 MaybeHandle<Code> code; | 1816 MaybeHandle<Code> code; |
1814 if (cached.code != nullptr) code = handle(cached.code); | 1817 if (cached.code != nullptr) code = handle(cached.code); |
1815 Handle<Context> native_context(function->context()->native_context()); | 1818 Handle<Context> native_context(function->context()->native_context()); |
1816 SharedFunctionInfo::AddToOptimizedCodeMap(shared, native_context, code, | 1819 SharedFunctionInfo::AddToOptimizedCodeMap(shared, native_context, code, |
1817 literals, BailoutId::None()); | 1820 literals, BailoutId::None()); |
1818 } | 1821 } |
1819 } | 1822 } |
1820 | 1823 |
1821 } // namespace internal | 1824 } // namespace internal |
1822 } // namespace v8 | 1825 } // namespace v8 |
OLD | NEW |