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

Side by Side Diff: src/interpreter/interpreter.cc

Issue 2187693002: [Tracing] Embed V8 runtime call stats into tracing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update Created 4 years, 4 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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/interpreter/interpreter.h" 5 #include "src/interpreter/interpreter.h"
6 6
7 #include <fstream> 7 #include <fstream>
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/ast/prettyprinter.h" 10 #include "src/ast/prettyprinter.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 // static 130 // static
131 int Interpreter::InterruptBudget() { 131 int Interpreter::InterruptBudget() {
132 return FLAG_interrupt_budget * kCodeSizeMultiplier; 132 return FLAG_interrupt_budget * kCodeSizeMultiplier;
133 } 133 }
134 134
135 bool Interpreter::MakeBytecode(CompilationInfo* info) { 135 bool Interpreter::MakeBytecode(CompilationInfo* info) {
136 RuntimeCallTimerScope runtimeTimer(info->isolate(), 136 RuntimeCallTimerScope runtimeTimer(info->isolate(),
137 &RuntimeCallStats::CompileIgnition); 137 &RuntimeCallStats::CompileIgnition);
138 TimerEventScope<TimerEventCompileIgnition> timer(info->isolate()); 138 TimerEventScope<TimerEventCompileIgnition> timer(info->isolate());
139 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"), "V8.CompileIgnition"); 139 TRACE_EVENT_RUNTIME_CALL_STATS_TRACING_SCOPED(
140 info->isolate(), &tracing::TraceEventStatsTable::CompileIgnition);
140 141
141 if (FLAG_print_bytecode || FLAG_print_ast) { 142 if (FLAG_print_bytecode || FLAG_print_ast) {
142 OFStream os(stdout); 143 OFStream os(stdout);
143 std::unique_ptr<char[]> name = info->GetDebugName(); 144 std::unique_ptr<char[]> name = info->GetDebugName();
144 os << "[generating bytecode for function: " << info->GetDebugName().get() 145 os << "[generating bytecode for function: " << info->GetDebugName().get()
145 << "]" << std::endl 146 << "]" << std::endl
146 << std::flush; 147 << std::flush;
147 } 148 }
148 149
149 #ifdef DEBUG 150 #ifdef DEBUG
(...skipping 2025 matching lines...) Expand 10 before | Expand all | Expand 10 after
2175 __ StoreObjectField(generator, JSGeneratorObject::kContinuationOffset, 2176 __ StoreObjectField(generator, JSGeneratorObject::kContinuationOffset,
2176 __ SmiTag(new_state)); 2177 __ SmiTag(new_state));
2177 __ SetAccumulator(old_state); 2178 __ SetAccumulator(old_state);
2178 2179
2179 __ Dispatch(); 2180 __ Dispatch();
2180 } 2181 }
2181 2182
2182 } // namespace interpreter 2183 } // namespace interpreter
2183 } // namespace internal 2184 } // namespace internal
2184 } // namespace v8 2185 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698