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

Unified Diff: src/compiler/instruction.cc

Issue 1259203002: [turbofan] Implement tail calls with differing stack parameter counts (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix bugs in frameless tail calls Created 5 years, 5 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/instruction.cc
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
index 9aebb9a17a5389d2f7c0fbb3f45715c2c137a8cf..4b6624834ca80859dd578c764a890fce4c87fc6b 100644
--- a/src/compiler/instruction.cc
+++ b/src/compiler/instruction.cc
@@ -496,10 +496,12 @@ void InstructionSequence::ComputeAssemblyOrder(InstructionBlocks* blocks) {
InstructionSequence::InstructionSequence(Isolate* isolate,
Zone* instruction_zone,
- InstructionBlocks* instruction_blocks)
+ InstructionBlocks* instruction_blocks,
+ Frame* frame)
: isolate_(isolate),
zone_(instruction_zone),
instruction_blocks_(instruction_blocks),
+ frame_(frame),
source_positions_(zone()),
block_starts_(zone()),
constants_(ConstantMap::key_compare(),

Powered by Google App Engine
This is Rietveld 408576698