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

--HG--
extra : rebase_source : 41cbe9a405e2febe84ce1db3bf1dba9a19f53748
This commit is contained in:
Nicholas Nethercote 2012-10-25 17:55:31 -07:00
parent 10ada00346
commit ea1d28a21f

View File

@ -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;