OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 } | 590 } |
591 | 591 |
592 | 592 |
593 // nop(CODE_AGE_MARKER_NOP) | 593 // nop(CODE_AGE_MARKER_NOP) |
594 static const uint32_t kCodeAgePatchFirstInstruction = 0x00010180; | 594 static const uint32_t kCodeAgePatchFirstInstruction = 0x00010180; |
595 | 595 |
596 static byte* GetNoCodeAgeSequence(uint32_t* length) { | 596 static byte* GetNoCodeAgeSequence(uint32_t* length) { |
597 // The sequence of instructions that is patched out for aging code is the | 597 // The sequence of instructions that is patched out for aging code is the |
598 // following boilerplate stack-building prologue that is found in FUNCTIONS | 598 // following boilerplate stack-building prologue that is found in FUNCTIONS |
599 static bool initialized = false; | 599 static bool initialized = false; |
600 static uint32_t sequence[kNoCodeAgeSequenceLength]; | 600 static uint32_t sequence[kCodeAgeSequenceLength]; |
601 byte* byte_sequence = reinterpret_cast<byte*>(sequence); | 601 byte* byte_sequence = reinterpret_cast<byte*>(sequence); |
602 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize; | 602 *length = kCodeAgeSequenceLength * Assembler::kInstrSize; |
603 if (!initialized) { | 603 if (!initialized) { |
604 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength); | 604 CodePatcher patcher(byte_sequence, kCodeAgeSequenceLength); |
605 patcher.masm()->Push(ra, fp, cp, a1); | 605 patcher.masm()->Push(ra, fp, cp, a1); |
606 patcher.masm()->nop(Assembler::CODE_AGE_SEQUENCE_NOP); | 606 patcher.masm()->nop(Assembler::CODE_AGE_YOUNG_SEQUENCE_NOP); |
607 patcher.masm()->Addu(fp, sp, Operand(2 * kPointerSize)); | 607 patcher.masm()->Addu(fp, sp, Operand(2 * kPointerSize)); |
608 initialized = true; | 608 initialized = true; |
609 } | 609 } |
| 610 return byte_sequence; |
| 611 } |
| 612 |
| 613 |
| 614 static byte* GetPreAgedCodeAgeSequence(uint32_t* length) { |
| 615 // If code is "pre-aged" then this sequence of instructions is found in the |
| 616 // boilerplate stack-building prologue that is found in FUNCTIONS, and is |
| 617 // patched out for code aging. |
| 618 static bool initialized = false; |
| 619 static uint32_t sequence[kCodeAgeSequenceLength]; |
| 620 byte* byte_sequence = reinterpret_cast<byte*>(sequence); |
| 621 *length = kCodeAgeSequenceLength * Assembler::kInstrSize; |
| 622 if (!initialized) { |
| 623 CodePatcher patcher(byte_sequence, kCodeAgeSequenceLength); |
| 624 patcher.masm()->Push(ra, fp, cp, a1); |
| 625 patcher.masm()->nop(Assembler::CODE_AGE_PRE_AGED_SEQUENCE_NOP); |
| 626 patcher.masm()->Addu(fp, sp, Operand(2 * kPointerSize)); |
| 627 initialized = true; |
| 628 } |
610 return byte_sequence; | 629 return byte_sequence; |
611 } | 630 } |
612 | 631 |
613 | 632 |
614 bool Code::IsYoungSequence(byte* sequence) { | 633 bool Code::IsYoungSequence(byte* sequence) { |
615 uint32_t young_length; | 634 uint32_t young_length; |
616 byte* young_sequence = GetNoCodeAgeSequence(&young_length); | 635 byte* young_sequence = GetNoCodeAgeSequence(&young_length); |
617 bool result = !memcmp(sequence, young_sequence, young_length); | 636 bool result = !memcmp(sequence, young_sequence, young_length); |
618 ASSERT(result || | 637 ASSERT(result || |
619 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction); | 638 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction || |
| 639 IsPreAgedSequence(sequence)); |
620 return result; | 640 return result; |
621 } | 641 } |
622 | 642 |
| 643 |
| 644 bool Code::IsPreAgedSequence(byte* sequence) { |
| 645 uint32_t pre_aged_length; |
| 646 byte* pre_aged_sequence = GetPreAgedCodeAgeSequence(&pre_aged_length); |
| 647 bool result = !memcmp(sequence, pre_aged_sequence, pre_aged_length); |
| 648 ASSERT(result || |
| 649 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction || |
| 650 IsYoungSequence(sequence)); |
| 651 return result; |
| 652 } |
| 653 |
623 | 654 |
624 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, | 655 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, |
625 MarkingParity* parity) { | 656 MarkingParity* parity) { |
626 if (IsYoungSequence(sequence)) { | 657 if (IsYoungSequence(sequence)) { |
627 *age = kNoAge; | 658 *age = kNoAge; |
628 *parity = NO_MARKING_PARITY; | 659 *parity = NO_MARKING_PARITY; |
| 660 } else if (IsPreAgedSequence(sequence)) { |
| 661 *age = kPreAgedCodeAge; |
| 662 *parity = NO_MARKING_PARITY; |
629 } else { | 663 } else { |
630 Address target_address = Memory::Address_at( | 664 Address target_address = Memory::Address_at( |
631 sequence + Assembler::kInstrSize * (kNoCodeAgeSequenceLength - 1)); | 665 sequence + Assembler::kInstrSize * (kCodeAgeSequenceLength - 1)); |
632 Code* stub = GetCodeFromTargetAddress(target_address); | 666 Code* stub = GetCodeFromTargetAddress(target_address); |
633 GetCodeAgeAndParity(stub, age, parity); | 667 GetCodeAgeAndParity(stub, age, parity); |
634 } | 668 } |
635 } | 669 } |
636 | 670 |
637 | 671 |
638 void Code::PatchPlatformCodeAge(Isolate* isolate, | 672 void Code::PatchPlatformCodeAge(Isolate* isolate, |
639 byte* sequence, | 673 byte* sequence, |
640 Code::Age age, | 674 Code::Age age, |
641 MarkingParity parity) { | 675 MarkingParity parity) { |
(...skipping 18 matching lines...) Expand all Loading... |
660 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start())); | 694 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start())); |
661 } | 695 } |
662 } | 696 } |
663 | 697 |
664 | 698 |
665 #undef __ | 699 #undef __ |
666 | 700 |
667 } } // namespace v8::internal | 701 } } // namespace v8::internal |
668 | 702 |
669 #endif // V8_TARGET_ARCH_MIPS | 703 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |