Chromium Code Reviews

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 Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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));
}

Powered by Google App Engine