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

Unified Diff: src/compiler/frame.cc

Issue 1843143002: [turbofan] CodeGenerator: Frame setup refactoring (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/frame.cc
diff --git a/src/compiler/frame.cc b/src/compiler/frame.cc
index 3d93e1528f503037b5dd54941e9caf97a91a00c4..9eab2b9fb5178c175f637afc71f28094aaaa18e6 100644
--- a/src/compiler/frame.cc
+++ b/src/compiler/frame.cc
@@ -16,6 +16,7 @@ Frame::Frame(int fixed_frame_size_in_slots, const CallDescriptor* descriptor)
: frame_slot_count_(fixed_frame_size_in_slots),
callee_saved_slot_count_(0),
spill_slot_count_(0),
+ stack_shrink_slots_(0),
allocated_registers_(nullptr),
allocated_double_registers_(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698