Reviewers: Lasse Reichstein, Description: X64: Align start of remembered set to a 4-byte boundary
Please review this at http://codereview.chromium.org/151198 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/spaces.h Index: src/spaces.h =================================================================== --- src/spaces.h (revision 2331) +++ src/spaces.h (working copy) @@ -230,7 +230,8 @@ static const int kRSetEndOffset = kRSetOffset + kPageSize / kBitsPerPointer; // The start offset of the object area in a page. - static const int kObjectStartOffset = kRSetEndOffset; + // This needs to be at least 32 * kBitsPerPointer, to align start of rset. + static const int kObjectStartOffset = 256; // The start offset of the remembered set in a page. static const int kRSetStartOffset = kRSetOffset + --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
