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

Unified Diff: src/interpreter/interpreter.h

Issue 2122183002: [Interpreter] Collect type feedback for calls in the bytecode handler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixed few comments. Created 4 years, 5 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 2007748dfb3833c8e8dba55d0b333bba132e78bd..e54342dc6f56dc37577fb6bf1ff679b818119682 100644
--- a/src/interpreter/interpreter.h
+++ b/src/interpreter/interpreter.h
@@ -102,6 +102,10 @@ class Interpreter {
// Generates code to perform a JS call.
void DoJSCall(InterpreterAssembler* assembler, TailCallMode tail_call_mode);
+ // Generates code to perform a JS call that collects type feedback.
+ void DoJSCallWithFeedback(InterpreterAssembler* assembler,
+ TailCallMode tail_call_mode);
+
// Generates code to perform a runtime call.
void DoCallRuntimeCommon(InterpreterAssembler* assembler);

Powered by Google App Engine
This is Rietveld 408576698