blob: d57062c358bd82db0e5fcdc04c611a1cd731351a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
From d7a323549e9c6626ec13a3315539a6f124e4fa44 Mon Sep 17 00:00:00 2001
From: litvin <litvindev@gmail.com>
Date: Mon, 16 Jan 2017 04:40:05 +0300
Subject: [PATCH 07/33] Fix mbMemory, cfMemory, tmpWorkMemory overflowed over
borne
---
src/head2.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/head2.h b/src/head2.h
index 54f00a3..4a620a1 100644
--- a/src/head2.h
+++ b/src/head2.h
@@ -21,11 +21,11 @@
#define SIZE_TMP_MEM 5000 /* temporary strings, not error messages */
#define SIZE_ppMemory 20000 /* macro args name in define */
-#define SIZE_mbMemory 500000 /* pending macro expansions */
+#define SIZE_mbMemory 2000000 /* pending macro expansions */
#define SIZE_opiMemory 150000 /* memory used to store options strings */
#define SIZE_workMemory 10000000 /* parsing stack memory */
-#define SIZE_tmpWorkMemory 200000 /* additional tmp parsing stack memory */
-#define SIZE_ftMemory 4000000 /* memory for file (and class) table */
+#define SIZE_tmpWorkMemory 400000 /* additional tmp parsing stack memory */
+#define SIZE_ftMemory 8000000 /* memory for file (and class) table */
#define SIZE_ppmMemory 15000000 /* macro definitions or java class files */
#ifdef SMALL_OLCX_MEMORY
@@ -34,9 +34,9 @@
#define SIZE_olcxMemory 15000000 /* memory for browsing symbol stack */
#endif
#ifdef LINEAR_ADD_REFERENCE
-#define CX_MEMORY_CHUNK_SIZE 10000000
+#define CX_MEMORY_CHUNK_SIZE 20000000
#else
-#define CX_MEMORY_CHUNK_SIZE 2000000
+#define CX_MEMORY_CHUNK_SIZE 4000000
#endif
/* memory for cross references, can be
increased also by -mf command line
--
2.18.0
|