1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
import os
import itertools
import platform
import subprocess
import sys
import lit.util
from lit.llvm import llvm_config
from lit.llvm.subst import FindTool
from lit.llvm.subst import ToolSubst
def _get_lldb_init_path(config):
return os.path.join(config.test_exec_root, "lit-lldb-init-quiet")
def _disallow(config, execName):
warning = """
echo '*** Do not use \'{0}\' in tests; use \'%''{0}\'. ***' &&
exit 1 && echo
"""
config.substitutions.append((" {0} ".format(execName), warning.format(execName)))
def use_lldb_substitutions(config):
# Set up substitutions for primary tools. These tools must come from config.lldb_tools_dir
# which is basically the build output directory. We do not want to find these in path or
# anywhere else, since they are specifically the programs which are actually being tested.
dsname = "debugserver" if platform.system() in ["Darwin"] else "lldb-server"
dsargs = [] if platform.system() in ["Darwin"] else ["gdbserver"]
build_script = os.path.dirname(__file__)
build_script = os.path.join(build_script, "build.py")
build_script_args = [
build_script,
"--compiler=any", # Default to best compiler
"--arch=" + str(config.lldb_bitness),
]
if config.lldb_lit_tools_dir:
build_script_args.append("--tools-dir={0}".format(config.lldb_lit_tools_dir))
if config.lldb_tools_dir:
build_script_args.append("--tools-dir={0}".format(config.lldb_tools_dir))
if config.llvm_libs_dir:
build_script_args.append("--libs-dir={0}".format(config.llvm_libs_dir))
if config.objc_gnustep_dir:
build_script_args.append(
'--objc-gnustep-dir="{0}"'.format(config.objc_gnustep_dir)
)
if config.cmake_sysroot:
build_script_args.append("--sysroot={0}".format(config.cmake_sysroot))
lldb_init = _get_lldb_init_path(config)
primary_tools = [
ToolSubst(
"%lldb",
command=FindTool("lldb"),
extra_args=["--no-lldbinit", "-S", lldb_init],
unresolved="fatal",
),
ToolSubst(
"%lldb-init",
command=FindTool("lldb"),
extra_args=["-S", lldb_init],
unresolved="fatal",
),
ToolSubst(
"%lldb-noinit",
command=FindTool("lldb"),
extra_args=["--no-lldbinit"],
unresolved="fatal",
),
ToolSubst(
"%lldb-server",
command=FindTool("lldb-server"),
extra_args=[],
unresolved="ignore",
),
ToolSubst(
"%debugserver",
command=FindTool(dsname),
extra_args=dsargs,
unresolved="ignore",
),
ToolSubst(
"%platformserver",
command=FindTool("lldb-server"),
extra_args=["platform"],
unresolved="ignore",
),
"lldb-test",
"lldb-dap",
ToolSubst(
"%build", command="'" + sys.executable + "'", extra_args=build_script_args
),
]
_disallow(config, "lldb")
_disallow(config, "lldb-server")
_disallow(config, "debugserver")
_disallow(config, "platformserver")
llvm_config.add_tool_substitutions(primary_tools, [config.lldb_tools_dir])
def _use_msvc_substitutions(config):
# If running from a Visual Studio Command prompt (e.g. vcvars), this will
# detect the include and lib paths, and find cl.exe and link.exe and create
# substitutions for each of them that explicitly specify /I and /L paths
cl = lit.util.which("cl")
if not cl:
return
# Don't use lit.util.which() for link.exe: In `git bash`, it will pick
# up /usr/bin/link (another name for ln).
link = os.path.join(os.path.dirname(cl), "link.exe")
cl = '"' + cl + '"'
link = '"' + link + '"'
includes = os.getenv("INCLUDE", "").split(";")
libs = os.getenv("LIB", "").split(";")
config.available_features.add("msvc")
compiler_flags = ['"/I{}"'.format(x) for x in includes if os.path.exists(x)]
linker_flags = ['"/LIBPATH:{}"'.format(x) for x in libs if os.path.exists(x)]
tools = [
ToolSubst("%msvc_cl", command=cl, extra_args=compiler_flags),
ToolSubst("%msvc_link", command=link, extra_args=linker_flags),
]
llvm_config.add_tool_substitutions(tools)
return
def use_support_substitutions(config):
# Set up substitutions for support tools. These tools can be overridden at the CMake
# level (by specifying -DLLDB_LIT_TOOLS_DIR), installed, or as a last resort, we can use
# the just-built version.
host_flags = ["--target=" + config.host_triple]
if platform.system() in ["Darwin"]:
try:
out = subprocess.check_output(["xcrun", "--show-sdk-path"]).strip()
res = 0
except OSError:
res = -1
if res == 0 and out:
sdk_path = lit.util.to_string(out)
llvm_config.lit_config.note("using SDKROOT: %r" % sdk_path)
host_flags += ["-isysroot", sdk_path]
elif sys.platform != "win32":
host_flags += ["-pthread"]
config.target_shared_library_suffix = (
".dylib" if platform.system() in ["Darwin"] else ".so"
)
config.substitutions.append(
("%target-shared-library-suffix", config.target_shared_library_suffix)
)
# Swift support
swift_args = [
"-module-cache-path",
os.path.join(
os.path.dirname(config.lldb_libs_dir),
"lldb-test-build.noindex",
"module-cache-clang",
),
]
swift_driver_args = []
if platform.system() in ["Darwin"]:
swift_args += ["-sdk", sdk_path]
tools = [
ToolSubst(
"%target-swiftc",
command=config.swiftc,
extra_args=swift_args + swift_driver_args,
),
ToolSubst(
"%target-swift-frontend",
command=config.swiftc[:-1],
extra_args=(["-frontend"] + swift_args),
),
]
llvm_config.add_tool_substitutions(tools)
swift_bin_dir = os.path.dirname(config.swiftc)
swift_Benchmark_Onone = os.path.join(
swift_bin_dir, "Benchmark_Onone-{0}".format(config.target_triple)
)
if os.path.exists(swift_Benchmark_Onone):
config.substitutions.append(("%swift_Benchmark_Onone", swift_Benchmark_Onone))
config.available_features.add("swift_Benchmark_Onone")
if sys.platform.startswith("netbsd"):
# needed e.g. to use freshly built libc++
host_flags += [
"-L" + config.llvm_libs_dir,
"-Wl,-rpath," + config.llvm_libs_dir,
]
# The clang module cache is used for building inferiors.
host_flags += ["-fmodules-cache-path={}".format(config.clang_module_cache)]
if config.cmake_sysroot:
host_flags += ["--sysroot={}".format(config.cmake_sysroot)]
host_flags = " ".join(host_flags)
config.substitutions.append(("%clang_host", "%clang " + host_flags))
config.substitutions.append(("%clangxx_host", "%clangxx " + host_flags))
config.substitutions.append(
("%clang_cl_host", "%clang_cl --target=" + config.host_triple)
)
additional_tool_dirs = []
if config.lldb_lit_tools_dir:
additional_tool_dirs.append(config.lldb_lit_tools_dir)
llvm_config.use_clang(
additional_flags=["--target=specify-a-target-or-use-a-_host-substitution"],
additional_tool_dirs=additional_tool_dirs,
required=True,
use_installed=True,
)
if sys.platform == "win32":
_use_msvc_substitutions(config)
have_lld = llvm_config.use_lld(
additional_tool_dirs=additional_tool_dirs, required=False, use_installed=True
)
if have_lld:
config.available_features.add("lld")
support_tools = [
"yaml2obj",
"obj2yaml",
"llvm-dwp",
"llvm-pdbutil",
"llvm-mc",
"llvm-readobj",
"llvm-objdump",
"llvm-objcopy",
"lli",
]
additional_tool_dirs += [config.lldb_tools_dir, config.llvm_tools_dir]
llvm_config.add_tool_substitutions(support_tools, additional_tool_dirs)
_disallow(config, "clang")
def use_lldb_repro_substitutions(config, mode):
lldb_init = _get_lldb_init_path(config)
substitutions = [
ToolSubst(
"%lldb",
command=FindTool("lldb-repro"),
extra_args=[mode, "--no-lldbinit", "-S", lldb_init],
),
ToolSubst(
"%lldb-init",
command=FindTool("lldb-repro"),
extra_args=[mode, "-S", lldb_init],
),
]
llvm_config.add_tool_substitutions(substitutions, [config.lldb_tools_dir])
|