1 /* mingw32 host-specific hook definitions.
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published
8 by the Free Software Foundation; either version 2, or (at your
9 option) any later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston,
19 MA 02111-1307, USA. */
23 #include "coretypes.h"
24 #include "hosthooks.h"
25 #include "hosthooks-def.h"
27 #include "diagnostic.h"
30 #define WIN32_LEAN_AND_MEAN /* Not so important if we have windows.h.gch. */
33 static void * mingw32_gt_pch_get_address (size_t, int);
34 static int mingw32_gt_pch_use_address (void *, size_t, int, size_t);
35 static size_t mingw32_gt_pch_alloc_granularity (void);
37 #undef HOST_HOOKS_GT_PCH_GET_ADDRESS
38 #define HOST_HOOKS_GT_PCH_GET_ADDRESS mingw32_gt_pch_get_address
39 #undef HOST_HOOKS_GT_PCH_USE_ADDRESS
40 #define HOST_HOOKS_GT_PCH_USE_ADDRESS mingw32_gt_pch_use_address
41 #undef HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY
42 #define HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY mingw32_gt_pch_alloc_granularity
44 static inline void w32_error(const char*, const char*, int, const char*);
46 /* FIXME: Is this big enough? */
47 static const size_t pch_VA_max_size
= 128 * 1024 * 1024;
49 /* Granularity for reserving address space. */
50 static const size_t va_granularity
= 0x10000;
52 /* Print out the GetLastError() translation. */
54 w32_error (const char* function
, const char* file
, int line
,
58 FormatMessageA (FORMAT_MESSAGE_ALLOCATE_BUFFER
59 | FORMAT_MESSAGE_FROM_SYSTEM
60 | FORMAT_MESSAGE_IGNORE_INSERTS
61 | FORMAT_MESSAGE_MAX_WIDTH_MASK
,
63 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
64 (LPSTR
) &w32_msgbuf
, 0, NULL
);
65 fprintf(stderr
, "internal error in %s, at %s:%d: %s: %s\n",
66 function
, trim_filename (file
), line
, my_msg
, w32_msgbuf
);
67 LocalFree ((HLOCAL
)w32_msgbuf
);
70 /* Granularity for reserving address space. */
71 static size_t mingw32_gt_pch_alloc_granularity (void)
73 return va_granularity
;
76 /* Identify an address that's likely to be free in a subsequent invocation
77 of the compiler. The area should be able to hold SIZE bytes. FD is an
78 open file descriptor if the host would like to probe with mmap. */
81 mingw32_gt_pch_get_address (size_t size
, int fd ATTRIBUTE_UNUSED
)
84 size
= (size
+ va_granularity
- 1) & ~(va_granularity
- 1);
85 if (size
> pch_VA_max_size
)
88 /* FIXME: We let system determine base by setting first arg to NULL.
89 Allocating at top of available address space avoids unnecessary
90 fragmentation of "ordinary" (malloc's) address space but may not be safe
91 with delayed load of system dll's. Preferred addresses for NT system
92 dlls is in 0x70000000 to 0x78000000 range.
93 If we allocate at bottom we need to reserve the address as early as possible
94 and at the same point in each invocation. */
96 res
= VirtualAlloc (NULL
, pch_VA_max_size
,
97 MEM_RESERVE
| MEM_TOP_DOWN
,
100 w32_error (__FUNCTION__
, __FILE__
, __LINE__
, "VirtualAlloc");
102 /* We do not need the address space for now, so free it. */
103 VirtualFree (res
, 0, MEM_RELEASE
);
108 /* ADDR is an address returned by gt_pch_get_address. Attempt to allocate
109 SIZE bytes at the same address and load it with the data from FD at
110 OFFSET. Return -1 if we couldn't allocate memory at ADDR, return 0
111 if the memory is allocated but the data not loaded, return 1 if done. */
114 mingw32_gt_pch_use_address (void *addr
, size_t size
, int fd
,
118 static HANDLE mmap_handle
;
123 /* Offset must be also be a multiple of allocation granularity for
124 this to work. We can't change the offset. */
125 if ((offset
& (va_granularity
- 1)) != 0 || size
> pch_VA_max_size
)
128 mmap_handle
= CreateFileMapping ((HANDLE
) _get_osfhandle (fd
),
129 NULL
, PAGE_WRITECOPY
| SEC_COMMIT
,
131 if (mmap_handle
== NULL
)
133 w32_error (__FUNCTION__
, __FILE__
, __LINE__
, "CreateFileMapping");
136 mmap_addr
= MapViewOfFileEx (mmap_handle
, FILE_MAP_COPY
, 0, offset
,
138 if (mmap_addr
!= addr
)
140 w32_error (__FUNCTION__
, __FILE__
, __LINE__
, "MapViewOfFileEx");
141 CloseHandle(mmap_handle
);
148 const struct host_hooks host_hooks
= HOST_HOOKS_INITIALIZER
;