From 5af01ee08cec991f5703e2d0d2f4a3f7c14869e1 Mon Sep 17 00:00:00 2001 From: Bill McCloskey Date: Fri, 18 Nov 2011 14:59:18 -0800 Subject: [PATCH] Bug 699668 - Increase JS type arena size to 128K (r=njn) --- 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 397e9ae51bf..ae13d3aeaa5 100644 --- a/js/src/jscompartment.h +++ b/js/src/jscompartment.h @@ -420,7 +420,7 @@ struct JS_FRIEND_API(JSCompartment) { * Cleared on every GC, unless the GC happens during analysis (indicated * by activeAnalysis, which is implied by activeInference). */ - static const size_t TYPE_LIFO_ALLOC_PRIMARY_CHUNK_SIZE = 4 * 1024; + static const size_t TYPE_LIFO_ALLOC_PRIMARY_CHUNK_SIZE = 128 * 1024; js::LifoAlloc typeLifoAlloc; bool activeAnalysis; bool activeInference;