2015-02-26 07:07:32 +08:00
|
|
|
include(CMakePushCheckState)
|
2017-07-28 11:39:38 +08:00
|
|
|
include(CheckCCompilerFlag)
|
2014-02-18 15:26:58 +08:00
|
|
|
include(CheckCXXCompilerFlag)
|
2014-03-04 21:28:21 +08:00
|
|
|
include(CheckLibraryExists)
|
2014-02-27 14:52:41 +08:00
|
|
|
include(CheckSymbolExists)
|
2015-02-10 09:42:44 +08:00
|
|
|
include(TestBigEndian)
|
2014-02-18 15:26:58 +08:00
|
|
|
|
2015-05-06 04:13:39 +08:00
|
|
|
function(check_linker_flag flag out_var)
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${flag}")
|
|
|
|
check_cxx_compiler_flag("" ${out_var})
|
|
|
|
cmake_pop_check_state()
|
|
|
|
endfunction()
|
|
|
|
|
2017-07-28 11:39:38 +08:00
|
|
|
check_library_exists(c fopen "" COMPILER_RT_HAS_LIBC)
|
2018-05-23 06:58:48 +08:00
|
|
|
if (COMPILER_RT_RUNTIME_LIBRARY STREQUAL "builtins")
|
|
|
|
include(HandleCompilerRT)
|
|
|
|
find_compiler_rt_library(builtins COMPILER_RT_BUILTINS_LIBRARY)
|
|
|
|
else()
|
2017-08-01 06:46:43 +08:00
|
|
|
if (ANDROID)
|
|
|
|
check_library_exists(gcc __gcc_personality_v0 "" COMPILER_RT_HAS_GCC_LIB)
|
|
|
|
else()
|
|
|
|
check_library_exists(gcc_s __gcc_personality_v0 "" COMPILER_RT_HAS_GCC_S_LIB)
|
|
|
|
endif()
|
2017-07-28 11:39:38 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_c_compiler_flag(-nodefaultlibs COMPILER_RT_HAS_NODEFAULTLIBS_FLAG)
|
|
|
|
if (COMPILER_RT_HAS_NODEFAULTLIBS_FLAG)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -nodefaultlibs")
|
|
|
|
if (COMPILER_RT_HAS_LIBC)
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES c)
|
|
|
|
endif ()
|
2018-05-23 06:58:48 +08:00
|
|
|
if (COMPILER_RT_RUNTIME_LIBRARY STREQUAL "builtins")
|
2017-07-28 11:39:38 +08:00
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES "${COMPILER_RT_BUILTINS_LIBRARY}")
|
|
|
|
elseif (COMPILER_RT_HAS_GCC_S_LIB)
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES gcc_s)
|
2017-08-01 06:46:43 +08:00
|
|
|
elseif (COMPILER_RT_HAS_GCC_LIB)
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES gcc)
|
2017-07-28 11:39:38 +08:00
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
2014-02-18 15:26:58 +08:00
|
|
|
# CodeGen options.
|
|
|
|
check_cxx_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG)
|
2014-02-18 16:07:09 +08:00
|
|
|
check_cxx_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_FLAG)
|
|
|
|
check_cxx_compiler_flag(-fno-exceptions COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG)
|
|
|
|
check_cxx_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG)
|
|
|
|
check_cxx_compiler_flag(-funwind-tables COMPILER_RT_HAS_FUNWIND_TABLES_FLAG)
|
|
|
|
check_cxx_compiler_flag(-fno-stack-protector COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG)
|
2015-06-16 05:08:47 +08:00
|
|
|
check_cxx_compiler_flag(-fno-sanitize=safe-stack COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG)
|
2016-03-05 18:01:04 +08:00
|
|
|
check_cxx_compiler_flag(-frtti COMPILER_RT_HAS_FRTTI_FLAG)
|
2014-02-18 15:52:40 +08:00
|
|
|
check_cxx_compiler_flag(-fno-rtti COMPILER_RT_HAS_FNO_RTTI_FLAG)
|
2014-02-18 16:07:09 +08:00
|
|
|
check_cxx_compiler_flag(-ffreestanding COMPILER_RT_HAS_FFREESTANDING_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -fno-function-sections" COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG)
|
2014-03-18 20:49:22 +08:00
|
|
|
check_cxx_compiler_flag(-std=c++11 COMPILER_RT_HAS_STD_CXX11_FLAG)
|
2014-04-01 21:16:30 +08:00
|
|
|
check_cxx_compiler_flag(-ftls-model=initial-exec COMPILER_RT_HAS_FTLS_MODEL_INITIAL_EXEC)
|
2015-01-01 02:20:52 +08:00
|
|
|
check_cxx_compiler_flag(-fno-lto COMPILER_RT_HAS_FNO_LTO_FLAG)
|
2015-12-10 06:26:38 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -msse3" COMPILER_RT_HAS_MSSE3_FLAG)
|
2017-01-11 00:39:36 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -msse4.2" COMPILER_RT_HAS_MSSE4_2_FLAG)
|
2015-12-08 07:21:36 +08:00
|
|
|
check_cxx_compiler_flag(--sysroot=. COMPILER_RT_HAS_SYSROOT_FLAG)
|
[scudo] Refactor of CRC32 and ARM runtime CRC32 detection
Summary:
ARM & AArch64 runtime detection for hardware support of CRC32 has been added
via check of the AT_HWVAL auxiliary vector.
Following Michal's suggestions in D28417, the CRC32 code has been further
changed and looks better now. When compiled with full relro (which is strongly
suggested to benefit from additional hardening), the weak symbol for
computeHardwareCRC32 is read-only and the assembly generated is fairly clean
and straight forward. As suggested, an additional optimization is to skip
the runtime check if SSE 4.2 has been enabled globally, as opposed to only
for scudo_crc32.cpp.
scudo_crc32.h has no purpose anymore and was removed.
Reviewers: alekseyshl, kcc, rengolin, mgorny, phosek
Reviewed By: rengolin, mgorny
Subscribers: aemerson, rengolin, llvm-commits
Differential Revision: https://reviews.llvm.org/D28574
llvm-svn: 292409
2017-01-19 01:11:17 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -mcrc" COMPILER_RT_HAS_MCRC_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
|
2015-12-01 01:42:30 +08:00
|
|
|
if(NOT WIN32 AND NOT CYGWIN)
|
|
|
|
# MinGW warns if -fvisibility-inlines-hidden is used.
|
|
|
|
check_cxx_compiler_flag("-fvisibility-inlines-hidden" COMPILER_RT_HAS_FVISIBILITY_INLINES_HIDDEN_FLAG)
|
|
|
|
endif()
|
|
|
|
|
2014-02-18 15:52:40 +08:00
|
|
|
check_cxx_compiler_flag(/GR COMPILER_RT_HAS_GR_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(/GS COMPILER_RT_HAS_GS_FLAG)
|
|
|
|
check_cxx_compiler_flag(/MT COMPILER_RT_HAS_MT_FLAG)
|
|
|
|
check_cxx_compiler_flag(/Oy COMPILER_RT_HAS_Oy_FLAG)
|
|
|
|
|
|
|
|
# Debug info flags.
|
|
|
|
check_cxx_compiler_flag(-gline-tables-only COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG)
|
|
|
|
check_cxx_compiler_flag(-g COMPILER_RT_HAS_G_FLAG)
|
|
|
|
check_cxx_compiler_flag(/Zi COMPILER_RT_HAS_Zi_FLAG)
|
2015-02-03 04:37:25 +08:00
|
|
|
|
2014-02-18 15:26:58 +08:00
|
|
|
# Warnings.
|
2014-03-06 20:25:02 +08:00
|
|
|
check_cxx_compiler_flag(-Wall COMPILER_RT_HAS_WALL_FLAG)
|
2014-02-24 19:32:49 +08:00
|
|
|
check_cxx_compiler_flag(-Werror COMPILER_RT_HAS_WERROR_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -Wframe-larger-than=512" COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wglobal-constructors" COMPILER_RT_HAS_WGLOBAL_CONSTRUCTORS_FLAG)
|
2014-11-14 05:19:53 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -Wc99-extensions" COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wgnu" COMPILER_RT_HAS_WGNU_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wnon-virtual-dtor" COMPILER_RT_HAS_WNON_VIRTUAL_DTOR_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wvariadic-macros" COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG)
|
2016-06-18 02:30:37 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -Wunused-parameter" COMPILER_RT_HAS_WUNUSED_PARAMETER_FLAG)
|
2017-01-05 11:41:41 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -Wcovered-switch-default" COMPILER_RT_HAS_WCOVERED_SWITCH_DEFAULT_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
|
2016-06-18 01:48:52 +08:00
|
|
|
check_cxx_compiler_flag(/W4 COMPILER_RT_HAS_W4_FLAG)
|
2014-02-24 19:32:49 +08:00
|
|
|
check_cxx_compiler_flag(/WX COMPILER_RT_HAS_WX_FLAG)
|
2014-10-24 04:39:58 +08:00
|
|
|
check_cxx_compiler_flag(/wd4146 COMPILER_RT_HAS_WD4146_FLAG)
|
|
|
|
check_cxx_compiler_flag(/wd4291 COMPILER_RT_HAS_WD4291_FLAG)
|
2016-06-18 02:12:50 +08:00
|
|
|
check_cxx_compiler_flag(/wd4221 COMPILER_RT_HAS_WD4221_FLAG)
|
2014-08-26 20:33:00 +08:00
|
|
|
check_cxx_compiler_flag(/wd4391 COMPILER_RT_HAS_WD4391_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(/wd4722 COMPILER_RT_HAS_WD4722_FLAG)
|
2014-10-24 04:39:58 +08:00
|
|
|
check_cxx_compiler_flag(/wd4800 COMPILER_RT_HAS_WD4800_FLAG)
|
2014-02-27 14:52:41 +08:00
|
|
|
|
|
|
|
# Symbols.
|
|
|
|
check_symbol_exists(__func__ "" COMPILER_RT_HAS_FUNC_SYMBOL)
|
2014-03-04 21:28:21 +08:00
|
|
|
|
|
|
|
# Libraries.
|
|
|
|
check_library_exists(dl dlopen "" COMPILER_RT_HAS_LIBDL)
|
2015-05-30 06:31:28 +08:00
|
|
|
check_library_exists(rt shm_open "" COMPILER_RT_HAS_LIBRT)
|
2014-08-22 20:26:34 +08:00
|
|
|
check_library_exists(m pow "" COMPILER_RT_HAS_LIBM)
|
2014-03-04 21:28:21 +08:00
|
|
|
check_library_exists(pthread pthread_create "" COMPILER_RT_HAS_LIBPTHREAD)
|
2017-08-01 06:46:43 +08:00
|
|
|
if (ANDROID AND COMPILER_RT_HAS_LIBDL)
|
|
|
|
# Android's libstdc++ has a dependency on libdl.
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES dl)
|
|
|
|
endif()
|
2018-05-23 02:33:27 +08:00
|
|
|
check_library_exists(c++ __cxa_throw "" COMPILER_RT_HAS_LIBCXX)
|
2014-08-22 20:26:34 +08:00
|
|
|
check_library_exists(stdc++ __cxa_throw "" COMPILER_RT_HAS_LIBSTDCXX)
|
2014-08-09 06:01:20 +08:00
|
|
|
|
2015-05-06 04:13:39 +08:00
|
|
|
# Linker flags.
|
|
|
|
if(ANDROID)
|
|
|
|
check_linker_flag("-Wl,-z,global" COMPILER_RT_HAS_Z_GLOBAL)
|
2015-07-25 03:00:16 +08:00
|
|
|
check_library_exists(log __android_log_write "" COMPILER_RT_HAS_LIBLOG)
|
2015-05-06 04:13:39 +08:00
|
|
|
endif()
|
|
|
|
|
2014-08-09 06:01:20 +08:00
|
|
|
# Architectures.
|
|
|
|
|
|
|
|
# List of all architectures we can target.
|
|
|
|
set(COMPILER_RT_SUPPORTED_ARCH)
|
|
|
|
|
2018-06-17 17:51:33 +08:00
|
|
|
# Try to compile a very simple source file to ensure we can target the given
|
|
|
|
# platform. We use the results of these tests to build only the various target
|
|
|
|
# runtime libraries supported by our current compilers cross-compiling
|
|
|
|
# abilities.
|
|
|
|
set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.cc)
|
|
|
|
file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\n#include <stdio.h>\nint main() { printf(\"hello, world\"); }\n")
|
|
|
|
|
2015-01-30 05:32:34 +08:00
|
|
|
# Detect whether the current target platform is 32-bit or 64-bit, and setup
|
|
|
|
# the correct commandline flags needed to attempt to target 32-bit and 64-bit.
|
|
|
|
if (NOT CMAKE_SIZEOF_VOID_P EQUAL 4 AND
|
|
|
|
NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
message(FATAL_ERROR "Please use architecture with 4 or 8 byte pointers.")
|
|
|
|
endif()
|
|
|
|
|
[CMake] Support platform building builtins without a full toolchain
Summary:
This patch adds support for building lib/builtins without a fully functioning toolchain. It allows you to bootstrap a cross-compiler, which previously couldn't be done with CMake.
This patch contains the following specific changes:
* Split builtin-specific code out of config-ix.cmake into builtin-config-ix.cmake
* Split some common CMake functionality needed by both builtins and sanitizers into base-config-ix.cmake
* Made lib/builtins/CMakeLists.txt able to be a top-level CMake configuration
I have tested this on Darwin targeting embedded Darwin, and on FreeBSD x86_64 targeting FreeBSD AArch64.
This patch depends on http://reviews.llvm.org/D19692, and is the last part of http://reviews.llvm.org/D16653.
Reviewers: samsonov, iains, jroelofs
Subscribers: compnerd, aemerson, tberghammer, danalbert, srhines, emaste, llvm-commits
Differential Revision: http://reviews.llvm.org/D19742
llvm-svn: 268977
2016-05-10 05:45:52 +08:00
|
|
|
test_targets()
|
2014-08-09 06:01:20 +08:00
|
|
|
|
2015-05-19 17:07:37 +08:00
|
|
|
# Returns a list of architecture specific target cflags in @out_var list.
|
2015-01-30 05:32:34 +08:00
|
|
|
function(get_target_flags_for_arch arch out_var)
|
|
|
|
list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
|
|
|
|
if(ARCH_INDEX EQUAL -1)
|
|
|
|
message(FATAL_ERROR "Unsupported architecture: ${arch}")
|
|
|
|
else()
|
2015-08-21 01:32:06 +08:00
|
|
|
if (NOT APPLE)
|
|
|
|
set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE)
|
|
|
|
else()
|
|
|
|
# This is only called in constructing cflags for tests executing on the
|
|
|
|
# host. This will need to all be cleaned up to support building tests
|
|
|
|
# for cross-targeted hardware (i.e. iOS).
|
|
|
|
set(${out_var} -arch ${arch} PARENT_SCOPE)
|
|
|
|
endif()
|
2015-01-30 05:32:34 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2016-11-30 03:25:53 +08:00
|
|
|
# Returns a compiler and CFLAGS that should be used to run tests for the
|
|
|
|
# specific architecture. When cross-compiling, this is controled via
|
|
|
|
# COMPILER_RT_TEST_COMPILER and COMPILER_RT_TEST_COMPILER_CFLAGS.
|
|
|
|
macro(get_test_cc_for_arch arch cc_out cflags_out)
|
|
|
|
if(ANDROID OR ${arch} MATCHES "arm|aarch64")
|
|
|
|
# This is only true if we are cross-compiling.
|
|
|
|
# Build all tests with host compiler and use host tools.
|
|
|
|
set(${cc_out} ${COMPILER_RT_TEST_COMPILER})
|
|
|
|
set(${cflags_out} ${COMPILER_RT_TEST_COMPILER_CFLAGS})
|
|
|
|
else()
|
|
|
|
get_target_flags_for_arch(${arch} ${cflags_out})
|
|
|
|
if(APPLE)
|
|
|
|
list(APPEND ${cflags_out} ${DARWIN_osx_CFLAGS})
|
|
|
|
endif()
|
|
|
|
string(REPLACE ";" " " ${cflags_out} "${${cflags_out}}")
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(ARM64 aarch64)
|
2015-09-26 11:26:01 +08:00
|
|
|
set(ARM32 arm armhf)
|
2018-05-09 22:44:54 +08:00
|
|
|
set(HEXAGON hexagon)
|
2017-08-29 04:30:12 +08:00
|
|
|
set(X86 i386)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(X86_64 x86_64)
|
2015-09-25 00:45:58 +08:00
|
|
|
set(MIPS32 mips mipsel)
|
|
|
|
set(MIPS64 mips64 mips64el)
|
|
|
|
set(PPC64 powerpc64 powerpc64le)
|
2018-03-01 15:47:27 +08:00
|
|
|
set(RISCV32 riscv32)
|
|
|
|
set(RISCV64 riscv64)
|
2016-04-16 06:25:04 +08:00
|
|
|
set(S390X s390x)
|
2016-01-14 00:56:15 +08:00
|
|
|
set(WASM32 wasm32)
|
|
|
|
set(WASM64 wasm64)
|
2015-09-25 00:45:58 +08:00
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
if(APPLE)
|
|
|
|
set(ARM64 arm64)
|
2016-02-02 10:01:17 +08:00
|
|
|
set(ARM32 armv7 armv7s armv7k)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(X86_64 x86_64 x86_64h)
|
|
|
|
endif()
|
|
|
|
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_SANITIZER_COMMON_SUPPORTED_ARCH ${X86} ${X86_64} ${PPC64}
|
2016-04-16 06:25:04 +08:00
|
|
|
${ARM32} ${ARM64} ${MIPS32} ${MIPS64} ${S390X})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_ASAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
|
2016-11-29 16:25:00 +08:00
|
|
|
${MIPS32} ${MIPS64} ${PPC64} ${S390X})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_DFSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
|
2018-06-15 04:46:07 +08:00
|
|
|
set(ALL_FUZZER_SUPPORTED_ARCH ${X86_64} ${ARM64})
|
2017-04-11 22:58:26 +08:00
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64})
|
|
|
|
else()
|
2017-10-27 04:59:04 +08:00
|
|
|
set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64} ${ARM32} ${PPC64})
|
2017-04-11 22:58:26 +08:00
|
|
|
endif()
|
2016-06-21 15:13:24 +08:00
|
|
|
set(ALL_MSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64} ${PPC64})
|
[HWASan] Port HWASan to Linux x86-64 (compiler-rt)
Summary:
Porting HWASan to Linux x86-64, first of the three patches, compiler-rt part.
The approach is similar to ARM case, trap signal is used to communicate
memory tag check failure. int3 instruction is used to generate a signal,
access parameters are stored in nop [eax + offset] instruction immediately
following the int3 one
Had to add HWASan init on malloc because, due to much less interceptors
defined (most other sanitizers intercept much more and get initalized
via one of those interceptors or don't care about malloc), HWASan was not
initialized yet when libstdc++ was trying to allocate memory for its own
fixed-size heap, which led to CHECK-fail in AllocateFromLocalPool.
Also added the CHECK() failure handler with more detailed message and
stack reporting.
Reviewers: eugenis
Subscribers: kubamracek, dberris, mgorny, kristof.beyls, delcypher, #sanitizers, llvm-commits
Differential Revision: https://reviews.llvm.org/D44705
llvm-svn: 328385
2018-03-24 07:38:04 +08:00
|
|
|
set(ALL_HWASAN_SUPPORTED_ARCH ${X86_64} ${ARM64})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_PROFILE_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${PPC64}
|
2016-11-23 16:28:42 +08:00
|
|
|
${MIPS32} ${MIPS64} ${S390X})
|
2015-12-09 05:54:39 +08:00
|
|
|
set(ALL_TSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64} ${PPC64})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_UBSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
|
2016-04-16 06:25:04 +08:00
|
|
|
${MIPS32} ${MIPS64} ${PPC64} ${S390X})
|
2016-03-04 14:15:59 +08:00
|
|
|
set(ALL_SAFESTACK_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64} ${MIPS32} ${MIPS64})
|
2017-10-07 04:51:51 +08:00
|
|
|
set(ALL_CFI_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS64})
|
2016-10-06 17:58:11 +08:00
|
|
|
set(ALL_ESAN_SUPPORTED_ARCH ${X86_64} ${MIPS64})
|
2017-06-19 19:28:59 +08:00
|
|
|
set(ALL_SCUDO_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS32} ${MIPS64})
|
2017-11-28 19:49:22 +08:00
|
|
|
if(APPLE)
|
|
|
|
set(ALL_XRAY_SUPPORTED_ARCH ${X86_64})
|
|
|
|
else()
|
2017-02-16 06:40:29 +08:00
|
|
|
set(ALL_XRAY_SUPPORTED_ARCH ${X86_64} ${ARM32} ${ARM64} ${MIPS32} ${MIPS64} powerpc64le)
|
2017-11-28 19:49:22 +08:00
|
|
|
endif()
|
2018-04-10 04:18:10 +08:00
|
|
|
set(ALL_SHADOWCALLSTACK_SUPPORTED_ARCH ${X86_64} ${ARM64})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
include(CompilerRTDarwinUtils)
|
|
|
|
|
2015-09-23 23:18:17 +08:00
|
|
|
find_darwin_sdk_dir(DARWIN_osx_SYSROOT macosx)
|
|
|
|
find_darwin_sdk_dir(DARWIN_iossim_SYSROOT iphonesimulator)
|
|
|
|
find_darwin_sdk_dir(DARWIN_ios_SYSROOT iphoneos)
|
2016-01-13 07:51:03 +08:00
|
|
|
find_darwin_sdk_dir(DARWIN_watchossim_SYSROOT watchsimulator)
|
|
|
|
find_darwin_sdk_dir(DARWIN_watchos_SYSROOT watchos)
|
|
|
|
find_darwin_sdk_dir(DARWIN_tvossim_SYSROOT appletvsimulator)
|
|
|
|
find_darwin_sdk_dir(DARWIN_tvos_SYSROOT appletvos)
|
|
|
|
|
2016-08-20 06:22:35 +08:00
|
|
|
if(NOT DARWIN_osx_SYSROOT)
|
|
|
|
if(EXISTS /usr/include)
|
|
|
|
set(DARWIN_osx_SYSROOT /)
|
|
|
|
else()
|
|
|
|
message(ERROR "Could not detect OS X Sysroot. Either install Xcode or the Apple Command Line Tools")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-01-13 07:51:03 +08:00
|
|
|
if(COMPILER_RT_ENABLE_IOS)
|
|
|
|
list(APPEND DARWIN_EMBEDDED_PLATFORMS ios)
|
|
|
|
set(DARWIN_ios_MIN_VER_FLAG -miphoneos-version-min)
|
|
|
|
set(DARWIN_ios_SANITIZER_MIN_VER_FLAG
|
2017-03-28 01:16:47 +08:00
|
|
|
${DARWIN_ios_MIN_VER_FLAG}=8.0)
|
2016-01-13 07:51:03 +08:00
|
|
|
endif()
|
|
|
|
if(COMPILER_RT_ENABLE_WATCHOS)
|
|
|
|
list(APPEND DARWIN_EMBEDDED_PLATFORMS watchos)
|
|
|
|
set(DARWIN_watchos_MIN_VER_FLAG -mwatchos-version-min)
|
|
|
|
set(DARWIN_watchos_SANITIZER_MIN_VER_FLAG
|
|
|
|
${DARWIN_watchos_MIN_VER_FLAG}=2.0)
|
|
|
|
endif()
|
|
|
|
if(COMPILER_RT_ENABLE_TVOS)
|
|
|
|
list(APPEND DARWIN_EMBEDDED_PLATFORMS tvos)
|
|
|
|
set(DARWIN_tvos_MIN_VER_FLAG -mtvos-version-min)
|
|
|
|
set(DARWIN_tvos_SANITIZER_MIN_VER_FLAG
|
|
|
|
${DARWIN_tvos_MIN_VER_FLAG}=9.0)
|
|
|
|
endif()
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
|
|
|
# Note: In order to target x86_64h on OS X the minimum deployment target must
|
|
|
|
# be 10.8 or higher.
|
|
|
|
set(SANITIZER_COMMON_SUPPORTED_OS osx)
|
2015-10-01 05:23:22 +08:00
|
|
|
set(PROFILE_SUPPORTED_OS osx)
|
2015-11-03 22:13:59 +08:00
|
|
|
set(TSAN_SUPPORTED_OS osx)
|
2017-11-28 19:49:22 +08:00
|
|
|
set(XRAY_SUPPORTED_OS osx)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
if(NOT SANITIZER_MIN_OSX_VERSION)
|
|
|
|
string(REGEX MATCH "-mmacosx-version-min=([.0-9]+)"
|
|
|
|
MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}")
|
|
|
|
if(MACOSX_VERSION_MIN_FLAG)
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION "${CMAKE_MATCH_1}")
|
|
|
|
elseif(CMAKE_OSX_DEPLOYMENT_TARGET)
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION ${CMAKE_OSX_DEPLOYMENT_TARGET})
|
|
|
|
else()
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION 10.9)
|
|
|
|
endif()
|
|
|
|
if(SANITIZER_MIN_OSX_VERSION VERSION_LESS "10.7")
|
2016-11-15 02:27:47 +08:00
|
|
|
message(FATAL_ERROR "macOS deployment target '${SANITIZER_MIN_OSX_VERSION}' is too old.")
|
|
|
|
endif()
|
|
|
|
if(SANITIZER_MIN_OSX_VERSION VERSION_GREATER "10.9")
|
|
|
|
message(WARNING "macOS deployment target '${SANITIZER_MIN_OSX_VERSION}' is too new, setting to '10.9' instead.")
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION 10.9)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# We're setting the flag manually for each target OS
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET "")
|
|
|
|
|
|
|
|
set(DARWIN_COMMON_CFLAGS -stdlib=libc++)
|
2017-01-10 12:33:04 +08:00
|
|
|
set(DARWIN_COMMON_LINK_FLAGS
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
-stdlib=libc++
|
|
|
|
-lc++
|
|
|
|
-lc++abi)
|
|
|
|
|
2016-01-07 07:15:04 +08:00
|
|
|
check_linker_flag("-fapplication-extension" COMPILER_RT_HAS_APP_EXTENSION)
|
|
|
|
if(COMPILER_RT_HAS_APP_EXTENSION)
|
2017-01-10 12:33:04 +08:00
|
|
|
list(APPEND DARWIN_COMMON_LINK_FLAGS "-fapplication-extension")
|
2016-01-07 07:15:04 +08:00
|
|
|
endif()
|
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(DARWIN_osx_CFLAGS
|
|
|
|
${DARWIN_COMMON_CFLAGS}
|
|
|
|
-mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
|
2017-01-10 12:33:04 +08:00
|
|
|
set(DARWIN_osx_LINK_FLAGS
|
|
|
|
${DARWIN_COMMON_LINK_FLAGS}
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
-mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
|
|
|
|
|
2015-09-23 23:18:17 +08:00
|
|
|
if(DARWIN_osx_SYSROOT)
|
|
|
|
list(APPEND DARWIN_osx_CFLAGS -isysroot ${DARWIN_osx_SYSROOT})
|
2017-01-10 12:33:04 +08:00
|
|
|
list(APPEND DARWIN_osx_LINK_FLAGS -isysroot ${DARWIN_osx_SYSROOT})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Figure out which arches to use for each OS
|
|
|
|
darwin_get_toolchain_supported_archs(toolchain_arches)
|
|
|
|
message(STATUS "Toolchain supported arches: ${toolchain_arches}")
|
|
|
|
|
|
|
|
if(NOT MACOSX_VERSION_MIN_FLAG)
|
|
|
|
darwin_test_archs(osx
|
|
|
|
DARWIN_osx_ARCHS
|
|
|
|
${toolchain_arches})
|
|
|
|
message(STATUS "OSX supported arches: ${DARWIN_osx_ARCHS}")
|
|
|
|
foreach(arch ${DARWIN_osx_ARCHS})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
endforeach()
|
|
|
|
|
2016-01-13 07:51:03 +08:00
|
|
|
foreach(platform ${DARWIN_EMBEDDED_PLATFORMS})
|
|
|
|
if(DARWIN_${platform}sim_SYSROOT)
|
|
|
|
set(DARWIN_${platform}sim_CFLAGS
|
|
|
|
${DARWIN_COMMON_CFLAGS}
|
|
|
|
${DARWIN_${platform}_SANITIZER_MIN_VER_FLAG}
|
2016-05-26 19:18:22 +08:00
|
|
|
-isysroot ${DARWIN_${platform}sim_SYSROOT})
|
2017-01-10 12:33:04 +08:00
|
|
|
set(DARWIN_${platform}sim_LINK_FLAGS
|
|
|
|
${DARWIN_COMMON_LINK_FLAGS}
|
2016-01-13 07:51:03 +08:00
|
|
|
${DARWIN_${platform}_SANITIZER_MIN_VER_FLAG}
|
|
|
|
-isysroot ${DARWIN_${platform}sim_SYSROOT})
|
|
|
|
|
|
|
|
set(DARWIN_${platform}sim_SKIP_CC_KEXT On)
|
|
|
|
darwin_test_archs(${platform}sim
|
|
|
|
DARWIN_${platform}sim_ARCHS
|
|
|
|
${toolchain_arches})
|
|
|
|
message(STATUS "${platform} Simulator supported arches: ${DARWIN_${platform}sim_ARCHS}")
|
2016-09-21 05:36:33 +08:00
|
|
|
if(DARWIN_${platform}sim_ARCHS)
|
2016-01-13 07:51:03 +08:00
|
|
|
list(APPEND SANITIZER_COMMON_SUPPORTED_OS ${platform}sim)
|
|
|
|
list(APPEND PROFILE_SUPPORTED_OS ${platform}sim)
|
2017-07-13 01:30:54 +08:00
|
|
|
list(APPEND TSAN_SUPPORTED_OS ${platform}sim)
|
2016-01-13 07:51:03 +08:00
|
|
|
endif()
|
|
|
|
foreach(arch ${DARWIN_${platform}sim_ARCHS})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
endforeach()
|
2015-10-02 02:58:59 +08:00
|
|
|
endif()
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
2016-01-13 07:51:03 +08:00
|
|
|
if(DARWIN_${platform}_SYSROOT)
|
|
|
|
set(DARWIN_${platform}_CFLAGS
|
|
|
|
${DARWIN_COMMON_CFLAGS}
|
|
|
|
${DARWIN_${platform}_SANITIZER_MIN_VER_FLAG}
|
|
|
|
-isysroot ${DARWIN_${platform}_SYSROOT})
|
2017-01-10 12:33:04 +08:00
|
|
|
set(DARWIN_${platform}_LINK_FLAGS
|
|
|
|
${DARWIN_COMMON_LINK_FLAGS}
|
2016-01-13 07:51:03 +08:00
|
|
|
${DARWIN_${platform}_SANITIZER_MIN_VER_FLAG}
|
|
|
|
-isysroot ${DARWIN_${platform}_SYSROOT})
|
|
|
|
|
|
|
|
darwin_test_archs(${platform}
|
|
|
|
DARWIN_${platform}_ARCHS
|
|
|
|
${toolchain_arches})
|
|
|
|
message(STATUS "${platform} supported arches: ${DARWIN_${platform}_ARCHS}")
|
|
|
|
if(DARWIN_${platform}_ARCHS)
|
|
|
|
list(APPEND SANITIZER_COMMON_SUPPORTED_OS ${platform})
|
|
|
|
list(APPEND PROFILE_SUPPORTED_OS ${platform})
|
2017-07-13 04:25:14 +08:00
|
|
|
list(APPEND TSAN_SUPPORTED_OS ${platform})
|
2016-01-13 07:51:03 +08:00
|
|
|
endif()
|
|
|
|
foreach(arch ${DARWIN_${platform}_ARCHS})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
endforeach()
|
2015-10-02 02:58:59 +08:00
|
|
|
endif()
|
2016-01-13 07:51:03 +08:00
|
|
|
endforeach()
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
endif()
|
|
|
|
|
2016-01-27 17:28:01 +08:00
|
|
|
# for list_intersect
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
include(CompilerRTUtils)
|
|
|
|
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(SANITIZER_COMMON_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_SANITIZER_COMMON_SUPPORTED_ARCH
|
|
|
|
COMPILER_RT_SUPPORTED_ARCH
|
|
|
|
)
|
|
|
|
set(LSAN_COMMON_SUPPORTED_ARCH ${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
set(UBSAN_COMMON_SUPPORTED_ARCH ${SANITIZER_COMMON_SUPPORTED_ARCH})
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(ASAN_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_ASAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(DFSAN_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_DFSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(LSAN_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_LSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(MSAN_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_MSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2017-12-09 09:31:51 +08:00
|
|
|
list_intersect(HWASAN_SUPPORTED_ARCH
|
|
|
|
ALL_HWASAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(PROFILE_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_PROFILE_SUPPORTED_ARCH
|
2015-10-01 05:23:22 +08:00
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(TSAN_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_TSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(UBSAN_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_UBSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(SAFESTACK_SUPPORTED_ARCH
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
ALL_SAFESTACK_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-01-27 17:28:01 +08:00
|
|
|
list_intersect(CFI_SUPPORTED_ARCH
|
2015-12-16 07:00:33 +08:00
|
|
|
ALL_CFI_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2016-04-22 05:32:25 +08:00
|
|
|
list_intersect(ESAN_SUPPORTED_ARCH
|
|
|
|
ALL_ESAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
[sanitizer] Initial implementation of a Hardened Allocator
Summary:
This is an initial implementation of a Hardened Allocator based on Sanitizer Common's CombinedAllocator.
It aims at mitigating heap based vulnerabilities by adding several features to the base allocator, while staying relatively fast.
The following were implemented:
- additional consistency checks on the allocation function parameters and on the heap chunks;
- use of checksum protected chunk header, to detect corruption;
- randomness to the allocator base;
- delayed freelist (quarantine), to mitigate use after free and overall determinism.
Additional mitigations are in the works.
Reviewers: eugenis, aizatsky, pcc, krasin, vitalybuka, glider, dvyukov, kcc
Subscribers: kubabrecka, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D20084
llvm-svn: 271968
2016-06-07 09:20:26 +08:00
|
|
|
list_intersect(SCUDO_SUPPORTED_ARCH
|
|
|
|
ALL_SCUDO_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2017-11-10 15:00:55 +08:00
|
|
|
list_intersect(FUZZER_SUPPORTED_ARCH
|
|
|
|
ALL_FUZZER_SUPPORTED_ARCH
|
2018-05-25 07:55:51 +08:00
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2017-11-28 19:49:22 +08:00
|
|
|
list_intersect(XRAY_SUPPORTED_ARCH
|
|
|
|
ALL_XRAY_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2018-04-10 04:18:10 +08:00
|
|
|
list_intersect(SHADOWCALLSTACK_SUPPORTED_ARCH
|
|
|
|
ALL_SHADOWCALLSTACK_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
2017-08-22 07:25:50 +08:00
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
else()
|
|
|
|
# Architectures supported by compiler-rt libraries.
|
|
|
|
filter_available_targets(SANITIZER_COMMON_SUPPORTED_ARCH
|
|
|
|
${ALL_SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
# LSan and UBSan common files should be available on all architectures
|
|
|
|
# supported by other sanitizers (even if they build into dummy object files).
|
|
|
|
filter_available_targets(LSAN_COMMON_SUPPORTED_ARCH
|
|
|
|
${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(UBSAN_COMMON_SUPPORTED_ARCH
|
|
|
|
${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(ASAN_SUPPORTED_ARCH ${ALL_ASAN_SUPPORTED_ARCH})
|
2017-08-22 07:25:50 +08:00
|
|
|
filter_available_targets(FUZZER_SUPPORTED_ARCH ${ALL_FUZZER_SUPPORTED_ARCH})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
filter_available_targets(DFSAN_SUPPORTED_ARCH ${ALL_DFSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(LSAN_SUPPORTED_ARCH ${ALL_LSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(MSAN_SUPPORTED_ARCH ${ALL_MSAN_SUPPORTED_ARCH})
|
2017-12-09 09:31:51 +08:00
|
|
|
filter_available_targets(HWASAN_SUPPORTED_ARCH ${ALL_HWASAN_SUPPORTED_ARCH})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
filter_available_targets(PROFILE_SUPPORTED_ARCH ${ALL_PROFILE_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(TSAN_SUPPORTED_ARCH ${ALL_TSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(UBSAN_SUPPORTED_ARCH ${ALL_UBSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(SAFESTACK_SUPPORTED_ARCH
|
|
|
|
${ALL_SAFESTACK_SUPPORTED_ARCH})
|
2015-12-16 07:00:33 +08:00
|
|
|
filter_available_targets(CFI_SUPPORTED_ARCH ${ALL_CFI_SUPPORTED_ARCH})
|
2016-04-22 05:32:25 +08:00
|
|
|
filter_available_targets(ESAN_SUPPORTED_ARCH ${ALL_ESAN_SUPPORTED_ARCH})
|
[scudo] 32-bit and hardware agnostic support
Summary:
This update introduces i386 support for the Scudo Hardened Allocator, and
offers software alternatives for functions that used to require hardware
specific instruction sets. This should make porting to new architectures
easier.
Among the changes:
- The chunk header has been changed to accomodate the size limitations
encountered on 32-bit architectures. We now fit everything in 64-bit. This
was achieved by storing the amount of unused bytes in an allocation rather
than the size itself, as one can be deduced from the other with the help
of the GetActuallyAllocatedSize function. As it turns out, this header can
be used for both 64 and 32 bit, and as such we dropped the requirement for
the 128-bit compare and exchange instruction support (cmpxchg16b).
- Add 32-bit support for the checksum and the PRNG functions: if the SSE 4.2
instruction set is supported, use the 32-bit CRC32 instruction, and in the
XorShift128, use a 32-bit based state instead of 64-bit.
- Add software support for CRC32: if SSE 4.2 is not supported, fallback on a
software implementation.
- Modify tests that were not 32-bit compliant, and expand them to cover more
allocation and alignment sizes. The random shuffle test has been deactivated
for linux-i386 & linux-i686 as the 32-bit sanitizer allocator doesn't
currently randomize chunks.
Reviewers: alekseyshl, kcc
Subscribers: filcab, llvm-commits, tberghammer, danalbert, srhines, mgorny, modocache
Differential Revision: https://reviews.llvm.org/D26358
llvm-svn: 288255
2016-12-01 01:32:20 +08:00
|
|
|
filter_available_targets(SCUDO_SUPPORTED_ARCH ${ALL_SCUDO_SUPPORTED_ARCH})
|
2016-07-21 15:39:55 +08:00
|
|
|
filter_available_targets(XRAY_SUPPORTED_ARCH ${ALL_XRAY_SUPPORTED_ARCH})
|
2018-04-10 04:18:10 +08:00
|
|
|
filter_available_targets(SHADOWCALLSTACK_SUPPORTED_ARCH
|
|
|
|
${ALL_SHADOWCALLSTACK_SUPPORTED_ARCH})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
endif()
|
|
|
|
|
2016-01-23 04:26:10 +08:00
|
|
|
if (MSVC)
|
|
|
|
# See if the DIA SDK is available and usable.
|
|
|
|
set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK")
|
|
|
|
if (IS_DIRECTORY ${MSVC_DIA_SDK_DIR})
|
|
|
|
set(CAN_SYMBOLIZE 1)
|
|
|
|
else()
|
|
|
|
set(CAN_SYMBOLIZE 0)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(CAN_SYMBOLIZE 1)
|
|
|
|
endif()
|
|
|
|
|
2016-09-23 04:51:48 +08:00
|
|
|
find_program(GOLD_EXECUTABLE NAMES ${LLVM_DEFAULT_TARGET_TRIPLE}-ld.gold ld.gold ${LLVM_DEFAULT_TARGET_TRIPLE}-ld ld DOC "The gold linker")
|
|
|
|
|
2016-12-15 09:21:04 +08:00
|
|
|
if(COMPILER_RT_SUPPORTED_ARCH)
|
|
|
|
list(REMOVE_DUPLICATES COMPILER_RT_SUPPORTED_ARCH)
|
|
|
|
endif()
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
message(STATUS "Compiler-RT supported architectures: ${COMPILER_RT_SUPPORTED_ARCH}")
|
2014-08-09 06:01:20 +08:00
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
set(OS_NAME "Android")
|
|
|
|
else()
|
|
|
|
set(OS_NAME "${CMAKE_SYSTEM_NAME}")
|
|
|
|
endif()
|
|
|
|
|
2017-12-09 09:31:51 +08:00
|
|
|
set(ALL_SANITIZERS asan;dfsan;msan;hwasan;tsan;safestack;cfi;esan;scudo;ubsan_minimal)
|
2017-08-26 09:13:33 +08:00
|
|
|
set(COMPILER_RT_SANITIZERS_TO_BUILD all CACHE STRING
|
2016-08-19 23:13:21 +08:00
|
|
|
"sanitizers to build if supported on the target (all;${ALL_SANITIZERS})")
|
|
|
|
list_replace(COMPILER_RT_SANITIZERS_TO_BUILD all "${ALL_SANITIZERS}")
|
|
|
|
|
2014-08-09 06:01:20 +08:00
|
|
|
if (SANITIZER_COMMON_SUPPORTED_ARCH AND NOT LLVM_USE_SANITIZER AND
|
2018-03-03 19:48:54 +08:00
|
|
|
(OS_NAME MATCHES "Android|Darwin|Linux|FreeBSD|NetBSD|OpenBSD|Fuchsia|SunOS" OR
|
2016-09-08 05:03:22 +08:00
|
|
|
(OS_NAME MATCHES "Windows" AND (NOT MINGW AND NOT CYGWIN))))
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_SANITIZER_COMMON TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_SANITIZER_COMMON FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2016-05-28 05:29:31 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON)
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_INTERCEPTION TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_INTERCEPTION FALSE)
|
2015-07-02 09:44:34 +08:00
|
|
|
endif()
|
|
|
|
|
2018-03-03 19:48:54 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND ASAN_SUPPORTED_ARCH AND
|
|
|
|
NOT OS_NAME MATCHES "OpenBSD")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_ASAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_ASAN FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
[Sanitizers, CMake] Basic sanitizer Solaris support (PR 33274)
Summary:
This patch, on top of https://reviews.llvm.org/D40898, contains the build system
changes necessary to enable the Solaris/x86 sanitizer port.
The only issue of note is the libclang_rt.sancov_{begin, end} libraries: clang relies on the
linker automatically defining __start_SECNAME and __stop_SECNAME labels for
sections whose names are valid C identifiers. This is a GNU ld extension not present
in the ELF gABI, also implemented by gold and lld, but not by Solaris ld. To work around
this, I automatically link the sancov_{begin,end} libraries into every executable for now.
There seems to be now way to build individual startup objects like crtbegin.o/crtend.o,
so I've followed the lead of libclang_rt.asan-preinit which also contains just a single
object.
Reviewers: kcc, alekseyshl
Reviewed By: alekseyshl
Subscribers: srhines, kubamracek, mgorny, fedor.sergeev, llvm-commits, #sanitizers
Tags: #sanitizers
Differential Revision: https://reviews.llvm.org/D40899
llvm-svn: 321373
2017-12-23 02:04:20 +08:00
|
|
|
if (OS_NAME MATCHES "Linux|FreeBSD|Windows|NetBSD|SunOS")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME FALSE)
|
2014-12-18 07:14:01 +08:00
|
|
|
endif()
|
|
|
|
|
2014-08-09 06:01:20 +08:00
|
|
|
# TODO: Add builtins support.
|
|
|
|
|
2015-12-10 08:40:58 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND DFSAN_SUPPORTED_ARCH AND
|
2014-08-09 06:01:20 +08:00
|
|
|
OS_NAME MATCHES "Linux")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_DFSAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_DFSAN FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 08:40:58 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND LSAN_SUPPORTED_ARCH AND
|
2017-11-28 01:54:26 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|NetBSD")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_LSAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_LSAN FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 08:40:58 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND MSAN_SUPPORTED_ARCH AND
|
Adding Msan support to FreeBSD
Summary:
Enabling the memory sanitizer support for FreeBSD, most of unit tests are compatible.
- Adding fstat and stressor_r interceptors.
- Updating the struct link_map access since most likely the struct Obj_Entry had been updated since.
- Disabling few unit tests until further work is needed (or we can assume it can work in real world code).
Patch by: David CARLIER
Reviewers: vitalybuka, krytarowski
Reviewed By: vitalybuka
Subscribers: eugenis, dim, srhines, emaste, kubamracek, mgorny, fedor.sergeev, hintonda, llvm-commits, #sanitizers
Differential Revision: https://reviews.llvm.org/D43080
llvm-svn: 326644
2018-03-03 19:43:11 +08:00
|
|
|
OS_NAME MATCHES "Linux|FreeBSD|NetBSD")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_MSAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_MSAN FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2017-12-09 09:31:51 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND HWASAN_SUPPORTED_ARCH AND
|
|
|
|
OS_NAME MATCHES "Linux|Android")
|
|
|
|
set(COMPILER_RT_HAS_HWASAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_HWASAN FALSE)
|
|
|
|
endif()
|
|
|
|
|
2016-09-17 14:31:23 +08:00
|
|
|
if (PROFILE_SUPPORTED_ARCH AND NOT LLVM_USE_SANITIZER AND
|
2017-12-15 03:01:04 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|Windows|Android|SunOS")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_PROFILE TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_PROFILE FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 08:40:58 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND TSAN_SUPPORTED_ARCH AND
|
2017-11-28 01:54:26 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|Android|NetBSD")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_TSAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_TSAN FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 08:40:58 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND UBSAN_SUPPORTED_ARCH AND
|
2018-03-03 19:48:54 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|NetBSD|OpenBSD|Windows|Android|Fuchsia|SunOS")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_UBSAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_UBSAN FALSE)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2017-08-30 04:03:51 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND UBSAN_SUPPORTED_ARCH AND
|
2018-03-03 19:48:54 +08:00
|
|
|
OS_NAME MATCHES "Linux|FreeBSD|NetBSD|OpenBSD|Android|Darwin")
|
2017-08-30 04:03:51 +08:00
|
|
|
set(COMPILER_RT_HAS_UBSAN_MINIMAL TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_UBSAN_MINIMAL FALSE)
|
|
|
|
endif()
|
|
|
|
|
2015-12-10 08:40:58 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND SAFESTACK_SUPPORTED_ARCH AND
|
2017-08-11 02:40:09 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|NetBSD")
|
2015-12-10 08:40:58 +08:00
|
|
|
set(COMPILER_RT_HAS_SAFESTACK TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_SAFESTACK FALSE)
|
2015-06-16 05:08:47 +08:00
|
|
|
endif()
|
2015-12-16 07:00:33 +08:00
|
|
|
|
2017-10-10 01:07:47 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND CFI_SUPPORTED_ARCH)
|
2015-12-16 07:00:33 +08:00
|
|
|
set(COMPILER_RT_HAS_CFI TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_CFI FALSE)
|
|
|
|
endif()
|
2016-04-22 05:32:25 +08:00
|
|
|
|
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND ESAN_SUPPORTED_ARCH AND
|
|
|
|
OS_NAME MATCHES "Linux")
|
|
|
|
set(COMPILER_RT_HAS_ESAN TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_ESAN FALSE)
|
|
|
|
endif()
|
[sanitizer] Initial implementation of a Hardened Allocator
Summary:
This is an initial implementation of a Hardened Allocator based on Sanitizer Common's CombinedAllocator.
It aims at mitigating heap based vulnerabilities by adding several features to the base allocator, while staying relatively fast.
The following were implemented:
- additional consistency checks on the allocation function parameters and on the heap chunks;
- use of checksum protected chunk header, to detect corruption;
- randomness to the allocator base;
- delayed freelist (quarantine), to mitigate use after free and overall determinism.
Additional mitigations are in the works.
Reviewers: eugenis, aizatsky, pcc, krasin, vitalybuka, glider, dvyukov, kcc
Subscribers: kubabrecka, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D20084
llvm-svn: 271968
2016-06-07 09:20:26 +08:00
|
|
|
|
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND SCUDO_SUPPORTED_ARCH AND
|
2018-01-30 04:17:29 +08:00
|
|
|
OS_NAME MATCHES "Linux|Android|Fuchsia")
|
[sanitizer] Initial implementation of a Hardened Allocator
Summary:
This is an initial implementation of a Hardened Allocator based on Sanitizer Common's CombinedAllocator.
It aims at mitigating heap based vulnerabilities by adding several features to the base allocator, while staying relatively fast.
The following were implemented:
- additional consistency checks on the allocation function parameters and on the heap chunks;
- use of checksum protected chunk header, to detect corruption;
- randomness to the allocator base;
- delayed freelist (quarantine), to mitigate use after free and overall determinism.
Additional mitigations are in the works.
Reviewers: eugenis, aizatsky, pcc, krasin, vitalybuka, glider, dvyukov, kcc
Subscribers: kubabrecka, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D20084
llvm-svn: 271968
2016-06-07 09:20:26 +08:00
|
|
|
set(COMPILER_RT_HAS_SCUDO TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_SCUDO FALSE)
|
|
|
|
endif()
|
|
|
|
|
2016-07-21 15:39:55 +08:00
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND XRAY_SUPPORTED_ARCH AND
|
2018-04-04 21:04:15 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|NetBSD|OpenBSD")
|
2016-07-21 15:39:55 +08:00
|
|
|
set(COMPILER_RT_HAS_XRAY TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_XRAY FALSE)
|
|
|
|
endif()
|
2017-08-22 07:25:50 +08:00
|
|
|
|
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND FUZZER_SUPPORTED_ARCH AND
|
2018-04-10 06:38:26 +08:00
|
|
|
OS_NAME MATCHES "Android|Darwin|Linux|NetBSD|FreeBSD|OpenBSD|Fuchsia")
|
2017-08-22 07:25:50 +08:00
|
|
|
set(COMPILER_RT_HAS_FUZZER TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_FUZZER FALSE)
|
|
|
|
endif()
|
2018-04-10 04:18:10 +08:00
|
|
|
|
|
|
|
if (COMPILER_RT_HAS_SANITIZER_COMMON AND SHADOWCALLSTACK_SUPPORTED_ARCH AND
|
|
|
|
OS_NAME MATCHES "Linux|Android")
|
|
|
|
set(COMPILER_RT_HAS_SHADOWCALLSTACK TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_SHADOWCALLSTACK FALSE)
|
|
|
|
endif()
|