libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / config / i386 / host-mingw32.cc
blob42563982e420fe4dec69c9e800aa5eaa8ae40702
1 /* mingw32 host-specific hook definitions.
2 Copyright (C) 2004-2024 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 3, 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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #define IN_TARGET_CODE 1
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "diagnostic.h"
26 #include "hosthooks.h"
27 #include "hosthooks-def.h"
30 #define WIN32_LEAN_AND_MEAN /* Not so important if we have windows.h.gch. */
31 #include <windows.h>
32 #include <stdlib.h>
34 static void * mingw32_gt_pch_get_address (size_t, int);
35 static int mingw32_gt_pch_use_address (void *&, size_t, int, size_t);
36 static size_t mingw32_gt_pch_alloc_granularity (void);
38 #undef HOST_HOOKS_GT_PCH_GET_ADDRESS
39 #define HOST_HOOKS_GT_PCH_GET_ADDRESS mingw32_gt_pch_get_address
40 #undef HOST_HOOKS_GT_PCH_USE_ADDRESS
41 #define HOST_HOOKS_GT_PCH_USE_ADDRESS mingw32_gt_pch_use_address
42 #undef HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY
43 #define HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY mingw32_gt_pch_alloc_granularity
45 static inline void w32_error(const char*, const char*, int, const char*);
47 /* Granularity for reserving address space. */
48 static size_t va_granularity = 0x10000;
50 /* Print out the GetLastError() translation. */
51 static inline void
52 w32_error (const char* function, const char* file, int line,
53 const char* my_msg)
55 LPSTR w32_msgbuf;
56 FormatMessageA (FORMAT_MESSAGE_ALLOCATE_BUFFER
57 | FORMAT_MESSAGE_FROM_SYSTEM
58 | FORMAT_MESSAGE_IGNORE_INSERTS
59 | FORMAT_MESSAGE_MAX_WIDTH_MASK,
60 NULL, GetLastError(),
61 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
62 (LPSTR) &w32_msgbuf, 0, NULL);
63 fprintf(stderr, "internal error in %s, at %s:%d: %s: %s\n",
64 function, trim_filename (file), line, my_msg, w32_msgbuf);
65 LocalFree ((HLOCAL)w32_msgbuf);
68 /* Granularity for reserving address space. */
69 static size_t
70 mingw32_gt_pch_alloc_granularity (void)
72 SYSTEM_INFO si;
74 GetSystemInfo (&si);
75 va_granularity = (size_t) si.dwAllocationGranularity;
77 return va_granularity;
80 /* Identify an address that's likely to be free in a subsequent invocation
81 of the compiler. The area should be able to hold SIZE bytes. FD is an
82 open file descriptor if the host would like to probe with mmap. */
84 static void *
85 mingw32_gt_pch_get_address (size_t size, int)
87 void* res;
89 /* FIXME: We let system determine base by setting first arg to NULL.
90 Allocating at top of available address space avoids unnecessary
91 fragmentation of "ordinary" (malloc's) address space but may not
92 be safe with delayed load of system dll's. Preferred addresses
93 for NT system dlls is in 0x70000000 to 0x78000000 range.
94 If we allocate at bottom we need to reserve the address as early
95 as possible and at the same point in each invocation. */
97 res = VirtualAlloc (NULL, size,
98 MEM_RESERVE | MEM_TOP_DOWN,
99 PAGE_NOACCESS);
100 if (!res)
101 w32_error (__FUNCTION__, __FILE__, __LINE__, "VirtualAlloc");
102 else
103 /* We do not need the address space for now, so free it. */
104 VirtualFree (res, 0, MEM_RELEASE);
106 return res;
109 /* ADDR is an address returned by gt_pch_get_address. Attempt to allocate
110 SIZE bytes at the same address and load it with the data from FD at
111 OFFSET. Return -1 if we couldn't allocate memory at ADDR, return 0
112 if the memory is allocated but the data not loaded, return 1 if done. */
114 static int
115 mingw32_gt_pch_use_address (void *&addr, size_t size, int fd,
116 size_t offset)
118 void * mmap_addr;
119 HANDLE mmap_handle;
121 /* Apparently, MS Vista puts unnamed file mapping objects into Global
122 namespace when running an application in a Terminal Server
123 session. This causes failure since, by default, applications
124 don't get SeCreateGlobalPrivilege. We don't need global
125 memory sharing so explicitly put object into Local namespace.
127 If multiple concurrent GCC processes are using PCH functionality,
128 MapViewOfFileEx returns "Access Denied" error. So we ensure the
129 session-wide mapping name is unique by appending process ID. */
131 #define OBJECT_NAME_FMT "Local\\MinGWGCCPCH-"
133 char* object_name = NULL;
134 /* However, the documentation for CreateFileMapping says that on NT4
135 and earlier, backslashes are invalid in object name. So, we need
136 to check if we are on Windows2000 or higher. */
137 OSVERSIONINFO version_info;
138 int r;
140 version_info.dwOSVersionInfoSize = sizeof (version_info);
142 if (size == 0)
143 return 0;
145 /* Offset must be also be a multiple of allocation granularity for
146 this to work. We can't change the offset. */
147 if ((offset & (va_granularity - 1)) != 0)
148 return -1;
151 /* Determine the version of Windows we are running on and use a
152 uniquely-named local object if running > 4. */
153 GetVersionEx (&version_info);
155 char local_object_name[sizeof (OBJECT_NAME_FMT) + sizeof (DWORD) * 2];
156 if (version_info.dwMajorVersion > 4)
158 snprintf (local_object_name, sizeof (local_object_name),
159 OBJECT_NAME_FMT "%lx", GetCurrentProcessId());
160 object_name = local_object_name;
162 mmap_handle = CreateFileMappingA ((HANDLE) _get_osfhandle (fd), NULL,
163 PAGE_WRITECOPY | SEC_COMMIT, 0, 0,
164 object_name);
166 if (mmap_handle == NULL)
168 w32_error (__FUNCTION__, __FILE__, __LINE__, "CreateFileMapping");
169 return -1;
172 /* Retry five times, as here might occure a race with multiple gcc's
173 instances at same time. */
174 for (r = 0; r < 5; r++)
176 mmap_addr = MapViewOfFileEx (mmap_handle, FILE_MAP_COPY, 0, offset,
177 size, addr);
178 if (mmap_addr == addr)
179 break;
180 if (r != 4)
181 Sleep (500);
184 if (mmap_addr != addr)
186 w32_error (__FUNCTION__, __FILE__, __LINE__, "MapViewOfFileEx");
187 CloseHandle(mmap_handle);
188 return -1;
191 return 1;
194 const struct host_hooks host_hooks = HOST_HOOKS_INITIALIZER;