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

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

Issue 1403363004: [turbofan] Lower mapped arguments objects in inline frame. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comment. Created 5 years, 2 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/compiler/js-graph.h ('k') | src/compiler/js-typed-lowering.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-graph.cc
diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc
index a2ea092e126fb2f679372bacdc0e5b530c10d3f5..782236fe0c0c940ff3817d639e9e260e823c42b4 100644
--- a/src/compiler/js-graph.cc
+++ b/src/compiler/js-graph.cc
@@ -30,6 +30,12 @@ Node* JSGraph::CEntryStubConstant(int result_size) {
}
+Node* JSGraph::EmptyFixedArrayConstant() {
+ return CACHED(kEmptyFixedArrayConstant,
+ ImmovableHeapConstant(factory()->empty_fixed_array()));
+}
+
+
Node* JSGraph::UndefinedConstant() {
return CACHED(kUndefinedConstant,
ImmovableHeapConstant(factory()->undefined_value()));
« no previous file with comments | « src/compiler/js-graph.h ('k') | src/compiler/js-typed-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698