OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 #include "src/compiler/code-generator-impl.h" | 6 #include "src/compiler/code-generator-impl.h" |
7 #include "src/compiler/gap-resolver.h" | 7 #include "src/compiler/gap-resolver.h" |
8 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
9 #include "src/compiler/osr.h" | 9 #include "src/compiler/osr.h" |
10 #include "src/mips/macro-assembler-mips.h" | 10 #include "src/mips/macro-assembler-mips.h" |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 __ or_(at, at, kScratchReg2); \ | 441 __ or_(at, at, kScratchReg2); \ |
442 __ Branch(USE_DELAY_SLOT, ool->entry(), eq, at, Operand(zero_reg)); \ | 442 __ Branch(USE_DELAY_SLOT, ool->entry(), eq, at, Operand(zero_reg)); \ |
443 __ cvt_d_l(i.OutputDoubleRegister(), i.OutputDoubleRegister()); \ | 443 __ cvt_d_l(i.OutputDoubleRegister(), i.OutputDoubleRegister()); \ |
444 __ bind(ool->exit()); \ | 444 __ bind(ool->exit()); \ |
445 __ bind(&done); \ | 445 __ bind(&done); \ |
446 } while (0) | 446 } while (0) |
447 | 447 |
448 | 448 |
449 void CodeGenerator::AssembleDeconstructActivationRecord(int stack_param_delta) { | 449 void CodeGenerator::AssembleDeconstructActivationRecord(int stack_param_delta) { |
450 CallDescriptor* descriptor = linkage()->GetIncomingDescriptor(); | 450 CallDescriptor* descriptor = linkage()->GetIncomingDescriptor(); |
451 int stack_slots = frame()->GetSpillSlotCount(); | 451 int spill_slots = frame()->GetSpillSlotCount(); |
452 int stack_pointer_delta = 0; | 452 bool has_frame = descriptor->IsJSFunctionCall() || spill_slots > 0; |
453 if (descriptor->IsJSFunctionCall() || stack_slots > 0) { | 453 if (has_frame) { |
454 __ mov(sp, fp); | 454 if (stack_param_delta != 0) { |
455 __ lw(fp, MemOperand(sp, 0 * kPointerSize)); | 455 int total_discarded_slots = frame()->GetTotalFrameSlotCount(); |
456 __ lw(ra, MemOperand(sp, 1 * kPointerSize)); | 456 // Leave the PC and saved frame pointer on the stack. |
457 stack_pointer_delta = 2 * kPointerSize; | 457 total_discarded_slots -= |
458 } | 458 StandardFrameConstants::kFixedFrameSizeFromFp / kPointerSize; |
459 if (stack_param_delta < 0) { | 459 // Discard only slots that won't be used by new parameters. |
460 stack_pointer_delta += -stack_param_delta * kPointerSize; | 460 total_discarded_slots -= stack_param_delta; |
461 } | 461 if (total_discarded_slots > 0) { |
462 if (stack_pointer_delta != 0) { | 462 __ addiu(sp, sp, total_discarded_slots * kPointerSize); |
463 __ addiu(sp, sp, stack_pointer_delta); | 463 } |
| 464 } else { |
| 465 __ mov(sp, fp); |
| 466 } |
| 467 __ Pop(ra, fp); |
464 } | 468 } |
465 } | 469 } |
466 | 470 |
| 471 |
| 472 void CodeGenerator::AssemblePrepareTailCall(int stack_param_delta) { |
| 473 if (stack_param_delta > 0) { |
| 474 int total_discarded_slots = frame()->GetTotalFrameSlotCount(); |
| 475 // Leave the PC and saved frame pointer on the stack. |
| 476 total_discarded_slots -= |
| 477 StandardFrameConstants::kFixedFrameSizeFromFp / kPointerSize; |
| 478 // Discard only slots that won't be used by new parameters. |
| 479 total_discarded_slots -= stack_param_delta; |
| 480 if (total_discarded_slots < 0) { |
| 481 __ Subu(sp, sp, Operand(-total_discarded_slots * kPointerSize)); |
| 482 } |
| 483 } |
| 484 } |
| 485 |
467 | 486 |
468 // Assembles an instruction after register allocation, producing machine code. | 487 // Assembles an instruction after register allocation, producing machine code. |
469 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { | 488 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
470 MipsOperandConverter i(this, instr); | 489 MipsOperandConverter i(this, instr); |
471 InstructionCode opcode = instr->opcode(); | 490 InstructionCode opcode = instr->opcode(); |
472 | 491 |
473 switch (ArchOpcodeField::decode(opcode)) { | 492 switch (ArchOpcodeField::decode(opcode)) { |
474 case kArchCallCodeObject: { | 493 case kArchCallCodeObject: { |
475 EnsureSpaceForLazyDeopt(); | 494 EnsureSpaceForLazyDeopt(); |
476 if (instr->InputAt(0)->IsImmediate()) { | 495 if (instr->InputAt(0)->IsImmediate()) { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 case kArchLazyBailout: { | 545 case kArchLazyBailout: { |
527 EnsureSpaceForLazyDeopt(); | 546 EnsureSpaceForLazyDeopt(); |
528 RecordCallPosition(instr); | 547 RecordCallPosition(instr); |
529 break; | 548 break; |
530 } | 549 } |
531 case kArchPrepareCallCFunction: { | 550 case kArchPrepareCallCFunction: { |
532 int const num_parameters = MiscField::decode(instr->opcode()); | 551 int const num_parameters = MiscField::decode(instr->opcode()); |
533 __ PrepareCallCFunction(num_parameters, kScratchReg); | 552 __ PrepareCallCFunction(num_parameters, kScratchReg); |
534 break; | 553 break; |
535 } | 554 } |
| 555 case kArchPrepareTailCall: |
| 556 AssemblePrepareTailCall(i.InputInt32(instr->InputCount() - 1)); |
| 557 break; |
536 case kArchCallCFunction: { | 558 case kArchCallCFunction: { |
537 int const num_parameters = MiscField::decode(instr->opcode()); | 559 int const num_parameters = MiscField::decode(instr->opcode()); |
538 if (instr->InputAt(0)->IsImmediate()) { | 560 if (instr->InputAt(0)->IsImmediate()) { |
539 ExternalReference ref = i.InputExternalReference(0); | 561 ExternalReference ref = i.InputExternalReference(0); |
540 __ CallCFunction(ref, num_parameters); | 562 __ CallCFunction(ref, num_parameters); |
541 } else { | 563 } else { |
542 Register func = i.InputRegister(0); | 564 Register func = i.InputRegister(0); |
543 __ CallCFunction(func, num_parameters); | 565 __ CallCFunction(func, num_parameters); |
544 } | 566 } |
545 break; | 567 break; |
(...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1580 padding_size -= v8::internal::Assembler::kInstrSize; | 1602 padding_size -= v8::internal::Assembler::kInstrSize; |
1581 } | 1603 } |
1582 } | 1604 } |
1583 } | 1605 } |
1584 | 1606 |
1585 #undef __ | 1607 #undef __ |
1586 | 1608 |
1587 } // namespace compiler | 1609 } // namespace compiler |
1588 } // namespace internal | 1610 } // namespace internal |
1589 } // namespace v8 | 1611 } // namespace v8 |
OLD | NEW |