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

Unified Diff: src/code-factory.cc

Issue 2307903002: [Interpreter] Collect allocation site feedback in call bytecode handler. (Closed)
Patch Set: ia32, arm and arm64 ports. Created 4 years, 3 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 654c192fc773db9d346118541ddd526139de0d6b..1fcd9f75482144ec06a32a7c308f470d9d15f048 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -602,6 +602,12 @@ Callable CodeFactory::InterpreterPushArgsAndConstruct(
}
// static
+Callable CodeFactory::InterpreterPushArgsAndConstructArray(Isolate* isolate) {
+ return Callable(isolate->builtins()->InterpreterPushArgsAndConstructArray(),
+ InterpreterPushArgsAndConstructArrayDescriptor(isolate));
+}
+
+// static
Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
// Note: If we ever use fpregs in the interpreter then we will need to
// save fpregs too.

Powered by Google App Engine
This is Rietveld 408576698