| Index: src/compiler/x64/code-generator-x64.cc
|
| diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc
|
| index 8fac455aa35d7901eaeb551c330c4181a7666034..612c5b3504e0bf5634d45c9dafe28b63e6f6e92e 100644
|
| --- a/src/compiler/x64/code-generator-x64.cc
|
| +++ b/src/compiler/x64/code-generator-x64.cc
|
| @@ -49,8 +49,8 @@ class X64OperandConverter : public InstructionOperandConverter {
|
|
|
| Operand ToOperand(InstructionOperand* op, int extra = 0) {
|
| DCHECK(op->IsStackSlot() || op->IsDoubleStackSlot());
|
| - FrameOffset offset =
|
| - linkage()->GetFrameOffset(AllocatedOperand::cast(op)->index(), frame());
|
| + FrameOffset offset = linkage()->GetFrameOffset(
|
| + AllocatedOperand::cast(op)->index(), frame_access_state());
|
| return Operand(offset.from_stack_pointer() ? rsp : rbp,
|
| offset.offset() + extra);
|
| }
|
| @@ -578,12 +578,10 @@ void CodeGenerator::AssembleDeconstructActivationRecord(int stack_param_delta) {
|
| if (sp_slot_delta > 0) {
|
| __ addq(rsp, Immediate(sp_slot_delta * kPointerSize));
|
| }
|
| - CallDescriptor* descriptor = linkage()->GetIncomingDescriptor();
|
| - int spill_slots = frame()->GetSpillSlotCount();
|
| - bool has_frame = descriptor->IsJSFunctionCall() || spill_slots > 0;
|
| - if (has_frame) {
|
| + if (frame()->needs_frame()) {
|
| __ popq(rbp);
|
| }
|
| + frame_access_state()->UseDefaultFrameAccess();
|
| }
|
|
|
|
|
| @@ -591,7 +589,9 @@ void CodeGenerator::AssemblePrepareTailCall(int stack_param_delta) {
|
| int sp_slot_delta = TailCallFrameStackSlotDelta(stack_param_delta);
|
| if (sp_slot_delta < 0) {
|
| __ subq(rsp, Immediate(-sp_slot_delta * kPointerSize));
|
| + frame_access_state()->IncreaseSPDelta(-sp_slot_delta);
|
| }
|
| + frame_access_state()->UseSPToAccessFrame();
|
| }
|
|
|
|
|
| @@ -611,6 +611,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ call(reg);
|
| }
|
| RecordCallPosition(instr);
|
| + frame_access_state()->ClearSPDelta();
|
| break;
|
| }
|
| case kArchTailCallCodeObject: {
|
| @@ -624,6 +625,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ addp(reg, Immediate(Code::kHeaderSize - kHeapObjectTag));
|
| __ jmp(reg);
|
| }
|
| + frame_access_state()->ClearSPDelta();
|
| break;
|
| }
|
| case kArchCallJSFunction: {
|
| @@ -635,6 +637,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ Assert(equal, kWrongFunctionContext);
|
| }
|
| __ Call(FieldOperand(func, JSFunction::kCodeEntryOffset));
|
| + frame_access_state()->ClearSPDelta();
|
| RecordCallPosition(instr);
|
| break;
|
| }
|
| @@ -648,6 +651,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| int stack_param_delta = i.InputInt32(instr->InputCount() - 1);
|
| AssembleDeconstructActivationRecord(stack_param_delta);
|
| __ jmp(FieldOperand(func, JSFunction::kCodeEntryOffset));
|
| + frame_access_state()->ClearSPDelta();
|
| break;
|
| }
|
| case kArchLazyBailout: {
|
| @@ -656,6 +660,8 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| break;
|
| }
|
| case kArchPrepareCallCFunction: {
|
| + // Frame alignment requires using FP-relative frame addressing.
|
| + frame_access_state()->UseFPToAccessFrame();
|
| int const num_parameters = MiscField::decode(instr->opcode());
|
| __ PrepareCallCFunction(num_parameters);
|
| break;
|
| @@ -672,6 +678,8 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| Register func = i.InputRegister(0);
|
| __ CallCFunction(func, num_parameters);
|
| }
|
| + frame_access_state()->UseDefaultFrameAccess();
|
| + frame_access_state()->ClearSPDelta();
|
| break;
|
| }
|
| case kArchJmp:
|
| @@ -1435,15 +1443,19 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| case kX64Push:
|
| if (HasImmediateInput(instr, 0)) {
|
| __ pushq(i.InputImmediate(0));
|
| + frame_access_state()->IncreaseSPDelta(1);
|
| } else {
|
| if (instr->InputAt(0)->IsRegister()) {
|
| __ pushq(i.InputRegister(0));
|
| + frame_access_state()->IncreaseSPDelta(1);
|
| } else if (instr->InputAt(0)->IsDoubleRegister()) {
|
| // TODO(titzer): use another machine instruction?
|
| __ subq(rsp, Immediate(kDoubleSize));
|
| + frame_access_state()->IncreaseSPDelta(kDoubleSize / kPointerSize);
|
| __ Movsd(Operand(rsp, 0), i.InputDoubleRegister(0));
|
| } else {
|
| __ pushq(i.InputOperand(0));
|
| + frame_access_state()->IncreaseSPDelta(1);
|
| }
|
| }
|
| break;
|
| @@ -1682,17 +1694,18 @@ static const int kQuadWordSize = 16;
|
|
|
| void CodeGenerator::AssemblePrologue() {
|
| CallDescriptor* descriptor = linkage()->GetIncomingDescriptor();
|
| - if (descriptor->kind() == CallDescriptor::kCallAddress) {
|
| + if (descriptor->IsCFunctionCall()) {
|
| __ pushq(rbp);
|
| __ movq(rbp, rsp);
|
| } else if (descriptor->IsJSFunctionCall()) {
|
| CompilationInfo* info = this->info();
|
| __ Prologue(info->IsCodePreAgingActive());
|
| - } else if (needs_frame_) {
|
| + } else if (frame()->needs_frame()) {
|
| __ StubPrologue();
|
| } else {
|
| frame()->SetElidedFrameSizeInSlots(kPCOnStackSize / kPointerSize);
|
| }
|
| + frame_access_state()->UseDefaultFrameAccess();
|
|
|
| int stack_shrink_slots = frame()->GetSpillSlotCount();
|
| if (info()->is_osr()) {
|
| @@ -1774,10 +1787,10 @@ void CodeGenerator::AssembleReturn() {
|
| __ addp(rsp, Immediate(stack_size));
|
| }
|
|
|
| - if (descriptor->kind() == CallDescriptor::kCallAddress) {
|
| + if (descriptor->IsCFunctionCall()) {
|
| __ movq(rsp, rbp); // Move stack pointer back to frame pointer.
|
| __ popq(rbp); // Pop caller's frame pointer.
|
| - } else if (descriptor->IsJSFunctionCall() || needs_frame_) {
|
| + } else if (frame()->needs_frame()) {
|
| // Canonicalize JSFunction return sites for now.
|
| if (return_label_.is_bound()) {
|
| __ jmp(&return_label_);
|
|
|