Chromium Code Reviews

Side by Side Diff: src/arm/codegen-arm.cc

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Limit to pre-age patch. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
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 820 matching lines...)
831 // The sequence of instructions that is patched out for aging code is the 831 // The sequence of instructions that is patched out for aging code is the
832 // following boilerplate stack-building prologue that is found in FUNCTIONS 832 // following boilerplate stack-building prologue that is found in FUNCTIONS
833 static bool initialized = false; 833 static bool initialized = false;
834 static uint32_t sequence[kNoCodeAgeSequenceLength]; 834 static uint32_t sequence[kNoCodeAgeSequenceLength];
835 byte* byte_sequence = reinterpret_cast<byte*>(sequence); 835 byte* byte_sequence = reinterpret_cast<byte*>(sequence);
836 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize; 836 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize;
837 if (!initialized) { 837 if (!initialized) {
838 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength); 838 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength);
839 PredictableCodeSizeScope scope(patcher.masm(), *length); 839 PredictableCodeSizeScope scope(patcher.masm(), *length);
840 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit()); 840 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
841 patcher.masm()->nop(ip.code()); 841 patcher.masm()->nop(kNoAgeCodeNopType);
842 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize)); 842 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize));
843 initialized = true; 843 initialized = true;
844 } 844 }
845 return byte_sequence;
846 }
847
848
849 static byte* GetPreAgedCodeAgeSequence(uint32_t* length) {
850 // If code is "pre-aged" then this sequence of instructions is found in the
851 // boilerplate stack-building prologue that is found in FUNCTIONS, and is
852 // patched out for code aging.
853 static bool initialized = false;
854 static uint32_t sequence[kNoCodeAgeSequenceLength];
855 byte* byte_sequence = reinterpret_cast<byte*>(sequence);
856 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize;
857 if (!initialized) {
858 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength);
859 PredictableCodeSizeScope scope(patcher.masm(), *length);
860 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
861 patcher.masm()->nop(kPreAgeCodeNopType);
862 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize));
863 initialized = true;
864 }
845 return byte_sequence; 865 return byte_sequence;
846 } 866 }
847 867
848 868
849 bool Code::IsYoungSequence(byte* sequence) { 869 bool Code::IsYoungSequence(byte* sequence) {
850 uint32_t young_length; 870 uint32_t young_length;
851 byte* young_sequence = GetNoCodeAgeSequence(&young_length); 871 byte* young_sequence = GetNoCodeAgeSequence(&young_length);
852 bool result = !memcmp(sequence, young_sequence, young_length); 872 bool result = !memcmp(sequence, young_sequence, young_length);
853 ASSERT(result || 873 ASSERT(result ||
854 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction); 874 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction ||
875 IsPreAgedSequence(sequence));
855 return result; 876 return result;
856 } 877 }
857 878
879
880 bool Code::IsPreAgedSequence(byte* sequence) {
881 uint32_t pre_aged_length;
882 byte* pre_aged_sequence = GetPreAgedCodeAgeSequence(&pre_aged_length);
883 bool result = !memcmp(sequence, pre_aged_sequence, pre_aged_length);
884 ASSERT(result ||
885 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction ||
886 IsYoungSequence(sequence));
887 return result;
888 }
889
858 890
859 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, 891 void Code::GetCodeAgeAndParity(byte* sequence, Age* age,
860 MarkingParity* parity) { 892 MarkingParity* parity) {
861 if (IsYoungSequence(sequence)) { 893 if (IsYoungSequence(sequence)) {
862 *age = kNoAge; 894 *age = kNoAge;
863 *parity = NO_MARKING_PARITY; 895 *parity = NO_MARKING_PARITY;
896 } else if (IsPreAgedSequence(sequence)) {
897 *age = kPreAgedCodeAge;
898 *parity = NO_MARKING_PARITY;
864 } else { 899 } else {
865 Address target_address = Memory::Address_at( 900 Address target_address = Memory::Address_at(
866 sequence + Assembler::kInstrSize * (kNoCodeAgeSequenceLength - 1)); 901 sequence + Assembler::kInstrSize * (kNoCodeAgeSequenceLength - 1));
867 Code* stub = GetCodeFromTargetAddress(target_address); 902 Code* stub = GetCodeFromTargetAddress(target_address);
868 GetCodeAgeAndParity(stub, age, parity); 903 GetCodeAgeAndParity(stub, age, parity);
869 } 904 }
870 } 905 }
871 906
872 907
873 void Code::PatchPlatformCodeAge(Isolate* isolate, 908 void Code::PatchPlatformCodeAge(Isolate* isolate,
(...skipping 11 matching lines...)
885 patcher.masm()->add(r0, pc, Operand(-8)); 920 patcher.masm()->add(r0, pc, Operand(-8));
886 patcher.masm()->ldr(pc, MemOperand(pc, -4)); 921 patcher.masm()->ldr(pc, MemOperand(pc, -4));
887 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start())); 922 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start()));
888 } 923 }
889 } 924 }
890 925
891 926
892 } } // namespace v8::internal 927 } } // namespace v8::internal
893 928
894 #endif // V8_TARGET_ARCH_ARM 929 #endif // V8_TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine