[AArch64] Fix SDNode type mismatches between *.td files and ISel (#116523)
[llvm-project.git] / compiler-rt / lib / CMakeLists.txt
blobe6158ec4088951f8a4188f2771fe02b8228ff89d
1 # First, add the subdirectories which contain feature-based runtime libraries
2 # and several convenience helper libraries.
4 include(AddCompilerRT)
5 include(SanitizerUtils)
7 # Hoist the building of sanitizer_common on whether we're building either the
8 # sanitizers or xray (or both).
10 #TODO: Refactor sanitizer_common into smaller pieces (e.g. flag parsing, utils).
11 if (COMPILER_RT_HAS_SANITIZER_COMMON AND
12     (COMPILER_RT_BUILD_SANITIZERS OR COMPILER_RT_BUILD_XRAY OR COMPILER_RT_BUILD_MEMPROF OR COMPILER_RT_BUILD_CTX_PROFILE))
13   add_subdirectory(sanitizer_common)
14 endif()
16 if(COMPILER_RT_BUILD_BUILTINS)
17   add_subdirectory(builtins)
18 endif()
20 function(compiler_rt_build_runtime runtime)
21   string(TOUPPER ${runtime} runtime_uppercase)
22   if(COMPILER_RT_HAS_${runtime_uppercase})
23     if(${runtime} STREQUAL tsan)
24       add_subdirectory(tsan/dd)
25     endif()
26     if(${runtime} STREQUAL scudo_standalone)
27       add_subdirectory(scudo/standalone)
28     else()
29       add_subdirectory(${runtime})
30     endif()
31   endif()
32 endfunction()
34 if(COMPILER_RT_BUILD_SANITIZERS OR COMPILER_RT_BUILD_MEMPROF)
35   compiler_rt_build_runtime(interception)
36 endif()
38 if(COMPILER_RT_BUILD_SANITIZERS)
39   if(COMPILER_RT_HAS_SANITIZER_COMMON)
40     add_subdirectory(stats)
41     # Contains RTLSanCommon used even without COMPILER_RT_HAS_LSAN.
42     add_subdirectory(lsan)
43     # Contains RTUbsan used even without COMPILER_RT_HAS_UBSAN.
44     add_subdirectory(ubsan)
45   endif()
47   foreach(sanitizer ${COMPILER_RT_SANITIZERS_TO_BUILD})
48     compiler_rt_build_runtime(${sanitizer})
49   endforeach()
50 endif()
52 if(COMPILER_RT_BUILD_PROFILE)
53   compiler_rt_build_runtime(profile)
54 endif()
56 if(COMPILER_RT_BUILD_CTX_PROFILE)
57   compiler_rt_build_runtime(ctx_profile)
58 endif()
60 if(COMPILER_RT_BUILD_XRAY)
61   compiler_rt_build_runtime(xray)
62 endif()
64 if(COMPILER_RT_BUILD_LIBFUZZER)
65   compiler_rt_build_runtime(fuzzer)
66 endif()
68 if(COMPILER_RT_BUILD_MEMPROF AND COMPILER_RT_HAS_SANITIZER_COMMON)
69   compiler_rt_build_runtime(memprof)
70 endif()
72 if(COMPILER_RT_BUILD_ORC)
73   compiler_rt_build_runtime(orc)
74 endif()
76 # It doesn't normally make sense to build runtimes when a sanitizer is enabled,
77 # so we don't add_subdirectory the runtimes in that case. However, the opposite
78 # is true for fuzzers that exercise parts of the runtime. So we add the fuzzer
79 # directories explicitly here.
80 add_subdirectory(scudo/standalone/fuzz)