blob: ba2a7bcfcd2929a3d0b3eea141132d7443b7151e [file] [log] [blame]
Chris Bieneman1dd58a72016-04-28 18:22:01 +00001include(CMakePushCheckState)
2include(CheckSymbolExists)
3
Alexey Samsonov163ab9d2013-01-18 16:05:21 +00004# Because compiler-rt spends a lot of time setting up custom compile flags,
5# define a handy helper function for it. The compile flags setting in CMake
6# has serious issues that make its syntax challenging at best.
7function(set_target_compile_flags target)
Aaron Ballmane927a172014-10-23 22:13:52 +00008 set(argstring "")
Alexey Samsonov163ab9d2013-01-18 16:05:21 +00009 foreach(arg ${ARGN})
10 set(argstring "${argstring} ${arg}")
11 endforeach()
12 set_property(TARGET ${target} PROPERTY COMPILE_FLAGS "${argstring}")
13endfunction()
14
15function(set_target_link_flags target)
Aaron Ballmane927a172014-10-23 22:13:52 +000016 set(argstring "")
Alexey Samsonov163ab9d2013-01-18 16:05:21 +000017 foreach(arg ${ARGN})
18 set(argstring "${argstring} ${arg}")
19 endforeach()
20 set_property(TARGET ${target} PROPERTY LINK_FLAGS "${argstring}")
21endfunction()
22
Peter Collingbournecbdea322013-10-25 23:03:34 +000023# Set the variable var_PYBOOL to True if var holds a true-ish string,
24# otherwise set it to False.
25macro(pythonize_bool var)
26 if (${var})
27 set(${var}_PYBOOL True)
28 else()
29 set(${var}_PYBOOL False)
30 endif()
31endmacro()
Alexey Samsonovb73db722014-02-18 07:52:40 +000032
Alexey Samsonov32956d62014-03-13 09:31:36 +000033# Appends value to all lists in ARGN, if the condition is true.
Kuba Brecka14c0c592014-10-15 22:47:54 +000034macro(append_list_if condition value)
Alexey Samsonov32956d62014-03-13 09:31:36 +000035 if(${condition})
36 foreach(list ${ARGN})
37 list(APPEND ${list} ${value})
38 endforeach()
Alexey Samsonovb73db722014-02-18 07:52:40 +000039 endif()
40endmacro()
41
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +000042# Appends value to all strings in ARGN, if the condition is true.
43macro(append_string_if condition value)
44 if(${condition})
45 foreach(str ${ARGN})
46 set(${str} "${${str}} ${value}")
47 endforeach()
48 endif()
49endmacro()
50
Filipe Cabecinhasb08c76f2016-03-05 10:01:04 +000051macro(append_rtti_flag polarity list)
Filipe Cabecinhase5914d822016-08-22 18:30:37 +000052 if(${polarity})
Filipe Cabecinhasb08c76f2016-03-05 10:01:04 +000053 append_list_if(COMPILER_RT_HAS_FRTTI_FLAG -frtti ${list})
54 append_list_if(COMPILER_RT_HAS_GR_FLAG /GR ${list})
55 else()
56 append_list_if(COMPILER_RT_HAS_FNO_RTTI_FLAG -fno-rtti ${list})
57 append_list_if(COMPILER_RT_HAS_GR_FLAG /GR- ${list})
58 endif()
Alexey Samsonovb73db722014-02-18 07:52:40 +000059endmacro()
Yury Gribov8e49b472015-04-09 08:06:49 +000060
61macro(append_have_file_definition filename varname list)
62 check_include_file("${filename}" "${varname}")
Reid Kleckneraa902962015-05-20 16:56:17 +000063 if (NOT ${varname})
Yury Gribov8e49b472015-04-09 08:06:49 +000064 set("${varname}" 0)
65 endif()
66 list(APPEND ${list} "${varname}=${${varname}}")
67endmacro()
Chris Bieneman361231e2015-08-13 20:38:16 +000068
Daniel Sandersde098c92016-01-27 09:28:01 +000069macro(list_intersect output input1 input2)
Chris Bieneman361231e2015-08-13 20:38:16 +000070 set(${output})
71 foreach(it ${${input1}})
72 list(FIND ${input2} ${it} index)
73 if( NOT (index EQUAL -1))
74 list(APPEND ${output} ${it})
75 endif()
76 endforeach()
77endmacro()
Chris Bieneman5a5b21d2016-02-17 16:57:38 +000078
Saleem Abdulrasoolb6ced622016-08-19 15:13:21 +000079function(list_replace input_list old new)
80 set(replaced_list)
81 foreach(item ${${input_list}})
82 if(${item} STREQUAL ${old})
83 list(APPEND replaced_list ${new})
84 else()
85 list(APPEND replaced_list ${item})
86 endif()
87 endforeach()
88 set(${input_list} "${replaced_list}" PARENT_SCOPE)
89endfunction()
90
Chris Bieneman5a5b21d2016-02-17 16:57:38 +000091# Takes ${ARGN} and puts only supported architectures in @out_var list.
92function(filter_available_targets out_var)
93 set(archs ${${out_var}})
94 foreach(arch ${ARGN})
95 list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
96 if(NOT (ARCH_INDEX EQUAL -1) AND CAN_TARGET_${arch})
97 list(APPEND archs ${arch})
98 endif()
99 endforeach()
100 set(${out_var} ${archs} PARENT_SCOPE)
101endfunction()
102
103function(check_compile_definition def argstring out_var)
104 if("${def}" STREQUAL "")
105 set(${out_var} TRUE PARENT_SCOPE)
106 return()
107 endif()
108 cmake_push_check_state()
109 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${argstring}")
110 check_symbol_exists(${def} "" ${out_var})
111 cmake_pop_check_state()
112endfunction()
113
114# test_target_arch(<arch> <def> <target flags...>)
115# Checks if architecture is supported: runs host compiler with provided
116# flags to verify that:
117# 1) <def> is defined (if non-empty)
118# 2) simple file can be successfully built.
119# If successful, saves target flags for this architecture.
120macro(test_target_arch arch def)
121 set(TARGET_${arch}_CFLAGS ${ARGN})
Etienne Bergeron7e2fc3b2016-06-21 14:46:32 +0000122 set(TARGET_${arch}_LINKFLAGS ${ARGN})
Chris Bieneman5a5b21d2016-02-17 16:57:38 +0000123 set(argstring "")
124 foreach(arg ${ARGN})
125 set(argstring "${argstring} ${arg}")
126 endforeach()
127 check_compile_definition("${def}" "${argstring}" HAS_${arch}_DEF)
Daniel Sandersaea8b552016-07-22 10:15:09 +0000128 if(NOT DEFINED CAN_TARGET_${arch})
129 if(NOT HAS_${arch}_DEF)
130 set(CAN_TARGET_${arch} FALSE)
131 elseif(TEST_COMPILE_ONLY)
132 try_compile_only(CAN_TARGET_${arch} ${TARGET_${arch}_CFLAGS})
133 else()
134 set(argstring "${CMAKE_EXE_LINKER_FLAGS} ${argstring}")
135 try_compile(CAN_TARGET_${arch} ${CMAKE_BINARY_DIR} ${SIMPLE_SOURCE}
136 COMPILE_DEFINITIONS "${TARGET_${arch}_CFLAGS}"
137 OUTPUT_VARIABLE TARGET_${arch}_OUTPUT
138 CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS:STRING=${argstring}")
139 endif()
Chris Bieneman5a5b21d2016-02-17 16:57:38 +0000140 endif()
141 if(${CAN_TARGET_${arch}})
142 list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
Francis Riccib04a7212016-07-20 18:06:31 +0000143 elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" STREQUAL "${arch}" AND
Chris Bieneman5a5b21d2016-02-17 16:57:38 +0000144 COMPILER_RT_HAS_EXPLICIT_DEFAULT_TARGET_TRIPLE)
145 # Bail out if we cannot target the architecture we plan to test.
146 message(FATAL_ERROR "Cannot compile for ${arch}:\n${TARGET_${arch}_OUTPUT}")
147 endif()
148endmacro()
Chris Bieneman648d3bc2016-06-03 17:34:02 +0000149
150macro(detect_target_arch)
151 check_symbol_exists(__arm__ "" __ARM)
152 check_symbol_exists(__aarch64__ "" __AARCH64)
153 check_symbol_exists(__x86_64__ "" __X86_64)
154 check_symbol_exists(__i686__ "" __I686)
155 check_symbol_exists(__i386__ "" __I386)
156 check_symbol_exists(__mips__ "" __MIPS)
157 check_symbol_exists(__mips64__ "" __MIPS64)
158 check_symbol_exists(__s390x__ "" __S390X)
159 check_symbol_exists(__wasm32__ "" __WEBASSEMBLY32)
160 check_symbol_exists(__wasm64__ "" __WEBASSEMBLY64)
161 if(__ARM)
162 add_default_target_arch(arm)
163 elseif(__AARCH64)
164 add_default_target_arch(aarch64)
165 elseif(__X86_64)
166 add_default_target_arch(x86_64)
167 elseif(__I686)
168 add_default_target_arch(i686)
169 elseif(__I386)
170 add_default_target_arch(i386)
171 elseif(__MIPS64) # must be checked before __MIPS
172 add_default_target_arch(mips64)
173 elseif(__MIPS)
174 add_default_target_arch(mips)
175 elseif(__S390X)
176 add_default_target_arch(s390x)
177 elseif(__WEBASSEMBLY32)
178 add_default_target_arch(wasm32)
179 elseif(__WEBASSEMBLY64)
180 add_default_target_arch(wasm64)
181 endif()
182endmacro()
Jonas Hahnfeld9b2c3ab2016-08-02 05:51:05 +0000183
184macro(load_llvm_config)
185 if (NOT LLVM_CONFIG_PATH)
186 find_program(LLVM_CONFIG_PATH "llvm-config"
187 DOC "Path to llvm-config binary")
188 if (NOT LLVM_CONFIG_PATH)
189 message(FATAL_ERROR "llvm-config not found: specify LLVM_CONFIG_PATH")
190 endif()
191 endif()
192 execute_process(
193 COMMAND ${LLVM_CONFIG_PATH} "--obj-root" "--bindir" "--libdir" "--src-root"
194 RESULT_VARIABLE HAD_ERROR
195 OUTPUT_VARIABLE CONFIG_OUTPUT)
196 if (HAD_ERROR)
197 message(FATAL_ERROR "llvm-config failed with status ${HAD_ERROR}")
198 endif()
199 string(REGEX REPLACE "[ \t]*[\r\n]+[ \t]*" ";" CONFIG_OUTPUT ${CONFIG_OUTPUT})
Michal Gorny697026f2016-09-14 13:42:31 +0000200 list(GET CONFIG_OUTPUT 0 BINARY_DIR)
201 list(GET CONFIG_OUTPUT 1 TOOLS_BINARY_DIR)
202 list(GET CONFIG_OUTPUT 2 LIBRARY_DIR)
203 list(GET CONFIG_OUTPUT 3 MAIN_SRC_DIR)
204
205 set(LLVM_BINARY_DIR ${BINARY_DIR} CACHE PATH "Path to LLVM build tree")
206 set(LLVM_TOOLS_BINARY_DIR ${TOOLS_BINARY_DIR} CACHE PATH "Path to llvm/bin")
207 set(LLVM_LIBRARY_DIR ${LIBRARY_DIR} CACHE PATH "Path to llvm/lib")
208 set(LLVM_MAIN_SRC_DIR ${MAIN_SRC_DIR} CACHE PATH "Path to LLVM source tree")
Jonas Hahnfeld9b2c3ab2016-08-02 05:51:05 +0000209
210 # Make use of LLVM CMake modules.
211 file(TO_CMAKE_PATH ${LLVM_BINARY_DIR} LLVM_BINARY_DIR_CMAKE_STYLE)
212 set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR_CMAKE_STYLE}/lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm")
213 list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}")
214 # Get some LLVM variables from LLVMConfig.
215 include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake")
216
217 set(LLVM_LIBRARY_OUTPUT_INTDIR
218 ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
219endmacro()
220
221macro(construct_compiler_rt_default_triple)
222 set(COMPILER_RT_DEFAULT_TARGET_TRIPLE ${TARGET_TRIPLE} CACHE STRING
223 "Default triple for which compiler-rt runtimes will be built.")
224 if(DEFINED COMPILER_RT_TEST_TARGET_TRIPLE)
225 # Backwards compatibility: this variable used to be called
226 # COMPILER_RT_TEST_TARGET_TRIPLE.
227 set(COMPILER_RT_DEFAULT_TARGET_TRIPLE ${COMPILER_RT_TEST_TARGET_TRIPLE})
228 endif()
229
230 string(REPLACE "-" ";" TARGET_TRIPLE_LIST ${COMPILER_RT_DEFAULT_TARGET_TRIPLE})
231 list(GET TARGET_TRIPLE_LIST 0 COMPILER_RT_DEFAULT_TARGET_ARCH)
232 list(GET TARGET_TRIPLE_LIST 1 COMPILER_RT_DEFAULT_TARGET_OS)
233 list(GET TARGET_TRIPLE_LIST 2 COMPILER_RT_DEFAULT_TARGET_ABI)
234 # Determine if test target triple is specified explicitly, and doesn't match the
235 # default.
236 if(NOT COMPILER_RT_DEFAULT_TARGET_TRIPLE STREQUAL TARGET_TRIPLE)
237 set(COMPILER_RT_HAS_EXPLICIT_DEFAULT_TARGET_TRIPLE TRUE)
238 else()
239 set(COMPILER_RT_HAS_EXPLICIT_DEFAULT_TARGET_TRIPLE FALSE)
240 endif()
241endmacro()