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

Unified Diff: src/code-factory.cc

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: updated cctest.status to mark the tests fail with ignition. 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
« no previous file with comments | « src/code-factory.h ('k') | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 21033c50d513489a098fc8edfd93d4b6a25b8d23..96b87fe561a23a3ec1963185fd14c38d53d91171 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -554,10 +554,11 @@ Callable CodeFactory::HasProperty(Isolate* isolate) {
// static
Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate,
- TailCallMode tail_call_mode) {
- return Callable(
- isolate->builtins()->InterpreterPushArgsAndCall(tail_call_mode),
- InterpreterPushArgsAndCallDescriptor(isolate));
+ TailCallMode tail_call_mode,
+ CallableType function_type) {
+ return Callable(isolate->builtins()->InterpreterPushArgsAndCall(
+ tail_call_mode, function_type),
+ InterpreterPushArgsAndCallDescriptor(isolate));
}
« no previous file with comments | « src/code-factory.h ('k') | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698