Update years in copyright notice; nfc.
[bpt/emacs.git] / src / w32heap.c
CommitLineData
e9e23e23 1/* Heap management routines for GNU Emacs on the Microsoft W32 API.
0b5538bd 2 Copyright (C) 1994, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
95ed0025 3
3b7ad313 4This file is part of GNU Emacs.
95ed0025 5
3b7ad313
EN
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
95ed0025 10
3b7ad313
EN
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
95ed0025 15
3b7ad313
EN
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
18the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19Boston, MA 02110-1301, USA.
95ed0025
RS
20
21 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
22*/
23
4838e624
PJ
24#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
3bbabc43 27
95ed0025
RS
28#include <stdlib.h>
29#include <stdio.h>
30
489f9371 31#include "w32heap.h"
8dfdd41f 32#include "lisp.h" /* for VALMASK */
95ed0025 33
2e4f6477 34#define RVA_TO_PTR(rva) ((unsigned char *)((DWORD)(rva) + (DWORD)GetModuleHandle (NULL)))
30d2b1c2 35
95ed0025
RS
36/* This gives us the page size and the size of the allocation unit on NT. */
37SYSTEM_INFO sysinfo_cache;
b9cad9c1
GV
38
39/* This gives us version, build, and platform identification. */
40OSVERSIONINFO osinfo_cache;
41
3bbabc43 42unsigned long syspage_mask = 0;
95ed0025
RS
43
44/* These are defined to get Emacs to compile, but are not used. */
45int edata;
46int etext;
47
48/* The major and minor versions of NT. */
fbd6baed
GV
49int w32_major_version;
50int w32_minor_version;
39f1f652 51int w32_build_number;
95ed0025 52
801f68b9
GV
53/* Distinguish between Windows NT and Windows 95. */
54int os_subtype;
55
95ed0025
RS
56/* Cache information describing the NT system for later use. */
57void
58cache_system_info (void)
59{
ce20e03e 60 union
95ed0025 61 {
ce20e03e 62 struct info
95ed0025
RS
63 {
64 char major;
65 char minor;
66 short platform;
67 } info;
68 DWORD data;
69 } version;
70
71 /* Cache the version of the operating system. */
72 version.data = GetVersion ();
fbd6baed
GV
73 w32_major_version = version.info.major;
74 w32_minor_version = version.info.minor;
95ed0025 75
801f68b9
GV
76 if (version.info.platform & 0x8000)
77 os_subtype = OS_WIN95;
78 else
79 os_subtype = OS_NT;
80
95ed0025
RS
81 /* Cache page size, allocation unit, processor type, etc. */
82 GetSystemInfo (&sysinfo_cache);
3bbabc43 83 syspage_mask = sysinfo_cache.dwPageSize - 1;
b9cad9c1
GV
84
85 /* Cache os info. */
86 osinfo_cache.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
87 GetVersionEx (&osinfo_cache);
39f1f652
AI
88
89 w32_build_number = osinfo_cache.dwBuildNumber;
90 if (os_subtype == OS_WIN95)
91 w32_build_number &= 0xffff;
95ed0025
RS
92}
93
e54c8cd1
GV
94/* Emulate getpagesize. */
95int
96getpagesize (void)
97{
98 return sysinfo_cache.dwPageSize;
99}
100
30d2b1c2
AI
101/* Info for managing our preload heap, which is essentially a fixed size
102 data area in the executable. */
103PIMAGE_SECTION_HEADER preload_heap_section;
95ed0025
RS
104
105/* Info for keeping track of our heap. */
106unsigned char *data_region_base = NULL;
107unsigned char *data_region_end = NULL;
3bbabc43 108unsigned char *real_data_region_end = NULL;
011db670 109unsigned long reserved_heap_size = 0;
95ed0025
RS
110
111/* The start of the data segment. */
112unsigned char *
113get_data_start (void)
114{
115 return data_region_base;
116}
117
118/* The end of the data segment. */
119unsigned char *
120get_data_end (void)
121{
122 return data_region_end;
123}
124
011db670
GV
125static char *
126allocate_heap (void)
127{
30d2b1c2
AI
128 /* Try to get as much as possible of the address range from the end of
129 the preload heap section up to the usable address limit. Since GNU
130 malloc can handle gaps in the memory it gets from sbrk, we can
131 simply set the sbrk pointer to the base of the new heap region. */
132 unsigned long base =
133 ROUND_UP ((RVA_TO_PTR (preload_heap_section->VirtualAddress)
134 + preload_heap_section->Misc.VirtualSize),
135 get_allocation_unit ());
8dfdd41f 136 unsigned long end = 1 << VALBITS; /* 256MB */
709fd16b 137 void *ptr = NULL;
011db670 138
709fd16b
GV
139 while (!ptr && (base < end))
140 {
709fd16b
GV
141 reserved_heap_size = end - base;
142 ptr = VirtualAlloc ((void *) base,
143 get_reserved_heap_size (),
144 MEM_RESERVE,
145 PAGE_NOACCESS);
709fd16b
GV
146 base += 0x00100000; /* 1MB increment */
147 }
0d05360d 148
709fd16b 149 return ptr;
011db670 150}
011db670
GV
151
152
95ed0025
RS
153/* Emulate Unix sbrk. */
154void *
155sbrk (unsigned long increment)
156{
157 void *result;
158 long size = (long) increment;
ce20e03e 159
95ed0025 160 result = data_region_end;
ce20e03e 161
95ed0025 162 /* If size is negative, shrink the heap by decommitting pages. */
ce20e03e 163 if (size < 0)
95ed0025 164 {
3bbabc43
GV
165 int new_size;
166 unsigned char *new_data_region_end;
167
95ed0025
RS
168 size = -size;
169
170 /* Sanity checks. */
95ed0025
RS
171 if ((data_region_end - size) < data_region_base)
172 return NULL;
173
ce20e03e 174 /* We can only decommit full pages, so allow for
3bbabc43
GV
175 partial deallocation [cga]. */
176 new_data_region_end = (data_region_end - size);
177 new_data_region_end = (unsigned char *)
178 ((long) (new_data_region_end + syspage_mask) & ~syspage_mask);
179 new_size = real_data_region_end - new_data_region_end;
180 real_data_region_end = new_data_region_end;
30d2b1c2 181 if (new_size > 0)
3bbabc43
GV
182 {
183 /* Decommit size bytes from the end of the heap. */
30d2b1c2
AI
184 if (using_dynamic_heap
185 && !VirtualFree (real_data_region_end, new_size, MEM_DECOMMIT))
3bbabc43
GV
186 return NULL;
187 }
95ed0025
RS
188
189 data_region_end -= size;
ce20e03e 190 }
95ed0025 191 /* If size is positive, grow the heap by committing reserved pages. */
ce20e03e 192 else if (size > 0)
95ed0025
RS
193 {
194 /* Sanity checks. */
95ed0025
RS
195 if ((data_region_end + size) >
196 (data_region_base + get_reserved_heap_size ()))
197 return NULL;
198
199 /* Commit more of our heap. */
30d2b1c2
AI
200 if (using_dynamic_heap
201 && VirtualAlloc (data_region_end, size, MEM_COMMIT,
202 PAGE_READWRITE) == NULL)
95ed0025
RS
203 return NULL;
204 data_region_end += size;
3bbabc43
GV
205
206 /* We really only commit full pages, so record where
207 the real end of committed memory is [cga]. */
208 real_data_region_end = (unsigned char *)
209 ((long) (data_region_end + syspage_mask) & ~syspage_mask);
95ed0025 210 }
ce20e03e 211
95ed0025
RS
212 return result;
213}
214
30d2b1c2
AI
215/* Initialize the internal heap variables used by sbrk. When running in
216 preload phase (ie. in the undumped executable), we rely entirely on a
217 fixed size heap section included in the .exe itself; this is
218 preserved during dumping, and truncated to the size actually used.
219
220 When running in the dumped executable, we reserve as much as possible
221 of the address range that is addressable by Lisp object pointers, to
222 supplement what is left of the preload heap. Although we cannot rely
223 on the dynamically allocated arena being contiguous with the static
224 heap area, it is not a problem because sbrk can pretend that the gap
225 was allocated by something else; GNU malloc detects when there is a
226 jump in the sbrk values, and starts a new heap block. */
95ed0025 227void
30d2b1c2 228init_heap ()
95ed0025 229{
30d2b1c2
AI
230 PIMAGE_DOS_HEADER dos_header;
231 PIMAGE_NT_HEADERS nt_header;
232
233 dos_header = (PIMAGE_DOS_HEADER) RVA_TO_PTR (0);
ce20e03e 234 nt_header = (PIMAGE_NT_HEADERS) (((unsigned long) dos_header) +
30d2b1c2
AI
235 dos_header->e_lfanew);
236 preload_heap_section = find_section ("EMHEAP", nt_header);
237
238 if (using_dynamic_heap)
239 {
240 data_region_base = allocate_heap ();
241 if (!data_region_base)
242 {
243 printf ("Error: Could not reserve dynamic heap area.\n");
244 exit (1);
245 }
246
3ae12c8d 247#if defined (NO_UNION_TYPE) && !defined (USE_LSB_TAG)
30d2b1c2
AI
248 /* Ensure that the addresses don't use the upper tag bits since
249 the Lisp type goes there. */
ce20e03e 250 if (((unsigned long) data_region_base & ~VALMASK) != 0)
30d2b1c2
AI
251 {
252 printf ("Error: The heap was allocated in upper memory.\n");
253 exit (1);
254 }
3ae12c8d 255#endif
30d2b1c2
AI
256 data_region_end = data_region_base;
257 real_data_region_end = data_region_end;
258 }
259 else
260 {
261 data_region_base = RVA_TO_PTR (preload_heap_section->VirtualAddress);
262 data_region_end = data_region_base;
263 real_data_region_end = data_region_end;
264 reserved_heap_size = preload_heap_section->Misc.VirtualSize;
265 }
801f68b9
GV
266
267 /* Update system version information to match current system. */
268 cache_system_info ();
95ed0025
RS
269}
270
271/* Round the heap up to the given alignment. */
272void
273round_heap (unsigned long align)
274{
275 unsigned long needs_to_be;
276 unsigned long need_to_alloc;
ce20e03e 277
30d2b1c2 278 needs_to_be = (unsigned long) ROUND_UP (get_heap_end (), align);
95ed0025 279 need_to_alloc = needs_to_be - (unsigned long) get_heap_end ();
ce20e03e
JB
280
281 if (need_to_alloc)
95ed0025
RS
282 sbrk (need_to_alloc);
283}
801f68b9 284
ce20e03e 285#if (_MSC_VER >= 1000 && _MSC_VER < 1300 && !defined(USE_CRT_DLL))
801f68b9
GV
286
287/* MSVC 4.2 invokes these functions from mainCRTStartup to initialize
288 a heap via HeapCreate. They are normally defined by the runtime,
289 but we override them here so that the unnecessary HeapCreate call
290 is not performed. */
291
292int __cdecl
293_heap_init (void)
294{
295 /* Stepping through the assembly indicates that mainCRTStartup is
296 expecting a nonzero success return value. */
297 return 1;
298}
299
300void __cdecl
301_heap_term (void)
302{
303 return;
304}
305
306#endif
ab5796a9
MB
307
308/* arch-tag: 9a6a9860-040d-422d-8905-450dd535cd9c
309 (do not change this comment) */