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

Side by Side Diff: src/mips/assembler-mips-inl.h

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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 // Copyright (c) 1994-2006 Sun Microsystems Inc. 2 // Copyright (c) 1994-2006 Sun Microsystems Inc.
3 // All Rights Reserved. 3 // All Rights Reserved.
4 // 4 //
5 // Redistribution and use in source and binary forms, with or without 5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are 6 // modification, are permitted provided that the following conditions are
7 // met: 7 // met:
8 // 8 //
9 // - Redistributions of source code must retain the above copyright notice, 9 // - Redistributions of source code must retain the above copyright notice,
10 // this list of conditions and the following disclaimer. 10 // this list of conditions and the following disclaimer.
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 Memory::Address_at(pc_) = address; 252 Memory::Address_at(pc_) = address;
253 if (mode == UPDATE_WRITE_BARRIER && host() != NULL) { 253 if (mode == UPDATE_WRITE_BARRIER && host() != NULL) {
254 // TODO(1550) We are passing NULL as a slot because cell can never be on 254 // TODO(1550) We are passing NULL as a slot because cell can never be on
255 // evacuation candidate. 255 // evacuation candidate.
256 host()->GetHeap()->incremental_marking()->RecordWrite( 256 host()->GetHeap()->incremental_marking()->RecordWrite(
257 host(), NULL, cell); 257 host(), NULL, cell);
258 } 258 }
259 } 259 }
260 260
261 261
262 static const int kNoCodeAgeSequenceLength = 7; 262 static const int kCodeAgeSequenceLength = 7;
263 263
264 Code* RelocInfo::code_age_stub() { 264 Code* RelocInfo::code_age_stub() {
265 ASSERT(rmode_ == RelocInfo::CODE_AGE_SEQUENCE); 265 ASSERT(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
266 return Code::GetCodeFromTargetAddress( 266 return Code::GetCodeFromTargetAddress(
267 Memory::Address_at(pc_ + Assembler::kInstrSize * 267 Memory::Address_at(pc_ + Assembler::kInstrSize *
268 (kNoCodeAgeSequenceLength - 1))); 268 (kCodeAgeSequenceLength - 1)));
269 } 269 }
270 270
271 271
272 void RelocInfo::set_code_age_stub(Code* stub) { 272 void RelocInfo::set_code_age_stub(Code* stub) {
273 ASSERT(rmode_ == RelocInfo::CODE_AGE_SEQUENCE); 273 ASSERT(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
274 Memory::Address_at(pc_ + Assembler::kInstrSize * 274 Memory::Address_at(pc_ + Assembler::kInstrSize *
275 (kNoCodeAgeSequenceLength - 1)) = 275 (kCodeAgeSequenceLength - 1)) =
276 stub->instruction_start(); 276 stub->instruction_start();
277 } 277 }
278 278
279 279
280 Address RelocInfo::call_address() { 280 Address RelocInfo::call_address() {
281 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) || 281 ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
282 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence())); 282 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
283 // The pc_ offset of 0 assumes mips patched return sequence per 283 // The pc_ offset of 0 assumes mips patched return sequence per
284 // debug-mips.cc BreakLocationIterator::SetDebugBreakAtReturn(), or 284 // debug-mips.cc BreakLocationIterator::SetDebugBreakAtReturn(), or
285 // debug break slot per BreakLocationIterator::SetDebugBreakAtSlot(). 285 // debug break slot per BreakLocationIterator::SetDebugBreakAtSlot().
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 } 415 }
416 *reinterpret_cast<Instr*>(pc_) = x; 416 *reinterpret_cast<Instr*>(pc_) = x;
417 pc_ += kInstrSize; 417 pc_ += kInstrSize;
418 CheckTrampolinePoolQuick(); 418 CheckTrampolinePoolQuick();
419 } 419 }
420 420
421 421
422 } } // namespace v8::internal 422 } } // namespace v8::internal
423 423
424 #endif // V8_MIPS_ASSEMBLER_MIPS_INL_H_ 424 #endif // V8_MIPS_ASSEMBLER_MIPS_INL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698