Index: src/compiler/ia32/code-generator-ia32.cc |
diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc |
index c471465101fe12fc4ecd86b40a818ddcf32df958..82b003a77adb6decfa76fbf503b307847ead86de 100644 |
--- a/src/compiler/ia32/code-generator-ia32.cc |
+++ b/src/compiler/ia32/code-generator-ia32.cc |
@@ -367,8 +367,6 @@ void CodeGenerator::AssembleDeconstructFrame() { |
__ pop(ebp); |
} |
-void CodeGenerator::AssembleSetupStackPointer() {} |
- |
void CodeGenerator::AssembleDeconstructActivationRecord(int stack_param_delta) { |
int sp_slot_delta = TailCallFrameStackSlotDelta(stack_param_delta); |
if (sp_slot_delta > 0) { |
@@ -1635,8 +1633,21 @@ void CodeGenerator::AssembleDeoptimizerCall( |
// | RET | args | caller frame | |
// ^ esp ^ ebp |
+void CodeGenerator::FinishFrame(Frame* frame) { |
+ CallDescriptor* descriptor = linkage()->GetIncomingDescriptor(); |
+ const RegList saves = descriptor->CalleeSavedRegisters(); |
+ if (saves != 0) { // Save callee-saved registers. |
+ DCHECK(!info()->is_osr()); |
+ int pushed = 0; |
+ for (int i = Register::kNumRegisters - 1; i >= 0; i--) { |
+ if (!((1 << i) & saves)) continue; |
+ ++pushed; |
+ } |
+ frame->AllocateSavedCalleeRegisterSlots(pushed); |
+ } |
+} |
-void CodeGenerator::AssemblePrologue() { |
+void CodeGenerator::AssembleConstructFrame() { |
CallDescriptor* descriptor = linkage()->GetIncomingDescriptor(); |
if (frame_access_state()->has_frame()) { |
if (descriptor->IsCFunctionCall()) { |
@@ -1648,7 +1659,9 @@ void CodeGenerator::AssemblePrologue() { |
__ StubPrologue(info()->GetOutputStackFrameType()); |
} |
} |
- int stack_shrink_slots = frame()->GetSpillSlotCount(); |
+ |
+ int shrink_slots = frame()->GetSpillSlotCount(); |
+ |
if (info()->is_osr()) { |
// TurboFan OSR-compiled functions cannot be entered directly. |
__ Abort(kShouldNotDirectlyEnterOsrFunction); |
@@ -1659,12 +1672,12 @@ void CodeGenerator::AssemblePrologue() { |
// remaining stack slots. |
if (FLAG_code_comments) __ RecordComment("-- OSR entrypoint --"); |
osr_pc_offset_ = __ pc_offset(); |
- stack_shrink_slots -= OsrHelper(info()).UnoptimizedFrameSlots(); |
+ shrink_slots -= OsrHelper(info()).UnoptimizedFrameSlots(); |
} |
const RegList saves = descriptor->CalleeSavedRegisters(); |
- if (stack_shrink_slots > 0) { |
- __ sub(esp, Immediate(stack_shrink_slots * kPointerSize)); |
+ if (shrink_slots > 0) { |
+ __ sub(esp, Immediate(shrink_slots * kPointerSize)); |
} |
if (saves != 0) { // Save callee-saved registers. |
@@ -1675,7 +1688,6 @@ void CodeGenerator::AssemblePrologue() { |
__ push(Register::from_code(i)); |
++pushed; |
} |
- frame()->AllocateSavedCalleeRegisterSlots(pushed); |
} |
} |