Bug 804891 - Reduce LIFO_ALLOC_PRIMARY_CHUNK_SIZE from 128 KiB to 32 KiB. r=wmccloskey, a=akeybl

This commit is contained in:
Nicholas Nethercote 2012-10-25 17:55:31 -07:00
Родитель 288924847b
Коммит c4456f14e0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -259,7 +259,7 @@ struct JSCompartment
int64_t lastCodeRelease;
/* Pools for analysis and type information in this compartment. */
static const size_t LIFO_ALLOC_PRIMARY_CHUNK_SIZE = 128 * 1024;
static const size_t LIFO_ALLOC_PRIMARY_CHUNK_SIZE = 32 * 1024;
js::LifoAlloc analysisLifoAlloc;
js::LifoAlloc typeLifoAlloc;