2009-09-08 05:31:44 +00:00
|
|
|
# -*- Python -*-
|
|
|
|
|
|
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
|
|
|
|
import os
|
2010-11-29 00:20:09 +00:00
|
|
|
import sys
|
2011-01-03 17:30:25 +00:00
|
|
|
import re
|
2012-10-26 02:19:02 +00:00
|
|
|
import platform
|
2009-09-08 05:31:44 +00:00
|
|
|
|
2013-08-09 16:22:05 +00:00
|
|
|
import lit.util
|
|
|
|
import lit.formats
|
|
|
|
|
2009-09-08 05:31:44 +00:00
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'LLVM'
|
|
|
|
|
2012-07-03 03:59:34 +00:00
|
|
|
# Tweak PATH for Win32 to decide to use bash.exe or not.
|
|
|
|
if sys.platform in ['win32']:
|
|
|
|
# Seek sane tools in directories and set to $PATH.
|
|
|
|
path = getattr(config, 'lit_tools_dir', None)
|
2013-08-09 16:22:05 +00:00
|
|
|
path = lit_config.getToolsPath(path,
|
|
|
|
config.environment['PATH'],
|
|
|
|
['cmp.exe', 'grep.exe', 'sed.exe'])
|
2012-07-03 03:59:34 +00:00
|
|
|
if path is not None:
|
|
|
|
path = os.path.pathsep.join((path,
|
|
|
|
config.environment['PATH']))
|
|
|
|
config.environment['PATH'] = path
|
|
|
|
|
2013-04-10 13:11:38 +00:00
|
|
|
# Choose between lit's internal shell pipeline runner and a real shell. If
|
|
|
|
# LIT_USE_INTERNAL_SHELL is in the environment, we use that as an override.
|
|
|
|
use_lit_shell = os.environ.get("LIT_USE_INTERNAL_SHELL")
|
|
|
|
if use_lit_shell:
|
|
|
|
# 0 is external, "" is default, and everything else is internal.
|
|
|
|
execute_external = (use_lit_shell == "0")
|
|
|
|
else:
|
|
|
|
# Otherwise we default to internal on Windows and external elsewhere, as
|
|
|
|
# bash on Windows is usually very slow.
|
|
|
|
execute_external = (not sys.platform in ['win32'])
|
|
|
|
|
2009-09-08 05:31:44 +00:00
|
|
|
# testFormat: The test format to use to interpret tests.
|
Convert all tests using TCL-style quoting to use shell-style quoting.
This was done through the aid of a terrible Perl creation. I will not
paste any of the horrors here. Suffice to say, it require multiple
staged rounds of replacements, state carried between, and a few
nested-construct-parsing hacks that I'm not proud of. It happens, by
luck, to be able to deal with all the TCL-quoting patterns in evidence
in the LLVM test suite.
If anyone is maintaining large out-of-tree test trees, feel free to poke
me and I'll send you the steps I used to convert things, as well as
answer any painful questions etc. IRC works best for this type of thing
I find.
Once converted, switch the LLVM lit config to use ShTests the same as
Clang. In addition to being able to delete large amounts of Python code
from 'lit', this will also simplify the entire test suite and some of
lit's architecture.
Finally, the test suite runs 33% faster on Linux now. ;]
For my 16-hardware-thread (2x 4-core xeon e5520): 36s -> 24s
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159525 91177308-0d34-0410-b5e6-96231b3b80d8
2012-07-02 12:47:22 +00:00
|
|
|
config.test_format = lit.formats.ShTest(execute_external)
|
2009-09-08 05:31:44 +00:00
|
|
|
|
2013-08-08 20:59:13 +00: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.
|
2015-03-15 01:30:58 +00:00
|
|
|
config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s']
|
2009-09-08 05:31:44 +00:00
|
|
|
|
2012-07-02 10:18:06 +00: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 00:37:11 +00:00
|
|
|
config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
|
2012-07-02 10:18:06 +00:00
|
|
|
|
2009-09-08 05:31:44 +00: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.
|
|
|
|
llvm_obj_root = getattr(config, 'llvm_obj_root', None)
|
|
|
|
if llvm_obj_root is not None:
|
|
|
|
config.test_exec_root = os.path.join(llvm_obj_root, 'test')
|
|
|
|
|
2013-04-12 04:07:13 +00:00
|
|
|
# Tweak the PATH to include the tools dir.
|
2009-11-08 09:08:00 +00:00
|
|
|
if llvm_obj_root is not None:
|
|
|
|
llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
|
|
|
|
if not llvm_tools_dir:
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.fatal('No LLVM tools dir set!')
|
2009-11-08 09:08:00 +00:00
|
|
|
path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
|
|
|
|
config.environment['PATH'] = path
|
|
|
|
|
2010-09-13 13:32:22 +00:00
|
|
|
# Propagate 'HOME' through the environment.
|
2010-08-10 19:36:25 +00:00
|
|
|
if 'HOME' in os.environ:
|
|
|
|
config.environment['HOME'] = os.environ['HOME']
|
2010-02-25 22:09:09 +00:00
|
|
|
|
2010-09-13 13:32:22 +00:00
|
|
|
# Propagate 'INCLUDE' through the environment.
|
2010-08-30 14:49:00 +00:00
|
|
|
if 'INCLUDE' in os.environ:
|
|
|
|
config.environment['INCLUDE'] = os.environ['INCLUDE']
|
|
|
|
|
2010-09-13 13:32:22 +00:00
|
|
|
# Propagate 'LIB' through the environment.
|
2010-08-30 14:49:00 +00:00
|
|
|
if 'LIB' in os.environ:
|
|
|
|
config.environment['LIB'] = os.environ['LIB']
|
|
|
|
|
2010-12-07 01:23:49 +00:00
|
|
|
# Propagate the temp directory. Windows requires this because it uses \Windows\
|
|
|
|
# if none of these are present.
|
|
|
|
if 'TMP' in os.environ:
|
|
|
|
config.environment['TMP'] = os.environ['TMP']
|
|
|
|
if 'TEMP' in os.environ:
|
|
|
|
config.environment['TEMP'] = os.environ['TEMP']
|
|
|
|
|
2010-09-13 13:32:22 +00:00
|
|
|
# Propagate LLVM_SRC_ROOT into the environment.
|
2010-06-23 18:06:16 +00:00
|
|
|
config.environment['LLVM_SRC_ROOT'] = getattr(config, 'llvm_src_root', '')
|
2010-06-12 16:21:19 +00:00
|
|
|
|
2010-09-13 13:32:22 +00:00
|
|
|
# Propagate PYTHON_EXECUTABLE into the environment
|
2010-06-12 16:21:19 +00:00
|
|
|
config.environment['PYTHON_EXECUTABLE'] = getattr(config, 'python_executable',
|
|
|
|
'')
|
|
|
|
|
2013-04-04 07:41:00 +00:00
|
|
|
# Propagate path to symbolizer for ASan/MSan.
|
|
|
|
for symbolizer in ['ASAN_SYMBOLIZER_PATH', 'MSAN_SYMBOLIZER_PATH']:
|
|
|
|
if symbolizer in os.environ:
|
|
|
|
config.environment[symbolizer] = os.environ[symbolizer]
|
|
|
|
|
2014-10-30 08:29:45 +00:00
|
|
|
# Set up OCAMLPATH to include newly built OCaml libraries.
|
2014-10-30 19:26:42 +00:00
|
|
|
llvm_lib_dir = getattr(config, 'llvm_lib_dir', None)
|
2014-11-04 05:54:50 +00:00
|
|
|
if llvm_lib_dir is None:
|
|
|
|
if llvm_obj_root is not None:
|
|
|
|
llvm_lib_dir = os.path.join(llvm_obj_root, 'lib')
|
|
|
|
|
|
|
|
if llvm_lib_dir is not None:
|
|
|
|
llvm_ocaml_lib = os.path.join(llvm_lib_dir, 'ocaml')
|
|
|
|
if llvm_ocaml_lib is not None:
|
|
|
|
if 'OCAMLPATH' in os.environ:
|
|
|
|
ocamlpath = os.path.pathsep.join((llvm_ocaml_lib, os.environ['OCAMLPATH']))
|
|
|
|
config.environment['OCAMLPATH'] = ocamlpath
|
|
|
|
else:
|
|
|
|
config.environment['OCAMLPATH'] = llvm_ocaml_lib
|
|
|
|
|
|
|
|
if 'CAML_LD_LIBRARY_PATH' in os.environ:
|
|
|
|
caml_ld_library_path = os.path.pathsep.join((llvm_ocaml_lib,
|
|
|
|
os.environ['CAML_LD_LIBRARY_PATH']))
|
|
|
|
config.environment['CAML_LD_LIBRARY_PATH'] = caml_ld_library_path
|
|
|
|
else:
|
|
|
|
config.environment['CAML_LD_LIBRARY_PATH'] = llvm_ocaml_lib
|
2014-10-30 08:29:45 +00:00
|
|
|
|
2014-10-30 08:29:57 +00:00
|
|
|
# Set up OCAMLRUNPARAM to enable backtraces in OCaml tests.
|
|
|
|
config.environment['OCAMLRUNPARAM'] = 'b'
|
|
|
|
|
2009-09-08 05:31:44 +00:00
|
|
|
###
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
# Check that the object root is known.
|
|
|
|
if config.test_exec_root is None:
|
|
|
|
# Otherwise, we haven't loaded the site specific configuration (the user is
|
|
|
|
# probably trying to run on a test file directly, and either the site
|
|
|
|
# configuration hasn't been created by the build system, or we are in an
|
|
|
|
# out-of-tree build situation).
|
|
|
|
|
2009-12-08 19:47:36 +00:00
|
|
|
# Check for 'llvm_site_config' user parameter, and use that if available.
|
2013-08-09 16:22:05 +00:00
|
|
|
site_cfg = lit_config.params.get('llvm_site_config', None)
|
2009-12-08 19:47:36 +00:00
|
|
|
if site_cfg and os.path.exists(site_cfg):
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.load_config(config, site_cfg)
|
2009-12-08 19:47:36 +00:00
|
|
|
raise SystemExit
|
|
|
|
|
2009-09-08 05:31:44 +00:00
|
|
|
# Try to detect the situation where we are using an out-of-tree build by
|
|
|
|
# looking for 'llvm-config'.
|
|
|
|
#
|
|
|
|
# FIXME: I debated (i.e., wrote and threw away) adding logic to
|
|
|
|
# automagically generate the lit.site.cfg if we are in some kind of fresh
|
|
|
|
# build situation. This means knowing how to invoke the build system
|
|
|
|
# though, and I decided it was too much magic.
|
|
|
|
|
|
|
|
llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
|
|
|
|
if not llvm_config:
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.fatal('No site specific configuration available!')
|
2009-09-08 05:31:44 +00:00
|
|
|
|
|
|
|
# Get the source and object roots.
|
|
|
|
llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip()
|
|
|
|
llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip()
|
|
|
|
|
|
|
|
# Validate that we got a tree which points to here.
|
|
|
|
this_src_root = os.path.dirname(config.test_source_root)
|
|
|
|
if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.fatal('No site specific configuration available!')
|
2009-09-08 05:31:44 +00:00
|
|
|
|
|
|
|
# Check that the site specific configuration exists.
|
|
|
|
site_cfg = os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
|
|
|
|
if not os.path.exists(site_cfg):
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.fatal('No site specific configuration available!')
|
2009-09-08 05:31:44 +00:00
|
|
|
|
|
|
|
# Okay, that worked. Notify the user of the automagic, and reconfigure.
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.note('using out-of-tree build at %r' % llvm_obj_root)
|
|
|
|
lit_config.load_config(config, site_cfg)
|
2009-09-08 05:31:44 +00:00
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2014-09-02 22:28:02 +00:00
|
|
|
lli = 'lli'
|
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172627 91177308-0d34-0410-b5e6-96231b3b80d8
2013-01-16 17:27:22 +00: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.
|
2015-03-20 22:08:40 +00:00
|
|
|
if re.search(r'cygwin|mingw32|windows-gnu|windows-msvc|win32', config.host_triple):
|
2014-09-02 22:28:02 +00:00
|
|
|
lli += ' -mtriple='+config.host_triple+'-elf'
|
|
|
|
config.substitutions.append( ('%lli', lli ) )
|
2012-10-02 18:38:34 +00:00
|
|
|
|
2014-01-30 01:39:17 +00:00
|
|
|
# Similarly, have a macro to use llc with DWARF even when the host is win32.
|
|
|
|
llc_dwarf = 'llc'
|
|
|
|
if re.search(r'win32', config.target_triple):
|
|
|
|
llc_dwarf += ' -mtriple='+config.target_triple.replace('-win32', '-mingw32')
|
|
|
|
config.substitutions.append( ('%llc_dwarf', llc_dwarf) )
|
|
|
|
|
2012-06-28 00:16:51 +00:00
|
|
|
# Add site-specific substitutions.
|
2015-02-14 09:43:57 +00:00
|
|
|
config.substitutions.append( ('%gold', config.gold_executable) )
|
2015-03-19 23:55:38 +00:00
|
|
|
config.substitutions.append( ('%ld64', config.ld64_executable) )
|
2014-10-16 22:48:02 +00:00
|
|
|
config.substitutions.append( ('%go', config.go_executable) )
|
2012-06-28 00:16:51 +00:00
|
|
|
config.substitutions.append( ('%llvmshlibdir', config.llvm_shlib_dir) )
|
|
|
|
config.substitutions.append( ('%shlibext', config.llvm_shlib_ext) )
|
2014-01-22 21:52:35 +00:00
|
|
|
config.substitutions.append( ('%exeext', config.llvm_exe_ext) )
|
2014-07-11 14:36:39 +00:00
|
|
|
config.substitutions.append( ('%python', config.python_executable) )
|
2009-09-08 05:31:44 +00:00
|
|
|
|
2014-10-28 22:39:36 +00:00
|
|
|
# OCaml substitutions.
|
|
|
|
# Support tests for both native and bytecode builds.
|
2014-11-03 09:50:53 +00:00
|
|
|
config.substitutions.append( ('%ocamlc',
|
2014-12-01 19:50:23 +00:00
|
|
|
"%s ocamlc -cclib -L%s %s" %
|
|
|
|
(config.ocamlfind_executable, llvm_lib_dir, config.ocaml_flags)) )
|
2014-11-03 09:50:53 +00:00
|
|
|
if config.have_ocamlopt in ('1', 'TRUE'):
|
|
|
|
config.substitutions.append( ('%ocamlopt',
|
2014-11-03 09:51:34 +00:00
|
|
|
"%s ocamlopt -cclib -L%s -cclib -Wl,-rpath,%s %s" %
|
|
|
|
(config.ocamlfind_executable, llvm_lib_dir, llvm_lib_dir, config.ocaml_flags)) )
|
2014-10-28 22:39:36 +00:00
|
|
|
else:
|
2014-11-03 09:50:53 +00:00
|
|
|
config.substitutions.append( ('%ocamlopt', "true" ) )
|
2014-10-28 22:39:36 +00:00
|
|
|
|
2011-01-03 17:30:25 +00:00
|
|
|
# For each occurrence of an llvm tool name as its own word, replace it
|
|
|
|
# with the full path to the build directory holding that tool. This
|
|
|
|
# ensures that we are testing the tools just built and not some random
|
|
|
|
# tools that might happen to be in the user's PATH. Thus this list
|
|
|
|
# includes every tool placed in $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
|
|
|
|
# (llvm_tools_dir in lit parlance).
|
2014-03-21 17:31:35 +00:00
|
|
|
|
|
|
|
# Avoid matching RUN line fragments that are actually part of
|
|
|
|
# path names or options or whatever.
|
|
|
|
# The regex is a pre-assertion to avoid matching a preceding
|
|
|
|
# dot, hyphen, carat, or slash (.foo, -foo, etc.). Some patterns
|
|
|
|
# also have a post-assertion to not match a trailing hyphen (foo-).
|
|
|
|
NOJUNK = r"(?<!\.|-|\^|/)"
|
2013-06-14 19:14:52 +00:00
|
|
|
|
2013-10-02 14:31:21 +00:00
|
|
|
for pattern in [r"\bbugpoint\b(?!-)",
|
2014-03-21 17:31:35 +00:00
|
|
|
NOJUNK + r"\bllc\b",
|
2013-06-14 19:14:52 +00:00
|
|
|
r"\blli\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bllvm-ar\b",
|
|
|
|
r"\bllvm-as\b",
|
|
|
|
r"\bllvm-bcanalyzer\b",
|
|
|
|
r"\bllvm-config\b",
|
|
|
|
r"\bllvm-cov\b",
|
2015-03-15 01:30:58 +00:00
|
|
|
r"\bllvm-cxxdump\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bllvm-diff\b",
|
|
|
|
r"\bllvm-dis\b",
|
2014-12-12 17:31:24 +00:00
|
|
|
r"\bllvm-dsymutil\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bllvm-dwarfdump\b",
|
|
|
|
r"\bllvm-extract\b",
|
2014-10-23 02:33:23 +00:00
|
|
|
r"\bllvm-go\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bllvm-link\b",
|
|
|
|
r"\bllvm-lto\b",
|
|
|
|
r"\bllvm-mc\b",
|
2013-10-28 23:37:49 +00:00
|
|
|
r"\bllvm-mcmarkup\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bllvm-nm\b",
|
|
|
|
r"\bllvm-objdump\b",
|
2014-02-17 23:22:49 +00:00
|
|
|
r"\bllvm-profdata\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bllvm-ranlib\b",
|
|
|
|
r"\bllvm-readobj\b",
|
|
|
|
r"\bllvm-rtdyld\b",
|
|
|
|
r"\bllvm-size\b",
|
|
|
|
r"\bllvm-tblgen\b",
|
2013-10-23 08:10:20 +00:00
|
|
|
r"\bllvm-c-test\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bmacho-dump\b",
|
2014-03-21 17:31:35 +00:00
|
|
|
NOJUNK + r"\bopt\b",
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\bFileCheck\b",
|
2013-10-28 23:37:49 +00:00
|
|
|
r"\bobj2yaml\b",
|
|
|
|
r"\byaml2obj\b",
|
2014-07-30 17:11:27 +00:00
|
|
|
r"\bverify-uselistorder\b",
|
2011-01-03 17:30:25 +00:00
|
|
|
# Handle these specially as they are strings searched
|
|
|
|
# for during testing.
|
2013-10-02 14:31:21 +00:00
|
|
|
r"\| \bcount\b",
|
|
|
|
r"\| \bnot\b"]:
|
2011-01-03 17:30:25 +00:00
|
|
|
# Extract the tool name from the pattern. This relies on the tool
|
|
|
|
# name being surrounded by \b word match operators. If the
|
|
|
|
# pattern starts with "| ", include it in the string to be
|
|
|
|
# substituted.
|
2014-03-21 17:31:35 +00:00
|
|
|
tool_match = re.match(r"^(\\)?((\| )?)\W+b([0-9A-Za-z-_]+)\\b\W*$",
|
2011-01-03 17:30:25 +00:00
|
|
|
pattern)
|
2014-03-21 17:31:35 +00:00
|
|
|
tool_pipe = tool_match.group(2)
|
|
|
|
tool_name = tool_match.group(4)
|
|
|
|
tool_path = lit.util.which(tool_name, llvm_tools_dir)
|
|
|
|
if not tool_path:
|
|
|
|
# Warn, but still provide a substitution.
|
|
|
|
lit_config.note('Did not find ' + tool_name + ' in ' + llvm_tools_dir)
|
|
|
|
tool_path = llvm_tools_dir + '/' + tool_name
|
2015-02-04 00:02:59 +00:00
|
|
|
if (tool_name == "llc" and
|
|
|
|
'LLVM_ENABLE_MACHINE_VERIFIER' in os.environ and
|
|
|
|
os.environ['LLVM_ENABLE_MACHINE_VERIFIER'] == "1"):
|
|
|
|
tool_path += " -verify-machineinstrs"
|
2014-03-21 17:31:35 +00:00
|
|
|
config.substitutions.append((pattern, tool_pipe + tool_path))
|
2011-01-03 17:30:25 +00:00
|
|
|
|
2014-06-09 22:42:55 +00:00
|
|
|
### Targets
|
|
|
|
|
|
|
|
config.targets = frozenset(config.targets_to_build.split())
|
|
|
|
|
2010-11-29 00:20:09 +00:00
|
|
|
### Features
|
|
|
|
|
2010-12-07 02:43:51 +00:00
|
|
|
# Shell execution
|
2013-04-10 13:11:38 +00:00
|
|
|
if execute_external:
|
2010-12-07 02:43:51 +00:00
|
|
|
config.available_features.add('shell')
|
|
|
|
|
2013-06-26 10:56:44 +00:00
|
|
|
# Others/can-execute.txt
|
|
|
|
if sys.platform not in ['win32']:
|
|
|
|
config.available_features.add('can-execute')
|
|
|
|
|
2010-11-29 00:20:09 +00:00
|
|
|
# Loadable module
|
|
|
|
# FIXME: This should be supplied by Makefile or autoconf.
|
|
|
|
if sys.platform in ['win32', 'cygwin']:
|
|
|
|
loadable_module = (config.enable_shared == 1)
|
|
|
|
else:
|
|
|
|
loadable_module = True
|
|
|
|
|
|
|
|
if loadable_module:
|
|
|
|
config.available_features.add('loadable_module')
|
2011-06-22 23:23:19 +00:00
|
|
|
|
2013-03-26 08:27:39 +00:00
|
|
|
# Sanitizers.
|
|
|
|
if config.llvm_use_sanitizer == "Address":
|
|
|
|
config.available_features.add("asan")
|
|
|
|
if (config.llvm_use_sanitizer == "Memory" or
|
|
|
|
config.llvm_use_sanitizer == "MemoryWithOrigins"):
|
|
|
|
config.available_features.add("msan")
|
2014-09-17 20:17:52 +00:00
|
|
|
if config.llvm_use_sanitizer == "Undefined":
|
|
|
|
config.available_features.add("ubsan")
|
|
|
|
else:
|
|
|
|
config.available_features.add("not_ubsan")
|
2013-03-26 08:27:39 +00:00
|
|
|
|
2015-03-02 19:34:11 +00:00
|
|
|
# Check if we should run long running tests.
|
|
|
|
if lit_config.params.get("run_long_tests", None) == "true":
|
|
|
|
config.available_features.add("long_tests")
|
|
|
|
|
2013-04-10 19:53:26 +00:00
|
|
|
# Direct object generation
|
2014-10-06 23:29:06 +00:00
|
|
|
# Suppress x86_64-mingw32 while investigating since r219108.
|
2014-12-17 09:55:15 +00:00
|
|
|
if not 'hexagon' in config.target_triple and not re.match(r'^x86_64.*-(mingw32|windows-gnu|win32)', config.target_triple):
|
2013-04-10 19:53:26 +00:00
|
|
|
config.available_features.add("object-emission")
|
|
|
|
|
2013-04-23 10:17:34 +00:00
|
|
|
if config.have_zlib == "1":
|
|
|
|
config.available_features.add("zlib")
|
2014-03-28 20:45:24 +00:00
|
|
|
else:
|
|
|
|
config.available_features.add("nozlib")
|
2013-04-23 10:17:34 +00:00
|
|
|
|
2013-09-13 10:59:01 +00:00
|
|
|
# Native compilation: host arch == target arch
|
2013-10-26 02:50:20 +00:00
|
|
|
# FIXME: Consider cases that target can be executed
|
|
|
|
# even if host_triple were different from target_triple.
|
|
|
|
if config.host_triple == config.target_triple:
|
2013-09-13 10:59:01 +00:00
|
|
|
config.available_features.add("native")
|
|
|
|
|
2011-11-28 05:09:15 +00:00
|
|
|
import subprocess
|
2014-07-27 23:11:06 +00:00
|
|
|
|
|
|
|
def have_ld_plugin_support():
|
|
|
|
if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold.so')):
|
|
|
|
return False
|
|
|
|
|
2015-02-14 09:43:57 +00:00
|
|
|
ld_cmd = subprocess.Popen([config.gold_executable, '--help'], stdout = subprocess.PIPE)
|
2015-01-05 14:18:04 +00:00
|
|
|
ld_out = ld_cmd.stdout.read().decode()
|
2014-07-27 23:11:06 +00:00
|
|
|
ld_cmd.wait()
|
|
|
|
|
2014-11-11 05:27:12 +00: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 18:23:31 +00:00
|
|
|
if 'elf_x86_64' not in emulations:
|
2014-11-11 05:27:12 +00:00
|
|
|
return False
|
2015-03-19 18:23:31 +00:00
|
|
|
if 'elf32ppc' in emulations:
|
|
|
|
config.available_features.add('ld_emu_elf32ppc')
|
2014-11-11 05:27:12 +00:00
|
|
|
|
2015-02-14 09:43:57 +00:00
|
|
|
ld_version = subprocess.Popen([config.gold_executable, '--version'], stdout = subprocess.PIPE)
|
2015-02-14 09:05:56 +00:00
|
|
|
if not 'GNU gold' in ld_version.stdout.read().decode():
|
2014-07-27 23:11:06 +00:00
|
|
|
return False
|
|
|
|
ld_version.wait()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
if have_ld_plugin_support():
|
|
|
|
config.available_features.add('ld_plugin')
|
|
|
|
|
2015-03-19 23:55:38 +00:00
|
|
|
def have_ld64_plugin_support():
|
|
|
|
if config.ld64_executable == '':
|
|
|
|
return False
|
|
|
|
|
|
|
|
ld_cmd = subprocess.Popen([config.ld64_executable, '-v'], stderr = subprocess.PIPE)
|
|
|
|
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
|
|
|
|
|
|
|
|
if have_ld64_plugin_support():
|
|
|
|
config.available_features.add('ld64_plugin')
|
|
|
|
|
2014-07-27 23:11:06 +00:00
|
|
|
# Ask llvm-config about assertion mode.
|
2012-04-13 11:22:18 +00:00
|
|
|
try:
|
2013-12-03 23:22:25 +00:00
|
|
|
llvm_config_cmd = subprocess.Popen(
|
|
|
|
[os.path.join(llvm_tools_dir, 'llvm-config'), '--assertion-mode'],
|
2014-09-24 18:37:48 +00:00
|
|
|
stdout = subprocess.PIPE,
|
|
|
|
env=config.environment)
|
2013-08-07 23:09:24 +00:00
|
|
|
except OSError:
|
2013-12-03 23:22:25 +00:00
|
|
|
print("Could not find llvm-config in " + llvm_tools_dir)
|
2012-04-13 11:22:18 +00:00
|
|
|
exit(42)
|
|
|
|
|
2013-12-03 23:22:25 +00:00
|
|
|
if re.search(r'ON', llvm_config_cmd.stdout.read().decode('ascii')):
|
2011-06-22 23:23:19 +00:00
|
|
|
config.available_features.add('asserts')
|
2013-12-03 23:22:25 +00:00
|
|
|
llvm_config_cmd.wait()
|
2013-07-11 23:36:57 +00:00
|
|
|
|
2013-08-21 05:02:12 +00:00
|
|
|
if 'darwin' == sys.platform:
|
|
|
|
try:
|
|
|
|
sysctl_cmd = subprocess.Popen(['sysctl', 'hw.optional.fma'],
|
|
|
|
stdout = subprocess.PIPE)
|
|
|
|
except OSError:
|
|
|
|
print("Could not exec sysctl")
|
2013-08-21 22:26:44 +00:00
|
|
|
result = sysctl_cmd.stdout.read().decode('ascii')
|
|
|
|
if -1 != result.find("hw.optional.fma: 1"):
|
2013-08-21 05:02:12 +00:00
|
|
|
config.available_features.add('fma3')
|
|
|
|
sysctl_cmd.wait()
|
|
|
|
|
2014-06-22 12:35:39 +00:00
|
|
|
# .debug_frame is not emitted for targeting Windows x64.
|
2014-12-17 09:55:15 +00:00
|
|
|
if not re.match(r'^x86_64.*-(mingw32|windows-gnu|win32)', config.target_triple):
|
2014-06-22 12:35:39 +00:00
|
|
|
config.available_features.add('debug_frame')
|
|
|
|
|
2013-07-11 23:36:57 +00:00
|
|
|
# Check if we should use gmalloc.
|
2013-08-09 16:22:05 +00:00
|
|
|
use_gmalloc_str = lit_config.params.get('use_gmalloc', None)
|
2013-07-11 23:36:57 +00:00
|
|
|
if use_gmalloc_str is not None:
|
|
|
|
if use_gmalloc_str.lower() in ('1', 'true'):
|
|
|
|
use_gmalloc = True
|
|
|
|
elif use_gmalloc_str.lower() in ('', '0', 'false'):
|
|
|
|
use_gmalloc = False
|
|
|
|
else:
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.fatal('user parameter use_gmalloc should be 0 or 1')
|
2013-07-11 23:36:57 +00:00
|
|
|
else:
|
|
|
|
# Default to not using gmalloc
|
|
|
|
use_gmalloc = False
|
|
|
|
|
|
|
|
# Allow use of an explicit path for gmalloc library.
|
|
|
|
# Will default to '/usr/lib/libgmalloc.dylib' if not set.
|
2013-08-09 16:22:05 +00:00
|
|
|
gmalloc_path_str = lit_config.params.get('gmalloc_path',
|
|
|
|
'/usr/lib/libgmalloc.dylib')
|
2013-07-11 23:36:57 +00:00
|
|
|
|
|
|
|
if use_gmalloc:
|
|
|
|
config.environment.update({'DYLD_INSERT_LIBRARIES' : gmalloc_path_str})
|