blob: 894c3f859fbdb9790bbc71a6a33f34f1d8b01aeb [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001# -*- Python -*-
2
3import os
Stephen Hines6a211c52014-07-21 00:49:56 -07004import platform
Stephen Hines2d1fdb22014-05-28 23:58:16 -07005
Stephen Hines86277eb2015-03-23 12:06:32 -07006import lit.formats
7
Stephen Hines2d1fdb22014-05-28 23:58:16 -07008def get_required_attr(config, attr_name):
9 attr_value = getattr(config, attr_name, None)
10 if attr_value == None:
11 lit_config.fatal(
12 "No attribute %r in test configuration! You may need to run "
13 "tests from your build directory or add this attribute "
14 "to lit.site.cfg " % attr_name)
15 return attr_value
16
Stephen Hines86277eb2015-03-23 12:06:32 -070017def push_dynamic_library_lookup_path(config, new_path):
18 if platform.system() == 'Windows':
19 dynamic_library_lookup_var = 'PATH'
20 elif platform.system() == 'Darwin':
21 dynamic_library_lookup_var = 'DYLD_LIBRARY_PATH'
22 else:
23 dynamic_library_lookup_var = 'LD_LIBRARY_PATH'
24
Stephen Hines2d1fdb22014-05-28 23:58:16 -070025 new_ld_library_path = os.path.pathsep.join(
Stephen Hines86277eb2015-03-23 12:06:32 -070026 (new_path, config.environment.get(dynamic_library_lookup_var, '')))
27 config.environment[dynamic_library_lookup_var] = new_ld_library_path
Stephen Hines2d1fdb22014-05-28 23:58:16 -070028
29# Setup config name.
30config.name = 'AddressSanitizer' + config.name_suffix
31
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080032# Platform-specific default ASAN_OPTIONS for lit tests.
33default_asan_opts = ''
34if config.host_os == 'Darwin':
35 # On Darwin, we default to `abort_on_error=1`, which would make tests run
36 # much slower. Let's override this and run lit tests with 'abort_on_error=0'.
37 # Also, make sure we do not overwhelm the syslog while testing.
38 default_asan_opts = 'abort_on_error=0'
39 default_asan_opts += ':log_to_syslog=0'
40if default_asan_opts:
41 config.environment['ASAN_OPTIONS'] = default_asan_opts
42 default_asan_opts += ':'
43config.substitutions.append(('%env_asan_opts=',
44 'env ASAN_OPTIONS=' + default_asan_opts))
Stephen Hines86277eb2015-03-23 12:06:32 -070045
Stephen Hines2d1fdb22014-05-28 23:58:16 -070046# Setup source root.
47config.test_source_root = os.path.dirname(__file__)
48
Stephen Hines86277eb2015-03-23 12:06:32 -070049# There is no libdl on FreeBSD.
50if config.host_os != 'FreeBSD':
51 libdl_flag = "-ldl"
52else:
53 libdl_flag = ""
54
Stephen Hines2d1fdb22014-05-28 23:58:16 -070055# GCC-ASan doesn't link in all the necessary libraries automatically, so
56# we have to do it ourselves.
57if config.compiler_id == 'GNU':
Stephen Hines86277eb2015-03-23 12:06:32 -070058 extra_linkflags = ["-pthread", "-lstdc++", libdl_flag]
Stephen Hines2d1fdb22014-05-28 23:58:16 -070059else:
60 extra_linkflags = []
Stephen Hines6d186232014-11-26 17:56:19 -080061
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080062# BFD linker in 64-bit android toolchains fails to find libm.so, which is a
63# transitive shared library dependency (via asan runtime).
64if config.android:
65 extra_linkflags += ["-lm"]
66
Stephen Hines2d1fdb22014-05-28 23:58:16 -070067# Setup default compiler flags used with -fsanitize=address option.
68# FIXME: Review the set of required flags and check if it can be reduced.
69target_cflags = [get_required_attr(config, "target_cflags")] + extra_linkflags
70target_cxxflags = config.cxx_mode_flags + target_cflags
Stephen Hines6d186232014-11-26 17:56:19 -080071clang_asan_static_cflags = (["-fsanitize=address",
Stephen Hines6a211c52014-07-21 00:49:56 -070072 "-mno-omit-leaf-frame-pointer",
73 "-fno-omit-frame-pointer",
Stephen Hines6d186232014-11-26 17:56:19 -080074 "-fno-optimize-sibling-calls"] +
75 config.debug_info_flags + target_cflags)
Pirama Arumuga Nainarc58a4362016-09-19 23:00:23 -070076if config.target_arch == 's390x':
77 clang_asan_static_cflags.append("-mbackchain")
Stephen Hines2d1fdb22014-05-28 23:58:16 -070078clang_asan_static_cxxflags = config.cxx_mode_flags + clang_asan_static_cflags
79
80if config.asan_dynamic:
81 clang_asan_cflags = clang_asan_static_cflags + ['-shared-libasan']
82 clang_asan_cxxflags = clang_asan_static_cxxflags + ['-shared-libasan']
83 config.available_features.add("asan-dynamic-runtime")
84else:
85 clang_asan_cflags = clang_asan_static_cflags
86 clang_asan_cxxflags = clang_asan_static_cxxflags
87 config.available_features.add("asan-static-runtime")
88
89asan_lit_source_dir = get_required_attr(config, "asan_lit_source_dir")
Stephen Hines6d186232014-11-26 17:56:19 -080090if config.android == "1":
Stephen Hines2d1fdb22014-05-28 23:58:16 -070091 config.available_features.add('android')
92 clang_wrapper = os.path.join(asan_lit_source_dir,
93 "android_commands", "android_compile.py") + " "
94else:
Stephen Hines86277eb2015-03-23 12:06:32 -070095 config.available_features.add('not-android')
Stephen Hines2d1fdb22014-05-28 23:58:16 -070096 clang_wrapper = ""
97
98def build_invocation(compile_flags):
99 return " " + " ".join([clang_wrapper, config.clang] + compile_flags) + " "
100
101config.substitutions.append( ("%clang ", build_invocation(target_cflags)) )
102config.substitutions.append( ("%clangxx ", build_invocation(target_cxxflags)) )
103config.substitutions.append( ("%clang_asan ", build_invocation(clang_asan_cflags)) )
104config.substitutions.append( ("%clangxx_asan ", build_invocation(clang_asan_cxxflags)) )
105config.substitutions.append( ("%shared_libasan", "libclang_rt.asan-%s.so" % config.target_arch))
106if config.asan_dynamic:
107 config.substitutions.append( ("%clang_asan_static ", build_invocation(clang_asan_static_cflags)) )
108 config.substitutions.append( ("%clangxx_asan_static ", build_invocation(clang_asan_static_cxxflags)) )
109
Stephen Hines6a211c52014-07-21 00:49:56 -0700110# Windows-specific tests might also use the clang-cl.exe driver.
111if platform.system() == 'Windows':
112 clang_cl_asan_cxxflags = ["-fsanitize=address",
113 "-Wno-deprecated-declarations",
114 "-WX",
115 "-D_HAS_EXCEPTIONS=0",
116 "-Zi"] + target_cflags
Stephen Hines6d186232014-11-26 17:56:19 -0800117 if config.asan_dynamic:
118 clang_cl_asan_cxxflags.append("-MD")
Stephen Hines6a211c52014-07-21 00:49:56 -0700119 clang_invocation = build_invocation(clang_cl_asan_cxxflags)
120 clang_cl_invocation = clang_invocation.replace("clang.exe","clang-cl.exe")
121 config.substitutions.append( ("%clang_cl_asan ", clang_cl_invocation) )
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800122 base_lib = os.path.join(config.compiler_rt_libdir, "clang_rt.asan%%s-%s.lib" % config.target_arch)
123 config.substitutions.append( ("%asan_lib", base_lib % "") )
124 config.substitutions.append( ("%asan_cxx_lib", base_lib % "_cxx") )
125 config.substitutions.append( ("%asan_dll_thunk", base_lib % "_dll_thunk") )
Stephen Hines6a211c52014-07-21 00:49:56 -0700126
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700127# FIXME: De-hardcode this path.
128asan_source_dir = os.path.join(
129 get_required_attr(config, "compiler_rt_src_root"), "lib", "asan")
130# Setup path to asan_symbolize.py script.
131asan_symbolize = os.path.join(asan_source_dir, "scripts", "asan_symbolize.py")
132if not os.path.exists(asan_symbolize):
133 lit_config.fatal("Can't find script on path %r" % asan_symbolize)
134python_exec = get_required_attr(config, "python_executable")
135config.substitutions.append( ("%asan_symbolize", python_exec + " " + asan_symbolize + " ") )
136# Setup path to sancov.py script.
137sanitizer_common_source_dir = os.path.join(
138 get_required_attr(config, "compiler_rt_src_root"), "lib", "sanitizer_common")
139sancov = os.path.join(sanitizer_common_source_dir, "scripts", "sancov.py")
140if not os.path.exists(sancov):
141 lit_config.fatal("Can't find script on path %r" % sancov)
142python_exec = get_required_attr(config, "python_executable")
Pirama Arumuga Nainarc58a4362016-09-19 23:00:23 -0700143config.substitutions.append( ("%sancov ", python_exec + " " + sancov + " ") )
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700144
145# Determine kernel bitness
Stephen Hines6d186232014-11-26 17:56:19 -0800146if config.host_arch.find('64') != -1 and config.android != "1":
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700147 kernel_bits = '64'
148else:
149 kernel_bits = '32'
150
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700151config.substitutions.append( ('CHECK-%kernel_bits', ("CHECK-kernel-" + kernel_bits + "-bits")))
152
Stephen Hines86277eb2015-03-23 12:06:32 -0700153config.substitutions.append( ("%libdl", libdl_flag) )
154
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700155config.available_features.add("asan-" + config.bits + "-bits")
156
Pirama Arumuga Nainar259f7062015-05-06 11:49:53 -0700157if config.host_os == 'Darwin':
158 config.substitutions.append( ("%ld_flags_rpath_exe", '-Wl,-rpath,@executable_path/ %dynamiclib') )
159 config.substitutions.append( ("%ld_flags_rpath_so", '-install_name @rpath/`basename %dynamiclib`') )
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700160elif config.host_os == 'FreeBSD':
161 config.substitutions.append( ("%ld_flags_rpath_exe", "-Wl,-z,origin -Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib_namespec") )
162 config.substitutions.append( ("%ld_flags_rpath_so", '') )
163elif config.host_os == 'Linux':
Pirama Arumuga Nainar259f7062015-05-06 11:49:53 -0700164 config.substitutions.append( ("%ld_flags_rpath_exe", "-Wl,-rpath,\$ORIGIN -L%T -l%xdynamiclib_namespec") )
165 config.substitutions.append( ("%ld_flags_rpath_so", '') )
166
167# Must be defined after the substitutions that use %dynamiclib.
168config.substitutions.append( ("%dynamiclib", '%T/lib%xdynamiclib_namespec.so') )
169config.substitutions.append( ("%xdynamiclib_namespec", '$(basename %t).dynamic') )
170
Stephen Hines6a211c52014-07-21 00:49:56 -0700171# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800172# because the test hangs. Adding armhf as we now have two modes.
173if config.target_arch != 'arm' and config.target_arch != 'armhf' and config.target_arch != 'aarch64':
Stephen Hines6a211c52014-07-21 00:49:56 -0700174 config.available_features.add('stable-runtime')
175
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700176# Turn on leak detection on 64-bit Linux.
Stephen Hines86277eb2015-03-23 12:06:32 -0700177if config.host_os == 'Linux' and config.target_arch == 'x86_64':
178 config.available_features.add('leak-detection')
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700179
180# Set LD_LIBRARY_PATH to pick dynamic runtime up properly.
Stephen Hines86277eb2015-03-23 12:06:32 -0700181push_dynamic_library_lookup_path(config, config.compiler_rt_libdir)
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700182
183# GCC-ASan uses dynamic runtime by default.
184if config.compiler_id == 'GNU':
185 gcc_dir = os.path.dirname(config.clang)
186 libasan_dir = os.path.join(gcc_dir, "..", "lib" + config.bits)
Stephen Hines86277eb2015-03-23 12:06:32 -0700187 push_dynamic_library_lookup_path(config, libasan_dir)
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700188
189# Default test suffixes.
190config.suffixes = ['.c', '.cc', '.cpp']
191
192if config.host_os == 'Darwin':
193 config.suffixes.append('.mm')
194
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800195# Only run the tests on supported OSs.
196if config.host_os not in ['Linux', 'Darwin', 'FreeBSD', 'Windows']:
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700197 config.unsupported = True