1 /* Heap management routines for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1994, 2001-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
28 #include "lisp.h" /* for VALMASK */
30 #define RVA_TO_PTR(rva) ((unsigned char *)((DWORD)(rva) + (DWORD)GetModuleHandle (NULL)))
32 /* This gives us the page size and the size of the allocation unit on NT. */
33 SYSTEM_INFO sysinfo_cache
;
35 /* This gives us version, build, and platform identification. */
36 extern unsigned long syspage_mask
;
37 OSVERSIONINFO osinfo_cache
;
39 /* The major and minor versions of NT. */
40 int w32_major_version
;
41 int w32_minor_version
;
44 /* Distinguish between Windows NT and Windows 95. */
47 /* Emulate getpagesize. */
51 return sysinfo_cache
.dwPageSize
;
54 /* Info for managing our preload heap, which is essentially a fixed size
55 data area in the executable. */
56 PIMAGE_SECTION_HEADER preload_heap_section
;
58 /* Info for keeping track of our heap. */
59 unsigned char *data_region_base
= NULL
;
60 unsigned char *data_region_end
= NULL
;
61 unsigned char *real_data_region_end
= NULL
;
62 unsigned long reserved_heap_size
= 0;
64 /* The start of the data segment. */
68 return data_region_base
;
71 /* The end of the data segment. */
75 return data_region_end
;
82 /* Try to get as much as possible of the address range from the end of
83 the preload heap section up to the usable address limit. Since GNU
84 malloc can handle gaps in the memory it gets from sbrk, we can
85 simply set the sbrk pointer to the base of the new heap region. */
87 ROUND_UP ((RVA_TO_PTR (preload_heap_section
->VirtualAddress
)
88 + preload_heap_section
->Misc
.VirtualSize
),
89 get_allocation_unit ());
90 unsigned long end
= 1 << VALBITS
; /* 256MB */
93 while (!ptr
&& (base
< end
))
95 reserved_heap_size
= end
- base
;
96 ptr
= VirtualAlloc ((void *) base
,
97 get_reserved_heap_size (),
100 base
+= 0x00100000; /* 1MB increment */
105 #else /* USE_LSB_TAG */
109 unsigned long size
= 0x80000000; /* start by asking for 2GB */
112 while (!ptr
&& size
> 0x00100000)
114 reserved_heap_size
= size
;
115 ptr
= VirtualAlloc (NULL
,
116 get_reserved_heap_size (),
119 size
-= 0x00800000; /* if failed, decrease request by 8MB */
124 #endif /* USE_LSB_TAG */
127 /* Emulate Unix sbrk. Note that ralloc.c expects the return value to
128 be the address of the _start_ (not end) of the new block in case of
129 success, and zero (not -1) in case of failure. */
131 sbrk (unsigned long increment
)
134 long size
= (long) increment
;
136 result
= data_region_end
;
138 /* If size is negative, shrink the heap by decommitting pages. */
142 unsigned char *new_data_region_end
;
147 if ((data_region_end
- size
) < data_region_base
)
150 /* We can only decommit full pages, so allow for
151 partial deallocation [cga]. */
152 new_data_region_end
= (data_region_end
- size
);
153 new_data_region_end
= (unsigned char *)
154 ((long) (new_data_region_end
+ syspage_mask
) & ~syspage_mask
);
155 new_size
= real_data_region_end
- new_data_region_end
;
156 real_data_region_end
= new_data_region_end
;
159 /* Decommit size bytes from the end of the heap. */
160 if (using_dynamic_heap
161 && !VirtualFree (real_data_region_end
, new_size
, MEM_DECOMMIT
))
165 data_region_end
-= size
;
167 /* If size is positive, grow the heap by committing reserved pages. */
171 if ((data_region_end
+ size
) >
172 (data_region_base
+ get_reserved_heap_size ()))
175 /* Commit more of our heap. */
176 if (using_dynamic_heap
177 && VirtualAlloc (data_region_end
, size
, MEM_COMMIT
,
178 PAGE_READWRITE
) == NULL
)
180 data_region_end
+= size
;
182 /* We really only commit full pages, so record where
183 the real end of committed memory is [cga]. */
184 real_data_region_end
= (unsigned char *)
185 ((long) (data_region_end
+ syspage_mask
) & ~syspage_mask
);
191 /* Initialize the internal heap variables used by sbrk. When running in
192 preload phase (ie. in the undumped executable), we rely entirely on a
193 fixed size heap section included in the .exe itself; this is
194 preserved during dumping, and truncated to the size actually used.
196 When running in the dumped executable, we reserve as much as possible
197 of the address range that is addressable by Lisp object pointers, to
198 supplement what is left of the preload heap. Although we cannot rely
199 on the dynamically allocated arena being contiguous with the static
200 heap area, it is not a problem because sbrk can pretend that the gap
201 was allocated by something else; GNU malloc detects when there is a
202 jump in the sbrk values, and starts a new heap block. */
206 PIMAGE_DOS_HEADER dos_header
;
207 PIMAGE_NT_HEADERS nt_header
;
209 dos_header
= (PIMAGE_DOS_HEADER
) RVA_TO_PTR (0);
210 nt_header
= (PIMAGE_NT_HEADERS
) (((unsigned long) dos_header
) +
211 dos_header
->e_lfanew
);
212 preload_heap_section
= find_section ("EMHEAP", nt_header
);
214 if (using_dynamic_heap
)
216 data_region_base
= allocate_heap ();
217 if (!data_region_base
)
219 printf ("Error: Could not reserve dynamic heap area.\n");
224 /* Ensure that the addresses don't use the upper tag bits since
225 the Lisp type goes there. */
226 if (((unsigned long) data_region_base
& ~VALMASK
) != 0)
228 printf ("Error: The heap was allocated in upper memory.\n");
232 data_region_end
= data_region_base
;
233 real_data_region_end
= data_region_end
;
237 data_region_base
= RVA_TO_PTR (preload_heap_section
->VirtualAddress
);
238 data_region_end
= data_region_base
;
239 real_data_region_end
= data_region_end
;
240 reserved_heap_size
= preload_heap_section
->Misc
.VirtualSize
;
243 /* Update system version information to match current system. */
244 cache_system_info ();
247 /* Round the heap up to the given alignment. */
249 round_heap (unsigned long align
)
251 unsigned long needs_to_be
;
252 unsigned long need_to_alloc
;
254 needs_to_be
= (unsigned long) ROUND_UP (get_heap_end (), align
);
255 need_to_alloc
= needs_to_be
- (unsigned long) get_heap_end ();
258 sbrk (need_to_alloc
);