Skip to content

Commit fbfed86

Browse files
committed
compiler-rt: add support for mingw-w64 in builtins
The is so that we can avoid using libgcc and use compiler-rt with mingw-w64. Related driver patch http://reviews.llvm.org/D11077 I have tested this with mingw-w64 and everything seems to be in order. I also sent this patch to the mingw-w64 mailing list for them to look at. Patch by Martell Malone. Differential Revision: http://reviews.llvm.org/D11085 llvm-svn: 242539
1 parent 8e2fb68 commit fbfed86

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

compiler-rt/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
164164
# We support running instrumented tests when we're not cross compiling
165165
# and target a UNIX-like system or Windows.
166166
# We can run tests on Android even when we are cross-compiling.
167-
if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND (UNIX OR MSVC)) OR ANDROID
167+
if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND (UNIX OR WIN32)) OR ANDROID
168168
OR COMPILER_RT_EMULATOR)
169169
option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON)
170170
else()

compiler-rt/lib/builtins/CMakeLists.txt

+13-1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,12 @@ set(x86_64_SOURCES
154154
x86_64/floatundixf.S
155155
${GENERIC_SOURCES})
156156

157+
if(WIN32)
158+
set(x86_64_SOURCES
159+
${x86_64_SOURCES}
160+
x86_64/chkstk.S)
161+
endif()
162+
157163
set(i386_SOURCES
158164
i386/ashldi3.S
159165
i386/ashrdi3.S
@@ -171,6 +177,12 @@ set(i386_SOURCES
171177
i386/umoddi3.S
172178
${GENERIC_SOURCES})
173179

180+
if(WIN32)
181+
set(i386_SOURCES
182+
${i386_SOURCES}
183+
i386/chkstk.S)
184+
endif()
185+
174186
set(i686_SOURCES
175187
${i386_SOURCES})
176188

@@ -260,7 +272,7 @@ set(arm_SOURCES
260272

261273
add_custom_target(builtins)
262274

263-
if (NOT WIN32)
275+
if (NOT WIN32 OR MINGW)
264276
foreach (arch x86_64 i386 i686 arm)
265277
if (CAN_TARGET_${arch})
266278
# Filter out generic versions of routines that are re-implemented in

compiler-rt/lib/builtins/enable_execute_stack.c

+14
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,24 @@
1010

1111
#include "int_lib.h"
1212

13+
#ifndef _WIN32
1314
#include <sys/mman.h>
15+
#endif
1416

1517
/* #include "config.h"
1618
* FIXME: CMake - include when cmake system is ready.
1719
* Remove #define HAVE_SYSCONF 1 line.
1820
*/
1921
#define HAVE_SYSCONF 1
2022

23+
#ifdef _WIN32
24+
#include <windef.h>
25+
#include <winbase.h>
26+
#else
2127
#ifndef __APPLE__
2228
#include <unistd.h>
2329
#endif /* __APPLE__ */
30+
#endif /* _WIN32 */
2431

2532
#if __LP64__
2633
#define TRAMPOLINE_SIZE 48
@@ -40,6 +47,12 @@ COMPILER_RT_ABI void
4047
__enable_execute_stack(void* addr)
4148
{
4249

50+
#if _WIN32
51+
MEMORY_BASIC_INFORMATION mbi;
52+
if (!VirtualQuery (addr, &mbi, sizeof(mbi)))
53+
return; /* We should probably assert here because there is no return value */
54+
VirtualProtect (mbi.BaseAddress, mbi.RegionSize, PAGE_EXECUTE_READWRITE, &mbi.Protect);
55+
#else
4356
#if __APPLE__
4457
/* On Darwin, pagesize is always 4096 bytes */
4558
const uintptr_t pageSize = 4096;
@@ -55,4 +68,5 @@ __enable_execute_stack(void* addr)
5568
unsigned char* endPage = (unsigned char*)((p+TRAMPOLINE_SIZE+pageSize) & pageAlignMask);
5669
size_t length = endPage - startPage;
5770
(void) mprotect((void *)startPage, length, PROT_READ | PROT_WRITE | PROT_EXEC);
71+
#endif
5872
}

0 commit comments

Comments
 (0)