From c4456f14e08d7b0ac3c565514426dd0f4dbde43d Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Thu, 25 Oct 2012 17:55:31 -0700 Subject: [PATCH] Bug 804891 - Reduce LIFO_ALLOC_PRIMARY_CHUNK_SIZE from 128 KiB to 32 KiB. r=wmccloskey, a=akeybl --- js/src/jscompartment.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jscompartment.h b/js/src/jscompartment.h index f270a86048e0..c15e59ba5962 100644 --- a/js/src/jscompartment.h +++ b/js/src/jscompartment.h @@ -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;