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

Unified Diff: src/compiler/frame.cc

Issue 1460183002: [turbofan] Add general support for sp-based frame access (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix arm64 Created 5 years, 1 month 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/frame.cc
diff --git a/src/compiler/frame.cc b/src/compiler/frame.cc
index 7b9a797f5a4d45345233870f49a27c284569bfbf..3130b45636815e03ed0ac9d5fcab174eb34b3ed6 100644
--- a/src/compiler/frame.cc
+++ b/src/compiler/frame.cc
@@ -12,9 +12,9 @@ namespace v8 {
namespace internal {
namespace compiler {
-Frame::Frame(int fixed_frame_size_in_slots)
- : frame_slot_count_(fixed_frame_size_in_slots),
- outgoing_parameter_slot_count_(0),
+Frame::Frame(int fixed_frame_size_in_slots, bool needs_frame)
+ : needs_frame_(needs_frame),
+ frame_slot_count_(fixed_frame_size_in_slots),
callee_saved_slot_count_(0),
spill_slot_count_(0),
allocated_registers_(NULL),
« no previous file with comments | « src/compiler/frame.h ('k') | src/compiler/frame-access-state.h » ('j') | src/compiler/linkage.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698