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

Unified Diff: src/interpreter/interpreter.h

Issue 1640213002: [Interpreter] Add option to trace bytecode execution. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compile error Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: src/interpreter/interpreter.h
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h
index 6075df835f30d6d7f4332d07fcbe0cd8c5ba2d75..290861a75cfbb638719bc75d5cd23b0a1e5897e4 100644
--- a/src/interpreter/interpreter.h
+++ b/src/interpreter/interpreter.h
@@ -115,6 +115,10 @@ class Interpreter {
void DoStoreLookupSlot(LanguageMode language_mode,
compiler::InterpreterAssembler* assembler);
+ // Generates code to trace the currently executing bytecode.
+ void DoTraceBytecodeEntry(compiler::InterpreterAssembler* assembler);
+ void DoTraceBytecodeExit(compiler::InterpreterAssembler* assembler);
Michael Starzinger 2016/01/28 12:07:06 nit: Doesn't seem to be used nor implemented. Look
rmcilroy 2016/01/28 16:39:51 Yup, leftover, thanks. Done.
+
bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table);
Isolate* isolate_;

Powered by Google App Engine
This is Rietveld 408576698