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

Unified Diff: src/code-factory.cc

Issue 1688283003: [Interpreter] Implements calls through CallICStub in the interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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 fb719a393069d5c9e3c1d542db4e20acd5ca14d2..da4d8af80b59d591b506495c1e18956eebc7954a 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -360,12 +360,17 @@ Callable CodeFactory::ConstructFunction(Isolate* isolate) {
// static
+Callable CodeFactory::InterpreterPushArgsAndCallIC(Isolate* isolate) {
+ return Callable(isolate->builtins()->InterpreterPushArgsAndCallIC(),
+ InterpreterPushArgsAndCallICDescriptor(isolate));
+}
+
+// static
Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate) {
return Callable(isolate->builtins()->InterpreterPushArgsAndCall(),
InterpreterPushArgsAndCallDescriptor(isolate));
}
-
// static
Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) {
return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(),

Powered by Google App Engine
This is Rietveld 408576698