OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 | 6 |
7 #include "src/address-map.h" | 7 #include "src/address-map.h" |
8 #include "src/compiler/code-generator-impl.h" | 8 #include "src/compiler/code-generator-impl.h" |
9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 // Emit a code line info recording stop event. | 202 // Emit a code line info recording stop event. |
203 void* line_info = recorder->DetachJITHandlerData(); | 203 void* line_info = recorder->DetachJITHandlerData(); |
204 LOG_CODE_EVENT(isolate(), CodeEndLinePosInfoRecordEvent(*result, line_info)); | 204 LOG_CODE_EVENT(isolate(), CodeEndLinePosInfoRecordEvent(*result, line_info)); |
205 | 205 |
206 return result; | 206 return result; |
207 } | 207 } |
208 | 208 |
209 | 209 |
210 bool CodeGenerator::IsNextInAssemblyOrder(RpoNumber block) const { | 210 bool CodeGenerator::IsNextInAssemblyOrder(RpoNumber block) const { |
211 return code()->InstructionBlockAt(current_block_)->ao_number().IsNext( | 211 return code() |
212 code()->InstructionBlockAt(block)->ao_number()); | 212 ->InstructionBlockAt(current_block_) |
| 213 ->ao_number() |
| 214 .IsNext(code()->InstructionBlockAt(block)->ao_number()); |
213 } | 215 } |
214 | 216 |
215 | 217 |
216 void CodeGenerator::RecordSafepoint(ReferenceMap* references, | 218 void CodeGenerator::RecordSafepoint(ReferenceMap* references, |
217 Safepoint::Kind kind, int arguments, | 219 Safepoint::Kind kind, int arguments, |
218 Safepoint::DeoptMode deopt_mode) { | 220 Safepoint::DeoptMode deopt_mode) { |
219 Safepoint safepoint = | 221 Safepoint safepoint = |
220 safepoints()->DefineSafepoint(masm(), kind, arguments, deopt_mode); | 222 safepoints()->DefineSafepoint(masm(), kind, arguments, deopt_mode); |
221 int stackSlotToSpillSlotDelta = | 223 int stackSlotToSpillSlotDelta = |
222 frame()->GetTotalFrameSlotCount() - frame()->GetSpillSlotCount(); | 224 frame()->GetTotalFrameSlotCount() - frame()->GetSpillSlotCount(); |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 | 476 |
475 FrameStateDescriptor* CodeGenerator::GetFrameStateDescriptor( | 477 FrameStateDescriptor* CodeGenerator::GetFrameStateDescriptor( |
476 Instruction* instr, size_t frame_state_offset) { | 478 Instruction* instr, size_t frame_state_offset) { |
477 InstructionOperandConverter i(this, instr); | 479 InstructionOperandConverter i(this, instr); |
478 InstructionSequence::StateId state_id = | 480 InstructionSequence::StateId state_id = |
479 InstructionSequence::StateId::FromInt(i.InputInt32(frame_state_offset)); | 481 InstructionSequence::StateId::FromInt(i.InputInt32(frame_state_offset)); |
480 return code()->GetFrameStateDescriptor(state_id); | 482 return code()->GetFrameStateDescriptor(state_id); |
481 } | 483 } |
482 | 484 |
483 | 485 |
484 namespace { | 486 // Return number of consumed operands of instr. |
485 | 487 size_t CodeGenerator::TranslateStateValueDescriptor(StateValueDescriptor* desc, |
486 struct OperandAndType { | 488 Translation* translation, |
487 InstructionOperand* const operand; | 489 Instruction* instr, |
488 MachineType const type; | 490 size_t frame_state_offset) { |
489 }; | 491 if (desc->IsRecursive()) { |
| 492 size_t entries = 0; |
| 493 translation->BeginCapturedObject(static_cast<int>(desc->size())); |
| 494 for (size_t index = 0; index < desc->fields().size(); index++) { |
| 495 entries += |
| 496 TranslateStateValueDescriptor(&desc->fields()[index], translation, |
| 497 instr, frame_state_offset + index); |
| 498 } |
| 499 return entries; |
| 500 } else if (desc->IsDuplicate()) { |
| 501 translation->DuplicateObject(static_cast<int>(desc->id())); |
| 502 return 0; |
| 503 } else { |
| 504 DCHECK(desc->IsPlain()); |
| 505 AddTranslationForOperand(translation, instr, |
| 506 instr->InputAt(frame_state_offset), desc->type()); |
| 507 return 1; |
| 508 } |
| 509 } |
490 | 510 |
491 | 511 |
492 OperandAndType TypedOperandForFrameState(FrameStateDescriptor* descriptor, | 512 void CodeGenerator::TranslateFrameStateDescriptorOperands( |
493 Instruction* instr, | 513 FrameStateDescriptor* desc, Instruction* instr, size_t frame_state_offset, |
494 size_t frame_state_offset, | 514 OutputFrameStateCombine combine, Translation* translation) { |
495 size_t index, | 515 for (size_t index = 0; index < desc->GetSize(combine); index++) { |
496 OutputFrameStateCombine combine) { | 516 switch (combine.kind()) { |
497 DCHECK(index < descriptor->GetSize(combine)); | 517 case OutputFrameStateCombine::kPushOutput: { |
498 switch (combine.kind()) { | 518 DCHECK(combine.GetPushCount() <= instr->OutputCount()); |
499 case OutputFrameStateCombine::kPushOutput: { | 519 size_t size_without_output = |
500 DCHECK(combine.GetPushCount() <= instr->OutputCount()); | 520 desc->GetSize(OutputFrameStateCombine::Ignore()); |
501 size_t size_without_output = | 521 // If the index is past the existing stack items in values_. |
502 descriptor->GetSize(OutputFrameStateCombine::Ignore()); | 522 if (index >= size_without_output) { |
503 // If the index is past the existing stack items, return the output. | 523 // Materialize the result of the call instruction in this slot. |
504 if (index >= size_without_output) { | 524 AddTranslationForOperand(translation, instr, |
505 return {instr->OutputAt(index - size_without_output), kMachAnyTagged}; | 525 instr->OutputAt(index - size_without_output), |
| 526 kMachAnyTagged); |
| 527 continue; |
| 528 } |
| 529 break; |
506 } | 530 } |
507 break; | 531 case OutputFrameStateCombine::kPokeAt: |
| 532 // The result of the call should be placed at position |
| 533 // [index_from_top] in the stack (overwriting whatever was |
| 534 // previously there). |
| 535 size_t index_from_top = |
| 536 desc->GetSize(combine) - 1 - combine.GetOffsetToPokeAt(); |
| 537 if (index >= index_from_top && |
| 538 index < index_from_top + instr->OutputCount()) { |
| 539 AddTranslationForOperand(translation, instr, |
| 540 instr->OutputAt(index - index_from_top), |
| 541 kMachAnyTagged); |
| 542 continue; |
| 543 } |
| 544 break; |
508 } | 545 } |
509 case OutputFrameStateCombine::kPokeAt: | 546 // Add the additional fields we read during materialization. |
510 size_t index_from_top = | 547 StateValueDescriptor* value_desc = desc->GetStateValueDescriptor(); |
511 descriptor->GetSize(combine) - 1 - combine.GetOffsetToPokeAt(); | 548 frame_state_offset += |
512 if (index >= index_from_top && | 549 TranslateStateValueDescriptor(&value_desc->fields()[index], translation, |
513 index < index_from_top + instr->OutputCount()) { | 550 instr, frame_state_offset + index) - |
514 return {instr->OutputAt(index - index_from_top), kMachAnyTagged}; | 551 1; |
515 } | |
516 break; | |
517 } | 552 } |
518 return {instr->InputAt(frame_state_offset + index), | |
519 descriptor->GetType(index)}; | |
520 } | 553 } |
521 | 554 |
522 } // namespace | |
523 | |
524 | 555 |
525 void CodeGenerator::BuildTranslationForFrameStateDescriptor( | 556 void CodeGenerator::BuildTranslationForFrameStateDescriptor( |
526 FrameStateDescriptor* descriptor, Instruction* instr, | 557 FrameStateDescriptor* descriptor, Instruction* instr, |
527 Translation* translation, size_t frame_state_offset, | 558 Translation* translation, size_t frame_state_offset, |
528 OutputFrameStateCombine state_combine) { | 559 OutputFrameStateCombine state_combine) { |
529 // Outer-most state must be added to translation first. | 560 // Outer-most state must be added to translation first. |
530 if (descriptor->outer_state() != nullptr) { | 561 if (descriptor->outer_state() != nullptr) { |
531 BuildTranslationForFrameStateDescriptor(descriptor->outer_state(), instr, | 562 BuildTranslationForFrameStateDescriptor(descriptor->outer_state(), instr, |
532 translation, frame_state_offset, | 563 translation, frame_state_offset, |
533 OutputFrameStateCombine::Ignore()); | 564 OutputFrameStateCombine::Ignore()); |
(...skipping 19 matching lines...) Expand all Loading... |
553 shared_info_id, | 584 shared_info_id, |
554 static_cast<unsigned int>(descriptor->parameters_count())); | 585 static_cast<unsigned int>(descriptor->parameters_count())); |
555 break; | 586 break; |
556 case FrameStateType::kConstructStub: | 587 case FrameStateType::kConstructStub: |
557 translation->BeginConstructStubFrame( | 588 translation->BeginConstructStubFrame( |
558 shared_info_id, | 589 shared_info_id, |
559 static_cast<unsigned int>(descriptor->parameters_count())); | 590 static_cast<unsigned int>(descriptor->parameters_count())); |
560 break; | 591 break; |
561 } | 592 } |
562 | 593 |
563 for (size_t i = 0; i < descriptor->GetSize(state_combine); i++) { | 594 TranslateFrameStateDescriptorOperands(descriptor, instr, frame_state_offset, |
564 OperandAndType op = TypedOperandForFrameState( | 595 state_combine, translation); |
565 descriptor, instr, frame_state_offset, i, state_combine); | |
566 AddTranslationForOperand(translation, instr, op.operand, op.type); | |
567 } | |
568 } | 596 } |
569 | 597 |
570 | 598 |
571 int CodeGenerator::BuildTranslation(Instruction* instr, int pc_offset, | 599 int CodeGenerator::BuildTranslation(Instruction* instr, int pc_offset, |
572 size_t frame_state_offset, | 600 size_t frame_state_offset, |
573 OutputFrameStateCombine state_combine) { | 601 OutputFrameStateCombine state_combine) { |
574 FrameStateDescriptor* descriptor = | 602 FrameStateDescriptor* descriptor = |
575 GetFrameStateDescriptor(instr, frame_state_offset); | 603 GetFrameStateDescriptor(instr, frame_state_offset); |
576 frame_state_offset++; | 604 frame_state_offset++; |
577 | 605 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 : frame_(gen->frame()), masm_(gen->masm()), next_(gen->ools_) { | 717 : frame_(gen->frame()), masm_(gen->masm()), next_(gen->ools_) { |
690 gen->ools_ = this; | 718 gen->ools_ = this; |
691 } | 719 } |
692 | 720 |
693 | 721 |
694 OutOfLineCode::~OutOfLineCode() {} | 722 OutOfLineCode::~OutOfLineCode() {} |
695 | 723 |
696 } // namespace compiler | 724 } // namespace compiler |
697 } // namespace internal | 725 } // namespace internal |
698 } // namespace v8 | 726 } // namespace v8 |
OLD | NEW |