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

Unified Diff: src/code-factory.cc

Issue 2225923003: [Interpreter] Collect type feedback for 'new' in the bytecode handler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updated mjsunit.status 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 side-by-side diff with in-line comments
Download patch
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 018f21d447ea4df27188296ef9777c5f124e2949..654c192fc773db9d346118541ddd526139de0d6b 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -594,9 +594,11 @@ Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate,
}
// static
-Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) {
- return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(),
- InterpreterPushArgsAndConstructDescriptor(isolate));
+Callable CodeFactory::InterpreterPushArgsAndConstruct(
+ Isolate* isolate, CallableType function_type) {
+ return Callable(
+ isolate->builtins()->InterpreterPushArgsAndConstruct(function_type),
+ InterpreterPushArgsAndConstructDescriptor(isolate));
}
// static

Powered by Google App Engine
This is Rietveld 408576698