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

Unified Diff: src/code-factory.cc

Issue 2307903002: [Interpreter] Collect allocation site feedback in call bytecode handler. (Closed)
Patch Set: Fixed a bug in mips implementation. 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
« no previous file with comments | « src/code-factory.h ('k') | src/ia32/interface-descriptors-ia32.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 06bccf23faada7b8aabca37276fcb4bfc9c18900..64f662e268bd16409c489befea97aa753d6fd779 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -606,6 +606,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.
« no previous file with comments | « src/code-factory.h ('k') | src/ia32/interface-descriptors-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698