From 86733a25f47dc521fbd07069655bb1da8dab4612 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 17 Mar 2011 21:24:35 -0600 Subject: [PATCH] increase executable area size to 30MB Big applications can exceed the 16MB limit we previously used. Increasing this above 30MB (if/when desired) will require changes to the ARM and PowerPC JIT code to work around immediate branch encoding limits on those platforms, --- src/compile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.cpp b/src/compile.cpp index 1345834013..8e7f2ef1ee 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -56,7 +56,7 @@ const unsigned MaxNativeCallFootprint = 4; const unsigned InitialZoneCapacityInBytes = 64 * 1024; -const unsigned ExecutableAreaSizeInBytes = 16 * 1024 * 1024; +const unsigned ExecutableAreaSizeInBytes = 30 * 1024 * 1024; enum Root { CallTable,