Bump code space size for cctest/DeserializeFromSecondSerialization.

R=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/25996002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17105 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
olivf@chromium.org 2013-10-04 11:11:50 +00:00
parent 66c610398f
commit c566aed204

View File

@ -1077,7 +1077,7 @@ intptr_t PagedSpace::SizeOfFirstPage() {
// upgraded to handle small pages. // upgraded to handle small pages.
size = AreaSize(); size = AreaSize();
} else { } else {
size = 384 * KB; size = 416 * KB;
} }
break; break;
default: default:
@ -2685,6 +2685,7 @@ HeapObject* PagedSpace::SlowAllocateRaw(int size_in_bytes) {
// Try to expand the space and allocate in the new next page. // Try to expand the space and allocate in the new next page.
if (Expand()) { if (Expand()) {
ASSERT(CountTotalPages() > 1 || size_in_bytes <= free_list_.available());
return free_list_.Allocate(size_in_bytes); return free_list_.Allocate(size_in_bytes);
} }