Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

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: Reupload due to weird codereview site error Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 // The sequence of instructions that is patched out for aging code is the 840 // The sequence of instructions that is patched out for aging code is the
841 // following boilerplate stack-building prologue that is found in FUNCTIONS 841 // following boilerplate stack-building prologue that is found in FUNCTIONS
842 static bool initialized = false; 842 static bool initialized = false;
843 static uint32_t sequence[kNoCodeAgeSequenceLength]; 843 static uint32_t sequence[kNoCodeAgeSequenceLength];
844 byte* byte_sequence = reinterpret_cast<byte*>(sequence); 844 byte* byte_sequence = reinterpret_cast<byte*>(sequence);
845 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize; 845 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize;
846 if (!initialized) { 846 if (!initialized) {
847 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength); 847 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength);
848 PredictableCodeSizeScope scope(patcher.masm(), *length); 848 PredictableCodeSizeScope scope(patcher.masm(), *length);
849 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit()); 849 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
850 patcher.masm()->nop(ip.code()); 850 patcher.masm()->nop(kNoAgeCodeNopType);
851 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize)); 851 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize));
852 initialized = true; 852 initialized = true;
853 } 853 }
854 return byte_sequence;
855 }
856
857
858 static byte* GetPreAgedCodeAgeSequence(uint32_t* length) {
859 // If code is "pre-aged" then this sequence of instructions is found in the
860 // boilerplate stack-building prologue that is found in FUNCTIONS, and is
861 // patched out for code aging.
862 static bool initialized = false;
863 static uint32_t sequence[kNoCodeAgeSequenceLength];
864 byte* byte_sequence = reinterpret_cast<byte*>(sequence);
865 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize;
866 if (!initialized) {
867 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength);
868 PredictableCodeSizeScope scope(patcher.masm(), *length);
869 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
870 patcher.masm()->nop(kPreAgeCodeNopType);
871 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize));
872 initialized = true;
873 }
854 return byte_sequence; 874 return byte_sequence;
855 } 875 }
856 876
857 877
858 bool Code::IsYoungSequence(byte* sequence) { 878 bool Code::IsYoungSequence(byte* sequence) {
859 uint32_t young_length; 879 uint32_t young_length;
860 byte* young_sequence = GetNoCodeAgeSequence(&young_length); 880 byte* young_sequence = GetNoCodeAgeSequence(&young_length);
861 bool result = !memcmp(sequence, young_sequence, young_length); 881 bool result = !memcmp(sequence, young_sequence, young_length);
862 ASSERT(result || 882 ASSERT(result ||
863 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction); 883 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction ||
884 IsPreAgedSequence(sequence));
864 return result; 885 return result;
865 } 886 }
866 887
888
889 bool Code::IsPreAgedSequence(byte* sequence) {
890 uint32_t pre_aged_length;
891 byte* pre_aged_sequence = GetPreAgedCodeAgeSequence(&pre_aged_length);
892 bool result = !memcmp(sequence, pre_aged_sequence, pre_aged_length);
893 ASSERT(result ||
894 Memory::uint32_at(sequence) == kCodeAgePatchFirstInstruction ||
895 IsYoungSequence(sequence));
896 return result;
897 }
898
867 899
868 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, 900 void Code::GetCodeAgeAndParity(byte* sequence, Age* age,
869 MarkingParity* parity) { 901 MarkingParity* parity) {
870 if (IsYoungSequence(sequence)) { 902 if (IsYoungSequence(sequence)) {
871 *age = kNoAge; 903 *age = kNoAge;
872 *parity = NO_MARKING_PARITY; 904 *parity = NO_MARKING_PARITY;
905 } else if (IsPreAgedSequence(sequence)) {
906 *age = kPreAgedCodeAge;
907 *parity = NO_MARKING_PARITY;
873 } else { 908 } else {
874 Address target_address = Memory::Address_at( 909 Address target_address = Memory::Address_at(
875 sequence + Assembler::kInstrSize * (kNoCodeAgeSequenceLength - 1)); 910 sequence + Assembler::kInstrSize * (kNoCodeAgeSequenceLength - 1));
876 Code* stub = GetCodeFromTargetAddress(target_address); 911 Code* stub = GetCodeFromTargetAddress(target_address);
877 GetCodeAgeAndParity(stub, age, parity); 912 GetCodeAgeAndParity(stub, age, parity);
878 } 913 }
879 } 914 }
880 915
881 916
882 void Code::PatchPlatformCodeAge(byte* sequence, 917 void Code::PatchPlatformCodeAge(byte* sequence,
(...skipping 10 matching lines...) Expand all
893 patcher.masm()->add(r0, pc, Operand(-8)); 928 patcher.masm()->add(r0, pc, Operand(-8));
894 patcher.masm()->ldr(pc, MemOperand(pc, -4)); 929 patcher.masm()->ldr(pc, MemOperand(pc, -4));
895 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start())); 930 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start()));
896 } 931 }
897 } 932 }
898 933
899 934
900 } } // namespace v8::internal 935 } } // namespace v8::internal
901 936
902 #endif // V8_TARGET_ARCH_ARM 937 #endif // V8_TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698