Skip to content

Commit 7e27931

Browse files
committed
Increase default stack sizes.
1 parent e0885b3 commit 7e27931

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

jsi.h

+7-3
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,19 @@ typedef struct js_StackTrace js_StackTrace;
7878
/* Limits */
7979

8080
#ifndef JS_STACKSIZE
81-
#define JS_STACKSIZE 256 /* value stack size */
81+
#define JS_STACKSIZE 4096 /* value stack size */
8282
#endif
8383
#ifndef JS_ENVLIMIT
84-
#define JS_ENVLIMIT 128 /* environment stack size */
84+
#define JS_ENVLIMIT 1024 /* environment stack size */
8585
#endif
8686
#ifndef JS_TRYLIMIT
8787
#define JS_TRYLIMIT 64 /* exception stack size */
8888
#endif
89+
8990
#ifndef JS_ARRAYLIMIT
9091
#define JS_ARRAYLIMIT (1<<26) /* limit arrays to 64M entries (1G of flat array data) */
9192
#endif
93+
9294
#ifndef JS_GCFACTOR
9395
/*
9496
* GC will try to trigger when memory usage is this value times the minimum
@@ -100,9 +102,11 @@ typedef struct js_StackTrace js_StackTrace;
100102
*/
101103
#define JS_GCFACTOR 5.0 /* memory overhead factor >= 1.0 */
102104
#endif
105+
103106
#ifndef JS_ASTLIMIT
104-
#define JS_ASTLIMIT 100 /* max nested expressions */
107+
#define JS_ASTLIMIT 400 /* max nested expressions */
105108
#endif
109+
106110
#ifndef JS_STRLIMIT
107111
#define JS_STRLIMIT (1<<28) /* max string length */
108112
#endif

0 commit comments

Comments
 (0)