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

Unified Diff: src/compiler/js-graph.cc

Issue 2259883002: [turbofan] Inline calls to CPP builtins (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@builtin-descriptors
Patch Set: Comments and API builtins 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/compiler/js-graph.cc
diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc
index f6afc77dddb5ab7dbc639de5604006f590785101..e4d9f9a5de3c5a82fa4818c42e4a004940ea2458 100644
--- a/src/compiler/js-graph.cc
+++ b/src/compiler/js-graph.cc
@@ -37,6 +37,12 @@ Node* JSGraph::CEntryStubConstant(int result_size) {
return HeapConstant(CEntryStub(isolate(), result_size).GetCode());
}
+Node* JSGraph::CEntryStubConstant(int result_size, SaveFPRegsMode save_doubles,
+ ArgvMode argv_mode, bool builtin_exit_frame) {
Jarin 2016/08/19 09:01:10 The JSGraph class should only have factories that
jgruber 2016/08/19 11:17:07 Removed the newly added CEntryStubConstant and add
+ CEntryStub stub(isolate(), result_size, save_doubles, argv_mode,
+ builtin_exit_frame);
+ return HeapConstant(stub.GetCode());
+}
Node* JSGraph::EmptyFixedArrayConstant() {
return CACHED(kEmptyFixedArrayConstant,

Powered by Google App Engine
This is Rietveld 408576698