2009-09-08 07:31:44 +02:00
|
|
|
# -*- Python -*-
|
|
|
|
|
|
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
|
|
|
|
import os
|
2010-11-29 01:20:09 +01:00
|
|
|
import sys
|
2011-01-03 18:30:25 +01:00
|
|
|
import re
|
2012-10-26 04:19:02 +02:00
|
|
|
import platform
|
2017-07-06 23:46:47 +02:00
|
|
|
import subprocess
|
2009-09-08 07:31:44 +02:00
|
|
|
|
2013-08-09 18:22:05 +02:00
|
|
|
import lit.util
|
|
|
|
import lit.formats
|
2017-09-16 20:46:21 +02:00
|
|
|
from lit.llvm import llvm_config
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
from lit.llvm.subst import FindTool
|
|
|
|
from lit.llvm.subst import ToolSubst
|
2013-08-09 18:22:05 +02:00
|
|
|
|
2009-09-08 07:31:44 +02:00
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'LLVM'
|
|
|
|
|
|
|
|
# testFormat: The test format to use to interpret tests.
|
2017-09-16 20:46:21 +02:00
|
|
|
config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
|
2009-09-08 07:31:44 +02:00
|
|
|
|
2013-08-08 22:59:13 +02:00
|
|
|
# suffixes: A list of file extensions to treat as test files. This is overriden
|
|
|
|
# by individual lit.local.cfg files in the test subdirectories.
|
2016-04-04 23:23:44 +02:00
|
|
|
config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s', '.mir']
|
2009-09-08 07:31:44 +02:00
|
|
|
|
2012-07-02 12:18:06 +02:00
|
|
|
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
|
|
|
|
# subdirectories contain auxiliary inputs for various tests in their parent
|
|
|
|
# directories.
|
2013-08-16 02:37:11 +02:00
|
|
|
config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
|
2012-07-02 12:18:06 +02:00
|
|
|
|
2009-09-08 07:31:44 +02:00
|
|
|
# test_source_root: The root path where tests are located.
|
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
|
|
|
|
# test_exec_root: The root path where tests should be run.
|
2017-09-16 00:10:46 +02:00
|
|
|
config.test_exec_root = os.path.join(config.llvm_obj_root, 'test')
|
2009-09-08 07:31:44 +02:00
|
|
|
|
2013-04-12 06:07:13 +02:00
|
|
|
# Tweak the PATH to include the tools dir.
|
2017-09-16 20:46:21 +02:00
|
|
|
llvm_config.with_environment('PATH', config.llvm_tools_dir, append_path=True)
|
2010-02-25 23:09:09 +01:00
|
|
|
|
2017-09-16 20:46:21 +02:00
|
|
|
# Propagate some variables from the host environment.
|
2017-10-06 19:54:27 +02:00
|
|
|
llvm_config.with_system_environment(
|
|
|
|
['HOME', 'INCLUDE', 'LIB', 'TMP', 'TEMP', 'ASAN_SYMBOLIZER_PATH', 'MSAN_SYMBOLIZER_PATH'])
|
2010-12-07 02:23:49 +01:00
|
|
|
|
2010-06-12 18:21:19 +02:00
|
|
|
|
2014-10-30 09:29:45 +01:00
|
|
|
# Set up OCAMLPATH to include newly built OCaml libraries.
|
2017-09-16 00:10:46 +02:00
|
|
|
top_ocaml_lib = os.path.join(config.llvm_lib_dir, 'ocaml')
|
|
|
|
llvm_ocaml_lib = os.path.join(top_ocaml_lib, 'llvm')
|
2017-09-16 20:46:21 +02:00
|
|
|
|
|
|
|
llvm_config.with_system_environment('OCAMLPATH')
|
|
|
|
llvm_config.with_environment('OCAMLPATH', top_ocaml_lib, append_path=True)
|
|
|
|
llvm_config.with_environment('OCAMLPATH', llvm_ocaml_lib, append_path=True)
|
|
|
|
|
|
|
|
llvm_config.with_system_environment('CAML_LD_LIBRARY_PATH')
|
2017-10-06 19:54:27 +02:00
|
|
|
llvm_config.with_environment(
|
|
|
|
'CAML_LD_LIBRARY_PATH', llvm_ocaml_lib, append_path=True)
|
2014-10-30 09:29:45 +01:00
|
|
|
|
2014-10-30 09:29:57 +01:00
|
|
|
# Set up OCAMLRUNPARAM to enable backtraces in OCaml tests.
|
2017-09-16 20:46:21 +02:00
|
|
|
llvm_config.with_environment('OCAMLRUNPARAM', 'b')
|
2014-10-30 09:29:57 +01:00
|
|
|
|
2016-08-05 00:01:38 +02:00
|
|
|
# Provide the path to asan runtime lib 'libclang_rt.asan_osx_dynamic.dylib' if
|
|
|
|
# available. This is darwin specific since it's currently only needed on darwin.
|
2017-10-06 19:54:27 +02:00
|
|
|
|
|
|
|
|
2016-08-05 00:01:38 +02:00
|
|
|
def get_asan_rtlib():
|
2017-10-06 19:54:27 +02:00
|
|
|
if not 'Address' in config.llvm_use_sanitizer or \
|
|
|
|
not 'Darwin' in config.host_os or \
|
|
|
|
not 'x86' in config.host_triple:
|
|
|
|
return ''
|
2016-08-05 00:01:38 +02:00
|
|
|
try:
|
|
|
|
import glob
|
|
|
|
except:
|
2017-10-06 19:54:27 +02:00
|
|
|
print('glob module not found, skipping get_asan_rtlib() lookup')
|
|
|
|
return ''
|
2016-08-05 00:01:38 +02:00
|
|
|
# The libclang_rt.asan_osx_dynamic.dylib path is obtained using the relative
|
|
|
|
# path from the host cc.
|
2017-10-06 19:54:27 +02:00
|
|
|
host_lib_dir = os.path.join(os.path.dirname(config.host_cc), '../lib')
|
2016-08-05 00:01:38 +02:00
|
|
|
asan_dylib_dir_pattern = host_lib_dir + \
|
2017-10-06 19:54:27 +02:00
|
|
|
'/clang/*/lib/darwin/libclang_rt.asan_osx_dynamic.dylib'
|
2016-08-05 00:01:38 +02:00
|
|
|
found_dylibs = glob.glob(asan_dylib_dir_pattern)
|
|
|
|
if len(found_dylibs) != 1:
|
2017-10-06 19:54:27 +02:00
|
|
|
return ''
|
2016-08-05 00:01:38 +02:00
|
|
|
return found_dylibs[0]
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
llvm_config.use_default_substitutions()
|
|
|
|
|
|
|
|
# Add site-specific substitutions.
|
|
|
|
config.substitutions.append(('%llvmshlibdir', config.llvm_shlib_dir))
|
|
|
|
config.substitutions.append(('%shlibext', config.llvm_shlib_ext))
|
|
|
|
config.substitutions.append(('%exeext', config.llvm_exe_ext))
|
|
|
|
|
|
|
|
|
|
|
|
lli_args = []
|
Introduce llvm::sys::getProcessTriple() function.
In r143502, we renamed getHostTriple() to getDefaultTargetTriple()
as part of work to allow the user to supply a different default
target triple at configure time. This change also affected the JIT.
However, it is inappropriate to use the default target triple in the
JIT in most circumstances because this will not necessarily match
the current architecture used by the process, leading to illegal
instruction and other such errors at run time.
Introduce the getProcessTriple() function for use in the JIT and
its clients, and cause the JIT to use it. On architectures with a
single bitness, the host and process triples are identical. On other
architectures, the host triple represents the architecture of the
host CPU, while the process triple represents the architecture used
by the host CPU to interpret machine code within the current process.
For example, when executing 32-bit code on a 64-bit Linux machine,
the host triple may be 'x86_64-unknown-linux-gnu', while the process
triple may be 'i386-unknown-linux-gnu'.
This fixes JIT for the 32-on-64-bit (and vice versa) build on non-Apple
platforms.
Differential Revision: http://llvm-reviews.chandlerc.com/D254
llvm-svn: 172627
2013-01-16 18:27:22 +01:00
|
|
|
# The target triple used by default by lli is the process target triple (some
|
|
|
|
# triple appropriate for generating code for the current process) but because
|
|
|
|
# we don't support COFF in MCJIT well enough for the tests, force ELF format on
|
|
|
|
# Windows. FIXME: the process target triple should be used here, but this is
|
|
|
|
# difficult to obtain on Windows.
|
2018-08-09 04:16:18 +02:00
|
|
|
if re.search(r'cygwin|windows-gnu|windows-msvc', config.host_triple):
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
lli_args = ['-mtriple=' + config.host_triple + '-elf']
|
|
|
|
|
|
|
|
llc_args = []
|
2012-10-02 20:38:34 +02:00
|
|
|
|
2018-08-09 04:16:18 +02:00
|
|
|
# Similarly, have a macro to use llc with DWARF even when the host is Windows
|
|
|
|
if re.search(r'windows-msvc', config.target_triple):
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
llc_args = [' -mtriple=' +
|
2018-08-09 04:16:18 +02:00
|
|
|
config.target_triple.replace('-msvc', '-gnu')]
|
2009-09-08 07:31:44 +02:00
|
|
|
|
2016-08-05 00:01:38 +02:00
|
|
|
# Provide the path to asan runtime lib if available. On darwin, this lib needs
|
|
|
|
# to be loaded via DYLD_INSERT_LIBRARIES before libLTO.dylib in case the files
|
|
|
|
# to be linked contain instrumented sanitizer code.
|
2016-08-05 01:58:30 +02:00
|
|
|
ld64_cmd = config.ld64_executable
|
|
|
|
asan_rtlib = get_asan_rtlib()
|
|
|
|
if asan_rtlib:
|
2017-10-06 19:54:27 +02:00
|
|
|
ld64_cmd = 'DYLD_INSERT_LIBRARIES={} {}'.format(asan_rtlib, ld64_cmd)
|
2016-08-05 00:01:38 +02:00
|
|
|
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
ocamlc_command = '%s ocamlc -cclib -L%s %s' % (
|
|
|
|
config.ocamlfind_executable, config.llvm_lib_dir, config.ocaml_flags)
|
|
|
|
ocamlopt_command = 'true'
|
2017-01-06 22:33:48 +01:00
|
|
|
if config.have_ocamlopt:
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
ocamlopt_command = '%s ocamlopt -cclib -L%s -cclib -Wl,-rpath,%s %s' % (
|
|
|
|
config.ocamlfind_executable, config.llvm_lib_dir, config.llvm_lib_dir, config.ocaml_flags)
|
|
|
|
|
2017-11-29 18:07:41 +01:00
|
|
|
opt_viewer_cmd = '%s %s/tools/opt-viewer/opt-viewer.py' % (sys.executable, config.llvm_src_root)
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
|
2019-10-02 09:00:01 +02:00
|
|
|
llvm_locstats_tool = os.path.join(config.llvm_tools_dir, 'llvm-locstats')
|
|
|
|
config.substitutions.append(
|
|
|
|
('%llvm-locstats', "'%s' %s" % (config.python_executable, llvm_locstats_tool)))
|
|
|
|
config.llvm_locstats_used = os.path.exists(llvm_locstats_tool)
|
|
|
|
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
tools = [
|
|
|
|
ToolSubst('%lli', FindTool('lli'), post='.', extra_args=lli_args),
|
|
|
|
ToolSubst('%llc_dwarf', FindTool('llc'), extra_args=llc_args),
|
|
|
|
ToolSubst('%go', config.go_executable, unresolved='ignore'),
|
|
|
|
ToolSubst('%gold', config.gold_executable, unresolved='ignore'),
|
|
|
|
ToolSubst('%ld64', ld64_cmd, unresolved='ignore'),
|
|
|
|
ToolSubst('%ocamlc', ocamlc_command, unresolved='ignore'),
|
|
|
|
ToolSubst('%ocamlopt', ocamlopt_command, unresolved='ignore'),
|
2017-11-29 18:07:41 +01:00
|
|
|
ToolSubst('%opt-viewer', opt_viewer_cmd),
|
2018-04-13 07:03:28 +02:00
|
|
|
ToolSubst('%llvm-objcopy', FindTool('llvm-objcopy')),
|
2018-05-07 23:07:01 +02:00
|
|
|
ToolSubst('%llvm-strip', FindTool('llvm-strip')),
|
2019-11-20 08:30:52 +01:00
|
|
|
ToolSubst('%llvm-install-name-tool', FindTool('llvm-install-name-tool')),
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
# FIXME: Why do we have both `lli` and `%lli` that do slightly different things?
|
|
|
|
tools.extend([
|
2018-09-25 15:59:35 +02:00
|
|
|
'dsymutil', 'lli', 'lli-child-target', 'llvm-ar', 'llvm-as',
|
|
|
|
'llvm-bcanalyzer', 'llvm-config', 'llvm-cov', 'llvm-cxxdump', 'llvm-cvtres',
|
|
|
|
'llvm-diff', 'llvm-dis', 'llvm-dwarfdump', 'llvm-exegesis', 'llvm-extract',
|
2019-11-20 08:30:52 +01:00
|
|
|
'llvm-isel-fuzzer', 'llvm-ifs', 'llvm-install-name-tool',
|
|
|
|
'llvm-jitlink', 'llvm-opt-fuzzer', 'llvm-lib',
|
2019-04-20 22:05:30 +02:00
|
|
|
'llvm-link', 'llvm-lto', 'llvm-lto2', 'llvm-mc', 'llvm-mca',
|
|
|
|
'llvm-modextract', 'llvm-nm', 'llvm-objcopy', 'llvm-objdump',
|
|
|
|
'llvm-pdbutil', 'llvm-profdata', 'llvm-ranlib', 'llvm-rc', 'llvm-readelf',
|
|
|
|
'llvm-readobj', 'llvm-rtdyld', 'llvm-size', 'llvm-split', 'llvm-strings',
|
|
|
|
'llvm-strip', 'llvm-tblgen', 'llvm-undname', 'llvm-c-test', 'llvm-cxxfilt',
|
|
|
|
'llvm-xray', 'yaml2obj', 'obj2yaml', 'yaml-bench', 'verify-uselistorder',
|
|
|
|
'bugpoint', 'llc', 'llvm-symbolizer', 'opt', 'sancov', 'sanstats'])
|
[lit] Improve tool substitution in lit.
This addresses two sources of inconsistency in test configuration
files.
1. Substitution boundaries. Previously you would specify a
substitution, such as 'lli', and then additionally a set
of characters that should fail to match before and after
the tool. This was used, for example, so that matches that
are parts of full paths would not be replaced. But not all
tools did this, and those that did would often re-invent
the set of characters themselves, leading to inconsistency.
Now, every tool substitution defaults to using a sane set
of reasonable defaults and you have to explicitly opt out
of it. This actually fixed a few latent bugs that were
never being surfaced, but only on accident.
2. There was no standard way for the system to decide how to
locate a tool. Sometimes you have an explicit path, sometimes
we would search for it and build up a path ourselves, and
sometimes we would build up a full command line. Furthermore,
there was no standardized way to handle missing tools. Do we
warn, fail, ignore, etc? All of this is now encapsulated in
the ToolSubst class. You either specify an exact command to
run, or an instance of FindTool('<tool-name>') and everything
else just works. Furthermore, you can specify an action to
take if the tool cannot be resolved.
Differential Revision: https://reviews.llvm.org/D38565
llvm-svn: 315085
2017-10-06 19:54:46 +02:00
|
|
|
|
|
|
|
# The following tools are optional
|
|
|
|
tools.extend([
|
|
|
|
ToolSubst('llvm-go', unresolved='ignore'),
|
|
|
|
ToolSubst('llvm-mt', unresolved='ignore'),
|
|
|
|
ToolSubst('Kaleidoscope-Ch3', unresolved='ignore'),
|
|
|
|
ToolSubst('Kaleidoscope-Ch4', unresolved='ignore'),
|
|
|
|
ToolSubst('Kaleidoscope-Ch5', unresolved='ignore'),
|
|
|
|
ToolSubst('Kaleidoscope-Ch6', unresolved='ignore'),
|
|
|
|
ToolSubst('Kaleidoscope-Ch7', unresolved='ignore'),
|
|
|
|
ToolSubst('Kaleidoscope-Ch8', unresolved='ignore')])
|
|
|
|
|
|
|
|
llvm_config.add_tool_substitutions(tools, config.llvm_tools_dir)
|
2015-09-02 20:03:01 +02:00
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
# Targets
|
2014-06-10 00:42:55 +02:00
|
|
|
|
|
|
|
config.targets = frozenset(config.targets_to_build.split())
|
|
|
|
|
2016-08-10 21:03:18 +02:00
|
|
|
for arch in config.targets_to_build.split():
|
|
|
|
config.available_features.add(arch.lower() + '-registered-target')
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
# Features
|
2017-11-03 00:14:55 +01:00
|
|
|
known_arches = ["x86_64", "mips64", "ppc64", "aarch64"]
|
2017-11-04 07:55:55 +01:00
|
|
|
if (config.host_ldflags.find("-m32") < 0
|
|
|
|
and any(config.llvm_host_triple.startswith(x) for x in known_arches)):
|
2017-11-03 00:14:55 +01:00
|
|
|
config.available_features.add("llvm-64-bits")
|
2010-11-29 01:20:09 +01:00
|
|
|
|
2019-05-01 17:36:18 +02:00
|
|
|
config.available_features.add("host-byteorder-" + sys.byteorder + "-endian")
|
|
|
|
|
2019-05-14 16:51:54 +02:00
|
|
|
if sys.platform in ['win32']:
|
|
|
|
# ExecutionEngine, no weak symbols in COFF.
|
|
|
|
config.available_features.add('uses_COFF')
|
|
|
|
else:
|
|
|
|
# Others/can-execute.txt
|
2013-06-26 12:56:44 +02:00
|
|
|
config.available_features.add('can-execute')
|
|
|
|
|
2010-11-29 01:20:09 +01:00
|
|
|
# Loadable module
|
2019-05-17 08:41:04 +02:00
|
|
|
if config.has_plugins:
|
|
|
|
config.available_features.add('plugins')
|
2011-06-23 01:23:19 +02:00
|
|
|
|
2017-01-06 22:33:54 +01:00
|
|
|
# Static libraries are not built if BUILD_SHARED_LIBS is ON.
|
2017-10-18 21:37:30 +02:00
|
|
|
if not config.build_shared_libs and not config.link_llvm_dylib:
|
2017-10-06 19:54:27 +02:00
|
|
|
config.available_features.add('static-libs')
|
2017-01-06 22:33:54 +01:00
|
|
|
|
2018-01-08 03:48:41 +01:00
|
|
|
def have_cxx_shared_library():
|
|
|
|
readobj_exe = lit.util.which('llvm-readobj', config.llvm_tools_dir)
|
|
|
|
if not readobj_exe:
|
|
|
|
print('llvm-readobj not found')
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
|
|
|
readobj_cmd = subprocess.Popen(
|
|
|
|
[readobj_exe, '-needed-libs', readobj_exe], stdout=subprocess.PIPE)
|
|
|
|
except OSError:
|
|
|
|
print('could not exec llvm-readobj')
|
|
|
|
return False
|
|
|
|
|
|
|
|
readobj_out = readobj_cmd.stdout.read().decode('ascii')
|
|
|
|
readobj_cmd.wait()
|
|
|
|
|
|
|
|
regex = re.compile(r'(libc\+\+|libstdc\+\+|msvcp).*\.(so|dylib|dll)')
|
|
|
|
needed_libs = False
|
|
|
|
for line in readobj_out.splitlines():
|
|
|
|
if 'NeededLibraries [' in line:
|
|
|
|
needed_libs = True
|
|
|
|
if ']' in line:
|
|
|
|
needed_libs = False
|
|
|
|
if needed_libs and regex.search(line.lower()):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
if have_cxx_shared_library():
|
|
|
|
config.available_features.add('cxx-shared-library')
|
|
|
|
|
[lit][tests]Add feature libcxx-used and use it in llvm-*-fuzzer tests
When a LLVM binary such as llvm-*-fuzzer is built with libc++, it has dependency on libc++. The path to find shared libraries specified in llvm-*-fuzzer is relative. As a result, these binaries cannot be copied to an arbitrary directory and launched from there. Changes in this patch add a LIT feature to indicate that libc++ is used to build and, based on the feature exclude test cases that test by copying llvm-*-fuzzer binaries to a directory.
Reviewers: hubert.reinterpretcast, dberris, amyk, jasonliu, EricWF
Reviewed By: hubert.reinterpretcast, amyk
Subscribers: javed.absar, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61265
llvm-svn: 360672
2019-05-14 15:54:33 +02:00
|
|
|
if config.libcxx_used:
|
|
|
|
config.available_features.add('libcxx-used')
|
|
|
|
|
2013-04-10 21:53:26 +02:00
|
|
|
# Direct object generation
|
2015-12-20 04:48:23 +01:00
|
|
|
if not 'hexagon' in config.target_triple:
|
2017-10-06 19:54:27 +02:00
|
|
|
config.available_features.add('object-emission')
|
2013-04-10 21:53:26 +02:00
|
|
|
|
2015-09-16 07:34:32 +02:00
|
|
|
# LLVM can be configured with an empty default triple
|
|
|
|
# Some tests are "generic" and require a valid default triple
|
|
|
|
if config.target_triple:
|
2017-10-06 19:54:27 +02:00
|
|
|
config.available_features.add('default_triple')
|
2013-09-13 12:59:01 +02:00
|
|
|
|
2011-11-28 06:09:15 +01:00
|
|
|
import subprocess
|
2014-07-28 01:11:06 +02:00
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
|
2014-07-28 01:11:06 +02:00
|
|
|
def have_ld_plugin_support():
|
2018-06-20 17:32:47 +02:00
|
|
|
if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold' + config.llvm_shlib_ext)):
|
2014-07-28 01:11:06 +02:00
|
|
|
return False
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
ld_cmd = subprocess.Popen(
|
|
|
|
[config.gold_executable, '--help'], stdout=subprocess.PIPE, env={'LANG': 'C'})
|
2015-01-05 15:18:04 +01:00
|
|
|
ld_out = ld_cmd.stdout.read().decode()
|
2014-07-28 01:11:06 +02:00
|
|
|
ld_cmd.wait()
|
|
|
|
|
2014-11-11 06:27:12 +01:00
|
|
|
if not '-plugin' in ld_out:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# check that the used emulations are supported.
|
|
|
|
emu_line = [l for l in ld_out.split('\n') if 'supported emulations' in l]
|
|
|
|
if len(emu_line) != 1:
|
|
|
|
return False
|
|
|
|
emu_line = emu_line[0]
|
|
|
|
fields = emu_line.split(':')
|
|
|
|
if len(fields) != 3:
|
|
|
|
return False
|
|
|
|
emulations = fields[2].split()
|
2015-03-19 19:23:31 +01:00
|
|
|
if 'elf_x86_64' not in emulations:
|
2014-11-11 06:27:12 +01:00
|
|
|
return False
|
2015-03-19 19:23:31 +01:00
|
|
|
if 'elf32ppc' in emulations:
|
|
|
|
config.available_features.add('ld_emu_elf32ppc')
|
2014-11-11 06:27:12 +01:00
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
ld_version = subprocess.Popen(
|
|
|
|
[config.gold_executable, '--version'], stdout=subprocess.PIPE, env={'LANG': 'C'})
|
2015-02-14 10:05:56 +01:00
|
|
|
if not 'GNU gold' in ld_version.stdout.read().decode():
|
2014-07-28 01:11:06 +02:00
|
|
|
return False
|
|
|
|
ld_version.wait()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
|
2014-07-28 01:11:06 +02:00
|
|
|
if have_ld_plugin_support():
|
|
|
|
config.available_features.add('ld_plugin')
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
|
2015-03-20 00:55:38 +01:00
|
|
|
def have_ld64_plugin_support():
|
2019-01-18 04:36:04 +01:00
|
|
|
if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'libLTO' + config.llvm_shlib_ext)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
if config.ld64_executable == '':
|
2015-03-20 00:55:38 +01:00
|
|
|
return False
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
ld_cmd = subprocess.Popen(
|
|
|
|
[config.ld64_executable, '-v'], stderr=subprocess.PIPE)
|
2015-03-20 00:55:38 +01:00
|
|
|
ld_out = ld_cmd.stderr.read().decode()
|
|
|
|
ld_cmd.wait()
|
|
|
|
|
|
|
|
if 'ld64' not in ld_out or 'LTO' not in ld_out:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2017-10-06 19:54:27 +02:00
|
|
|
|
2015-03-20 00:55:38 +01:00
|
|
|
if have_ld64_plugin_support():
|
|
|
|
config.available_features.add('ld64_plugin')
|
|
|
|
|
2017-09-16 20:46:21 +02:00
|
|
|
# Ask llvm-config about asserts and global-isel.
|
2017-09-19 00:26:48 +02:00
|
|
|
llvm_config.feature_config(
|
2017-10-06 19:54:27 +02:00
|
|
|
[('--assertion-mode', {'ON': 'asserts'}),
|
|
|
|
('--has-global-isel', {'ON': 'global-isel'})])
|
2013-07-12 01:36:57 +02:00
|
|
|
|
2013-08-21 07:02:12 +02:00
|
|
|
if 'darwin' == sys.platform:
|
|
|
|
try:
|
|
|
|
sysctl_cmd = subprocess.Popen(['sysctl', 'hw.optional.fma'],
|
2017-10-06 19:54:27 +02:00
|
|
|
stdout=subprocess.PIPE)
|
2013-08-21 07:02:12 +02:00
|
|
|
except OSError:
|
2017-10-06 19:54:27 +02:00
|
|
|
print('Could not exec sysctl')
|
2013-08-22 00:26:44 +02:00
|
|
|
result = sysctl_cmd.stdout.read().decode('ascii')
|
2017-10-06 19:54:27 +02:00
|
|
|
if -1 != result.find('hw.optional.fma: 1'):
|
2013-08-21 07:02:12 +02:00
|
|
|
config.available_features.add('fma3')
|
|
|
|
sysctl_cmd.wait()
|
|
|
|
|
2014-06-22 14:35:39 +02:00
|
|
|
# .debug_frame is not emitted for targeting Windows x64.
|
2018-08-09 04:16:18 +02:00
|
|
|
if not re.match(r'^x86_64.*-(windows-gnu|windows-msvc)', config.target_triple):
|
2014-06-22 14:35:39 +02:00
|
|
|
config.available_features.add('debug_frame')
|
|
|
|
|
2016-05-23 23:34:12 +02:00
|
|
|
if config.have_libxar:
|
|
|
|
config.available_features.add('xar')
|
2017-06-07 02:22:52 +02:00
|
|
|
|
2018-09-26 18:26:59 +02:00
|
|
|
if config.enable_threads:
|
|
|
|
config.available_features.add('thread_support')
|
|
|
|
|
2019-01-19 01:10:54 +01:00
|
|
|
if config.llvm_libxml2_enabled:
|
2017-07-27 03:11:53 +02:00
|
|
|
config.available_features.add('libxml2')
|
2017-11-29 18:07:41 +01:00
|
|
|
|
|
|
|
if config.have_opt_viewer_modules:
|
|
|
|
config.available_features.add('have_opt_viewer_modules')
|