2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-03-08 07:49:35 +03:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-03-09 09:27:42 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2018-12-11 22:34:28 +03:00
|
|
|
@depends(build_project)
|
2020-10-07 20:48:06 +03:00
|
|
|
def js_standalone(build_project):
|
|
|
|
if build_project == "js":
|
|
|
|
return True
|
2016-03-18 13:03:09 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-08-11 18:58:52 +03:00
|
|
|
# Branding
|
|
|
|
# ==============================================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--with-app-name",
|
|
|
|
env="MOZ_APP_NAME",
|
|
|
|
nargs=1,
|
|
|
|
help="Used for e.g. the binary program file name. If not set, "
|
|
|
|
"defaults to a lowercase form of MOZ_APP_BASENAME.",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-08-11 18:58:52 +03:00
|
|
|
|
2020-10-07 20:48:06 +03:00
|
|
|
@depends("--with-app-name", js_standalone, moz_app_basename)
|
2020-08-11 18:58:52 +03:00
|
|
|
def moz_app_name(value, js_standalone, moz_app_basename):
|
|
|
|
if value:
|
|
|
|
return value[0]
|
|
|
|
if js_standalone:
|
|
|
|
return "js"
|
|
|
|
return moz_app_basename.lower()
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-08-11 18:58:52 +03:00
|
|
|
set_config("MOZ_APP_NAME", moz_app_name)
|
|
|
|
|
2020-02-28 17:17:33 +03:00
|
|
|
# SmooshMonkey (new frontend)
|
|
|
|
# ==================================================
|
|
|
|
|
|
|
|
# Define here in order to use the option from bindgen.configure.
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-smoosh",
|
|
|
|
default=False,
|
|
|
|
help="Enable SmooshMonkey (new JS engine frontend)",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-02-28 17:17:33 +03:00
|
|
|
|
|
|
|
@depends("--enable-smoosh")
|
|
|
|
def enable_smoosh(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("JS_ENABLE_SMOOSH", enable_smoosh)
|
|
|
|
set_define("JS_ENABLE_SMOOSH", enable_smoosh)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-29 20:11:27 +03:00
|
|
|
include("../build/moz.configure/nspr.configure", when="--enable-compile-environment")
|
2018-08-02 19:00:21 +03:00
|
|
|
include("../build/moz.configure/rust.configure", when="--enable-compile-environment")
|
2019-02-15 18:23:08 +03:00
|
|
|
include("../build/moz.configure/bindgen.configure", when="--enable-compile-environment")
|
2018-08-02 19:00:21 +03:00
|
|
|
|
2016-03-22 08:21:32 +03:00
|
|
|
set_config("JS_STANDALONE", js_standalone)
|
2017-09-01 01:59:13 +03:00
|
|
|
set_define("JS_STANDALONE", js_standalone)
|
2016-03-23 10:34:59 +03:00
|
|
|
add_old_configure_assignment("JS_STANDALONE", js_standalone)
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-js-shell", default=js_standalone, help="{Build|Do not build} the JS shell"
|
|
|
|
)
|
2016-03-09 09:27:42 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-10-07 20:48:06 +03:00
|
|
|
@depends("--enable-js-shell")
|
2016-03-22 08:21:32 +03:00
|
|
|
def js_disable_shell(value):
|
2016-03-09 09:27:42 +03:00
|
|
|
if not value:
|
2016-03-22 08:21:32 +03:00
|
|
|
return True
|
|
|
|
|
2016-03-09 11:41:40 +03:00
|
|
|
|
2016-03-22 08:21:32 +03:00
|
|
|
set_config("JS_DISABLE_SHELL", js_disable_shell)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2018-02-22 11:40:00 +03:00
|
|
|
set_define("JS_64BIT", depends(target)(lambda t: t.bitness == 64 or None))
|
2016-03-09 11:41:40 +03:00
|
|
|
|
2017-12-02 05:29:28 +03:00
|
|
|
set_define("JS_PUNBOX64", depends(target)(lambda t: t.bitness == 64 or None))
|
|
|
|
set_define("JS_NUNBOX32", depends(target)(lambda t: t.bitness == 32 or None))
|
|
|
|
|
|
|
|
|
2016-03-09 11:41:40 +03:00
|
|
|
# SpiderMonkey as a shared library, and how its symbols are exported
|
|
|
|
# ==================================================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--disable-shared-js",
|
|
|
|
when=js_standalone,
|
|
|
|
help="{Create|Do not create} a shared library",
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
option(
|
2019-05-28 21:45:03 +03:00
|
|
|
"--disable-export-js",
|
2020-10-08 07:07:46 +03:00
|
|
|
when=js_standalone,
|
|
|
|
help="{Mark|Do not mark} JS symbols as DLL exported/visible",
|
|
|
|
)
|
2016-03-09 11:41:40 +03:00
|
|
|
|
|
|
|
|
2019-05-28 21:45:03 +03:00
|
|
|
@depends("--disable-shared-js", "--disable-export-js", when=js_standalone)
|
2016-03-23 04:22:08 +03:00
|
|
|
def shared_js(shared_js, export_js):
|
2016-03-09 11:41:40 +03:00
|
|
|
if shared_js:
|
|
|
|
if not export_js:
|
2016-03-25 09:48:21 +03:00
|
|
|
die("Must export JS symbols when building a shared library.")
|
2016-03-23 04:22:08 +03:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("JS_SHARED_LIBRARY", shared_js)
|
2016-03-23 10:34:59 +03:00
|
|
|
add_old_configure_assignment("JS_SHARED_LIBRARY", shared_js)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
|
|
|
|
2019-05-28 21:45:03 +03:00
|
|
|
@depends(shared_js, "--disable-export-js", when=js_standalone)
|
2016-03-23 04:22:08 +03:00
|
|
|
def exportable_js_api(shared_js, export_js):
|
|
|
|
if not shared_js and export_js:
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("STATIC_EXPORTABLE_JS_API", exportable_js_api)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-23 04:22:08 +03:00
|
|
|
|
2019-05-28 21:45:03 +03:00
|
|
|
@depends(shared_js, exportable_js_api)
|
2016-03-23 04:22:08 +03:00
|
|
|
def static_js_api(shared_js, export_js):
|
|
|
|
if not shared_js and not export_js:
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("STATIC_JS_API", static_js_api)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-09 11:41:40 +03:00
|
|
|
|
2019-05-28 21:45:03 +03:00
|
|
|
@depends(shared_js)
|
2016-03-23 04:22:08 +03:00
|
|
|
def static_js(value):
|
|
|
|
if not value:
|
2016-03-22 08:21:32 +03:00
|
|
|
return True
|
|
|
|
|
2016-03-09 11:41:40 +03:00
|
|
|
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("MOZ_STATIC_JS", static_js)
|
2016-03-17 10:12:44 +03:00
|
|
|
|
2019-11-15 16:14:42 +03:00
|
|
|
|
2017-12-02 05:29:27 +03:00
|
|
|
# JIT support
|
|
|
|
# =======================================================
|
2019-02-06 16:41:56 +03:00
|
|
|
@depends(target)
|
2020-04-07 17:52:33 +03:00
|
|
|
def jit_default(target):
|
2017-12-02 05:29:27 +03:00
|
|
|
if target.cpu in ("x86", "x86_64", "arm", "aarch64", "mips32", "mips64"):
|
|
|
|
return True
|
Bug 1366287 - Part 1.0: Define a new BigInt primitive type, with a GDB prettyprinter, Rust binding support, and a new out-of-line TraceKind. (Disabled by default, implemented only incompletely, currently passing --enable-bigint will disable JITs, will be flipped on Eventually once every sub-aspect is in place, Don't Have A Cow, Man.) r=jwalden, r=Ms2ger, r=sfink
--HG--
extra : rebase_source : aa13bd94bc6157ff8134894e3ba2e7a2b53e28d9
2018-05-24 21:26:09 +03:00
|
|
|
return False
|
2017-12-02 05:29:27 +03:00
|
|
|
|
2020-04-07 17:52:33 +03:00
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--enable-jit", default=jit_default, help="{Enable|Disable} use of the JITs")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
|
|
|
|
2020-04-07 17:52:33 +03:00
|
|
|
@deprecated_option("--enable-ion")
|
|
|
|
def report_deprecated(value):
|
|
|
|
if value:
|
|
|
|
die("--enable-ion is deprecated, use --enable-jit instead")
|
|
|
|
else:
|
|
|
|
die("--disable-ion is deprecated, use --disable-jit instead")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-12-02 05:29:27 +03:00
|
|
|
|
|
|
|
# JIT code simulator for cross compiles
|
|
|
|
# =======================================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-simulator",
|
|
|
|
choices=("arm", "arm64", "mips32", "mips64"),
|
|
|
|
nargs=1,
|
|
|
|
help="Enable a JIT code simulator for the specified architecture",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-12-02 05:29:27 +03:00
|
|
|
|
2021-02-19 01:44:40 +03:00
|
|
|
@depends("--enable-jit", "--enable-simulator", target)
|
|
|
|
def simulator(jit_enabled, simulator_enabled, target):
|
2020-04-07 17:52:33 +03:00
|
|
|
if not jit_enabled or not simulator_enabled:
|
2017-12-02 05:29:27 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
sim_cpu = simulator_enabled[0]
|
|
|
|
|
|
|
|
if sim_cpu in ("arm", "mips32"):
|
|
|
|
if target.cpu != "x86":
|
|
|
|
die("The %s simulator only works on x86." % sim_cpu)
|
|
|
|
|
|
|
|
if sim_cpu in ("arm64", "mips64"):
|
|
|
|
if target.cpu != "x86_64":
|
|
|
|
die("The %s simulator only works on x86-64." % sim_cpu)
|
|
|
|
|
2021-02-19 02:25:47 +03:00
|
|
|
return namespace(**{sim_cpu: True})
|
2017-12-02 05:29:27 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-12-02 05:29:27 +03:00
|
|
|
set_config("JS_SIMULATOR", depends_if(simulator)(lambda x: True))
|
|
|
|
set_config("JS_SIMULATOR_ARM", simulator.arm)
|
|
|
|
set_config("JS_SIMULATOR_ARM64", simulator.arm64)
|
|
|
|
set_config("JS_SIMULATOR_MIPS32", simulator.mips32)
|
|
|
|
set_config("JS_SIMULATOR_MIPS64", simulator.mips64)
|
|
|
|
set_define("JS_SIMULATOR", depends_if(simulator)(lambda x: True))
|
|
|
|
set_define("JS_SIMULATOR_ARM", simulator.arm)
|
|
|
|
set_define("JS_SIMULATOR_ARM64", simulator.arm64)
|
|
|
|
set_define("JS_SIMULATOR_MIPS32", simulator.mips32)
|
|
|
|
set_define("JS_SIMULATOR_MIPS64", simulator.mips64)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
|
|
|
|
2020-04-07 17:52:33 +03:00
|
|
|
@depends("--enable-jit", simulator, target)
|
|
|
|
def jit_codegen(jit_enabled, simulator, target):
|
|
|
|
if not jit_enabled:
|
2017-12-02 05:29:27 +03:00
|
|
|
return namespace(none=True)
|
|
|
|
|
|
|
|
if simulator:
|
|
|
|
return simulator
|
|
|
|
|
|
|
|
if target.cpu == "aarch64":
|
|
|
|
return namespace(arm64=True)
|
|
|
|
elif target.cpu == "x86_64":
|
|
|
|
return namespace(x64=True)
|
|
|
|
|
|
|
|
return namespace(**{str(target.cpu): True})
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-12-02 05:29:27 +03:00
|
|
|
set_config("JS_CODEGEN_NONE", jit_codegen.none)
|
|
|
|
set_config("JS_CODEGEN_ARM", jit_codegen.arm)
|
|
|
|
set_config("JS_CODEGEN_ARM64", jit_codegen.arm64)
|
|
|
|
set_config("JS_CODEGEN_MIPS32", jit_codegen.mips32)
|
|
|
|
set_config("JS_CODEGEN_MIPS64", jit_codegen.mips64)
|
|
|
|
set_config("JS_CODEGEN_X86", jit_codegen.x86)
|
|
|
|
set_config("JS_CODEGEN_X64", jit_codegen.x64)
|
|
|
|
set_define("JS_CODEGEN_NONE", jit_codegen.none)
|
|
|
|
set_define("JS_CODEGEN_ARM", jit_codegen.arm)
|
|
|
|
set_define("JS_CODEGEN_ARM64", jit_codegen.arm64)
|
|
|
|
set_define("JS_CODEGEN_MIPS32", jit_codegen.mips32)
|
|
|
|
set_define("JS_CODEGEN_MIPS64", jit_codegen.mips64)
|
|
|
|
set_define("JS_CODEGEN_X86", jit_codegen.x86)
|
|
|
|
set_define("JS_CODEGEN_X64", jit_codegen.x64)
|
|
|
|
|
2016-03-17 10:12:44 +03:00
|
|
|
# Profiling
|
|
|
|
# =======================================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-instruments",
|
|
|
|
env="MOZ_INSTRUMENTS",
|
|
|
|
help="Enable instruments remote profiling",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-17 10:12:44 +03:00
|
|
|
|
|
|
|
@depends("--enable-instruments", target)
|
|
|
|
def instruments(value, target):
|
|
|
|
if value and target.os != "OSX":
|
2016-03-25 09:48:21 +03:00
|
|
|
die("--enable-instruments cannot be used when targeting %s", target.os)
|
2016-03-17 10:12:44 +03:00
|
|
|
if value:
|
2016-03-22 08:21:32 +03:00
|
|
|
return True
|
2016-03-17 10:17:36 +03:00
|
|
|
|
|
|
|
|
2016-03-22 08:21:32 +03:00
|
|
|
set_config("MOZ_INSTRUMENTS", instruments)
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("MOZ_INSTRUMENTS", instruments)
|
2016-03-23 10:34:59 +03:00
|
|
|
add_old_configure_assignment("MOZ_INSTRUMENTS", instruments)
|
2016-03-23 08:18:57 +03:00
|
|
|
imply_option("--enable-profiling", instruments, reason="--enable-instruments")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--enable-callgrind", env="MOZ_CALLGRIND", help="Enable callgrind profiling")
|
2016-03-17 10:17:36 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-17 10:17:36 +03:00
|
|
|
@depends("--enable-callgrind")
|
|
|
|
def callgrind(value):
|
|
|
|
if value:
|
2016-03-23 04:22:08 +03:00
|
|
|
return True
|
2016-03-17 10:24:30 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("MOZ_CALLGRIND", callgrind)
|
2016-03-23 08:18:57 +03:00
|
|
|
imply_option("--enable-profiling", callgrind)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-03-17 10:24:30 +03:00
|
|
|
|
2018-12-11 22:34:28 +03:00
|
|
|
@depends(milestone)
|
|
|
|
def enable_profiling(milestone):
|
2016-11-30 00:47:38 +03:00
|
|
|
return milestone.is_nightly
|
|
|
|
|
2016-03-17 10:24:30 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
option(
|
2016-03-23 08:18:57 +03:00
|
|
|
"--enable-profiling",
|
2020-10-08 07:07:46 +03:00
|
|
|
env="MOZ_PROFILING",
|
|
|
|
default=enable_profiling,
|
|
|
|
help="{Set|Do not set} compile flags necessary for using sampling "
|
|
|
|
"profilers (e.g. shark, perf)",
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2016-03-23 08:18:57 +03:00
|
|
|
@depends("--enable-profiling")
|
|
|
|
def profiling(value):
|
2016-03-17 10:24:30 +03:00
|
|
|
if value:
|
2016-03-23 08:18:57 +03:00
|
|
|
return True
|
2016-03-17 10:24:30 +03:00
|
|
|
|
2016-03-23 10:34:59 +03:00
|
|
|
|
|
|
|
add_old_configure_assignment("MOZ_PROFILING", profiling)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-06-13 01:30:46 +03:00
|
|
|
with only_when("--enable-compile-environment"):
|
|
|
|
imply_option("--enable-frame-pointers", True, when=profiling)
|
|
|
|
|
|
|
|
|
2016-03-23 08:18:57 +03:00
|
|
|
@depends(profiling, target)
|
|
|
|
def imply_vtune(value, target):
|
2017-01-18 01:35:42 +03:00
|
|
|
ok_cpu = target.cpu in ["x86", "x86_64"]
|
|
|
|
ok_kernel = target.kernel == "WINNT" or (
|
|
|
|
target.kernel == "Linux" and target.os == "GNU"
|
|
|
|
)
|
|
|
|
|
|
|
|
if value and ok_cpu and ok_kernel:
|
2016-03-22 08:21:32 +03:00
|
|
|
return True
|
|
|
|
|
2016-03-17 10:24:30 +03:00
|
|
|
|
2016-03-22 08:21:32 +03:00
|
|
|
set_config("MOZ_PROFILING", profiling)
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("MOZ_PROFILING", profiling)
|
2016-03-23 08:18:57 +03:00
|
|
|
imply_option("--enable-vtune", imply_vtune, reason="--enable-profiling")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--enable-vtune", env="MOZ_VTUNE", help="Enable VTune profiling")
|
2016-03-17 10:24:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-vtune")
|
|
|
|
def vtune(value):
|
|
|
|
if value:
|
2016-03-22 08:21:32 +03:00
|
|
|
return True
|
|
|
|
|
2016-08-10 14:06:40 +03:00
|
|
|
|
2016-03-22 08:21:32 +03:00
|
|
|
set_config("MOZ_VTUNE", vtune)
|
2016-03-23 04:22:08 +03:00
|
|
|
set_define("MOZ_VTUNE", vtune)
|
2016-08-10 14:06:40 +03:00
|
|
|
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
option(
|
2020-10-08 07:07:46 +03:00
|
|
|
"--enable-gc-probes",
|
|
|
|
env="JS_GC_PROBES",
|
|
|
|
help="Turn on probes for allocation and finalization",
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-05-05 19:35:14 +03:00
|
|
|
@depends("--enable-gc-probes")
|
|
|
|
def gc_probes(value):
|
2016-08-10 14:06:40 +03:00
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-05 19:35:14 +03:00
|
|
|
set_define("JS_GC_PROBES", gc_probes)
|
2016-08-10 14:06:49 +03:00
|
|
|
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-gczeal",
|
|
|
|
default=depends(when=moz_debug)(lambda: True),
|
|
|
|
help="{Enable|Disable} zealous GCing",
|
|
|
|
)
|
2017-12-03 21:40:03 +03:00
|
|
|
|
|
|
|
set_define("JS_GC_ZEAL", depends_if("--enable-gczeal")(lambda _: True))
|
|
|
|
|
|
|
|
|
2017-12-03 21:44:55 +03:00
|
|
|
# Use a smaller chunk size for GC chunks
|
|
|
|
# ========================================================
|
|
|
|
# Use large (1MB) chunks by default. This option can be used to give
|
|
|
|
# smaller (currently 256K) chunks.
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-small-chunk-size",
|
|
|
|
help="Allocate memory for JS GC things in smaller chunks",
|
|
|
|
)
|
2017-12-03 21:44:55 +03:00
|
|
|
|
|
|
|
set_define(
|
|
|
|
"JS_GC_SMALL_CHUNK_SIZE", depends(when="--enable-small-chunk-size")(lambda: True)
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2017-12-03 21:44:55 +03:00
|
|
|
|
|
|
|
|
2017-12-02 21:43:41 +03:00
|
|
|
# Trace logging.
|
|
|
|
# =======================================================
|
2019-04-12 02:52:41 +03:00
|
|
|
@depends(milestone)
|
|
|
|
def default_trace_logging(milestone):
|
|
|
|
return milestone.is_nightly
|
|
|
|
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-trace-logging",
|
|
|
|
default=default_trace_logging,
|
|
|
|
help="{Enable|Disable} trace logging",
|
|
|
|
)
|
2017-12-02 21:43:41 +03:00
|
|
|
|
|
|
|
set_config("ENABLE_TRACE_LOGGING", depends_if("--enable-trace-logging")(lambda x: True))
|
|
|
|
set_define("JS_TRACE_LOGGING", depends_if("--enable-trace-logging")(lambda x: True))
|
|
|
|
|
|
|
|
|
2018-01-31 22:35:57 +03:00
|
|
|
# Enable breakpoint for artificial OOMs
|
|
|
|
# =======================================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-oom-breakpoint", help="Enable a breakpoint function for artificial OOMs"
|
|
|
|
)
|
2018-01-31 22:35:57 +03:00
|
|
|
|
|
|
|
set_define("JS_OOM_BREAKPOINT", depends_if("--enable-oom-breakpoint")(lambda _: True))
|
|
|
|
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--enable-perf", env="JS_ION_PERF", help="Enable Linux perf integration")
|
2016-08-10 14:06:49 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-08-10 14:06:49 +03:00
|
|
|
@depends("--enable-perf")
|
|
|
|
def ion_perf(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-08-10 14:06:49 +03:00
|
|
|
set_define("JS_ION_PERF", ion_perf)
|
2016-08-10 14:06:55 +03:00
|
|
|
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-jitspew",
|
|
|
|
default=depends(when=moz_debug)(lambda: True),
|
|
|
|
help="{Enable|Disable} the Jit spew and IONFLAGS environment " "variable",
|
|
|
|
)
|
2017-12-02 21:43:40 +03:00
|
|
|
|
|
|
|
set_define("JS_JITSPEW", depends_if("--enable-jitspew")(lambda _: True))
|
|
|
|
set_config("JS_JITSPEW", depends_if("--enable-jitspew")(lambda _: True))
|
|
|
|
|
2018-11-29 17:37:01 +03:00
|
|
|
# Also enable the structured spewer
|
|
|
|
set_define("JS_STRUCTURED_SPEW", depends_if("--enable-jitspew")(lambda _: True))
|
|
|
|
set_config("JS_STRUCTURED_SPEW", depends_if("--enable-jitspew")(lambda _: True))
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-04-03 19:47:49 +03:00
|
|
|
|
2020-04-07 17:52:33 +03:00
|
|
|
@depends("--enable-jit", "--enable-jitspew", simulator, target, moz_debug)
|
|
|
|
def jit_disasm_arm(jit_enabled, spew, simulator, target, debug):
|
|
|
|
if not jit_enabled:
|
2019-04-03 19:47:49 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
if simulator and (debug or spew):
|
|
|
|
if getattr(simulator, "arm", None):
|
|
|
|
return True
|
|
|
|
|
|
|
|
if target.cpu == "arm" and (debug or spew):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("JS_DISASM_ARM", jit_disasm_arm)
|
|
|
|
set_define("JS_DISASM_ARM", jit_disasm_arm)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
|
|
|
|
2020-04-07 17:52:33 +03:00
|
|
|
@depends("--enable-jit", "--enable-jitspew", simulator, target, moz_debug)
|
|
|
|
def jit_disasm_arm64(jit_enabled, spew, simulator, target, debug):
|
|
|
|
if not jit_enabled:
|
2019-04-03 19:47:49 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
if simulator and (debug or spew):
|
|
|
|
if getattr(simulator, "arm64", None):
|
|
|
|
return True
|
|
|
|
|
|
|
|
if target.cpu == "aarch64" and (debug or spew):
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-04-03 19:47:49 +03:00
|
|
|
set_config("JS_DISASM_ARM64", jit_disasm_arm64)
|
|
|
|
set_define("JS_DISASM_ARM64", jit_disasm_arm64)
|
|
|
|
|
2018-10-24 16:07:53 +03:00
|
|
|
# When enabled, masm will generate assumeUnreachable calls that act as
|
|
|
|
# assertions in the generated code. This option is worth disabling when you
|
|
|
|
# have to track mutated values through the generated code, to avoid constantly
|
|
|
|
# dumping registers on and off the stack.
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-masm-verbose",
|
|
|
|
default=depends(when=moz_debug)(lambda: True),
|
|
|
|
help="{Enable|Disable} MacroAssembler verbosity of generated code.",
|
|
|
|
)
|
2018-10-24 16:07:53 +03:00
|
|
|
set_define("JS_MASM_VERBOSE", depends_if("--enable-masm-verbose")(lambda _: True))
|
|
|
|
set_config("JS_MASM_VERBOSE", depends_if("--enable-masm-verbose")(lambda _: True))
|
|
|
|
|
2021-01-21 15:06:33 +03:00
|
|
|
# Architecture feature flags
|
|
|
|
# =======================================================
|
|
|
|
|
|
|
|
# Apple silicon does not seem to have any way to query the OS for the JSCVT
|
|
|
|
# flag stored in the ID_AA64ISAR1_EL1 system register. In the mean time, we
|
|
|
|
# hard code the value of the JSCVT flag which guards the implementation of
|
|
|
|
# FJCVTZS instruction as part of ARMv8.3-JSConv.
|
|
|
|
@depends(target)
|
|
|
|
def is_apple_silicon(target):
|
|
|
|
return target.os == "OSX" and target.kernel == "Darwin" and target.cpu == "aarch64"
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-arm64-fjcvtzs",
|
|
|
|
default=is_apple_silicon,
|
2021-01-21 22:00:50 +03:00
|
|
|
help="{Enable|Disable} static use of FJCVTZS instruction on Aarch64 targets.",
|
2021-01-21 15:06:33 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
# The "ARM Architecture Reference Manual" for ARMv8 defines the JSCVT flag as
|
|
|
|
# being a 4 bit integer (D12.2.52) and it can be manipulated using >= operator
|
|
|
|
# (D12.1.4).
|
|
|
|
#
|
|
|
|
# The FJCVTZS instruction is implemented if ID_AA64ISAR1_EL1.JSCVT >= 1.
|
|
|
|
@depends("--enable-arm64-fjcvtzs", target, simulator)
|
|
|
|
def aarch64_jscvt(fjcvtzs, target, simulator):
|
|
|
|
if target.cpu == "aarch64" and fjcvtzs:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
if simulator and getattr(simulator, "arm64", False) and fjcvtzs:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
set_define("MOZ_AARCH64_JSCVT", aarch64_jscvt)
|
2017-12-02 21:43:40 +03:00
|
|
|
|
2016-10-04 08:57:00 +03:00
|
|
|
# CTypes
|
|
|
|
# =======================================================
|
2020-10-07 20:48:06 +03:00
|
|
|
@depends(js_standalone)
|
|
|
|
def ctypes_default(js_standalone):
|
|
|
|
return not js_standalone
|
2016-10-04 08:57:00 +03:00
|
|
|
|
|
|
|
|
|
|
|
option("--enable-ctypes", default=ctypes_default, help="{Enable|Disable} js-ctypes")
|
|
|
|
|
|
|
|
build_ctypes = depends_if("--enable-ctypes")(lambda _: True)
|
|
|
|
|
Bug 1669633 - Don't recurse into js/src for the python-part of configure. r=firefox-build-system-reviewers,rstewart
Instead, we now run js/src/old-configure from the top-level configure
after having run old-configure and extracted a few variables to inherit
from it.
Because we're now running from the top-level, $_objdir is always the
top-level objdir, which simplifies some things. The topobjdir in
js/src/config.status, however, needs to stay in js/src because of the
build frontend expecting it there.
When running js/src/old-configure, we used to need some special
treatment for a large number of variables for historic reasons, where
we'd take values from the assigned values before running old-configure
for some, or from AC_SUBSTs after running old-configure.
Now that both old-configure and js/src/old-configure get the same
assignments from old-configure.vars, we don't need anything special for
the former. And only a few remaining variables still need manual work
for the latter.
One notable difference, though, is that the new code doesn't try to
avoid running js subconfigure, which added complexity, and was actually
error-prone.
Differential Revision: https://phabricator.services.mozilla.com/D92725
2020-10-08 00:13:19 +03:00
|
|
|
set_config("BUILD_CTYPES", build_ctypes)
|
|
|
|
set_define("BUILD_CTYPES", build_ctypes)
|
2016-10-04 08:57:00 +03:00
|
|
|
|
|
|
|
set_config("JS_HAS_CTYPES", build_ctypes)
|
|
|
|
set_define("JS_HAS_CTYPES", build_ctypes)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
|
|
|
|
2018-12-11 22:34:28 +03:00
|
|
|
@depends("--enable-ctypes", "--enable-compile-environment")
|
|
|
|
def ctypes_and_compile_environment(ctypes, compile_environment):
|
2016-10-04 08:57:00 +03:00
|
|
|
return ctypes and compile_environment
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2016-10-13 11:15:24 +03:00
|
|
|
include("ffi.configure", when=ctypes_and_compile_environment)
|
2017-01-24 02:40:38 +03:00
|
|
|
|
|
|
|
|
2017-10-17 07:10:00 +03:00
|
|
|
# Enable pipeline operator
|
|
|
|
# ===================================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--enable-pipeline-operator", default=False, help="Enable pipeline operator")
|
2017-10-17 07:10:00 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-10-17 07:10:00 +03:00
|
|
|
@depends("--enable-pipeline-operator")
|
|
|
|
def enable_pipeline_operator(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2017-10-17 07:10:00 +03:00
|
|
|
set_config("ENABLE_PIPELINE_OPERATOR", enable_pipeline_operator)
|
|
|
|
set_define("ENABLE_PIPELINE_OPERATOR", enable_pipeline_operator)
|
2017-12-15 18:54:55 +03:00
|
|
|
|
|
|
|
|
2019-09-24 03:26:55 +03:00
|
|
|
# SIMD acceleration for encoding_rs
|
|
|
|
# ==============================================================
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-rust-simd", env="MOZ_RUST_SIMD", help="Enable explicit SIMD in Rust code."
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-09-24 03:26:55 +03:00
|
|
|
|
|
|
|
@depends("--enable-rust-simd", target)
|
|
|
|
def rust_simd(value, target):
|
|
|
|
# As of 2019-09-17, the simd-accel feature of encoding_rs has not
|
|
|
|
# been properly set up outside aarch64, armv7, x86 and x86_64.
|
|
|
|
if target.cpu in ("aarch64", "arm", "x86", "x86_64") and value:
|
|
|
|
return True
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-09-24 03:26:55 +03:00
|
|
|
set_config("MOZ_RUST_SIMD", rust_simd)
|
|
|
|
set_define("MOZ_RUST_SIMD", rust_simd)
|
|
|
|
|
|
|
|
|
2020-09-02 11:17:36 +03:00
|
|
|
# Support for wasm code generation with Cranelift
|
2018-07-24 21:31:45 +03:00
|
|
|
# ==============================================================
|
2018-09-25 20:05:08 +03:00
|
|
|
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-14 10:43:27 +03:00
|
|
|
option(
|
|
|
|
"--enable-cranelift",
|
|
|
|
default=False,
|
|
|
|
help="{Enable|Disable} Cranelift code generator for wasm",
|
|
|
|
)
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-11-06 10:59:55 +03:00
|
|
|
@depends(
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-14 10:43:27 +03:00
|
|
|
"--enable-cranelift",
|
2020-11-06 10:59:55 +03:00
|
|
|
"--enable-jit",
|
|
|
|
"--enable-simulator",
|
|
|
|
target,
|
|
|
|
target_is_windows,
|
|
|
|
)
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-14 10:43:27 +03:00
|
|
|
def enable_cranelift(value, jit_enabled, simulator, target, is_windows):
|
|
|
|
if not value:
|
|
|
|
return
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-12 18:46:46 +03:00
|
|
|
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-14 10:43:27 +03:00
|
|
|
if not jit_enabled:
|
|
|
|
die("--enable-cranelift requires --enable-jit")
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-12 18:46:46 +03:00
|
|
|
|
Bug 1686626 - Enable Ion by default for wasm on AArch64. r=lth.
This patch enables Ion by default as the optimising compiler for wasm on
AArch64, and disables Cranelift. Cranelift is still available if the build is
configured with --enable-cranelift. In that case, *only* Cranelift is
available. There are no configuration flags to enable both Ion and Cranelift
simultaneously.
This mostly reverts the Phase 0 and Phase 1 patches that are bug 1678097
D102420 and D101867 respectively.
The command line option --wasm-force-ion has been removed.
With this patch in place, users of the shell should specify
`--wasm-compiler=optimizing` to get an optimising wasm compiler. Which one is
provided depends on the configuration options as described above.
`--wasm-compiler=cranelift` and `--wasm-compiler=ion` are now only accepted
when the relevant compiler has been enabled, and so neither is a "safe" way to
request an optimising tier.
For that reason, test directories that previously requested
also-with-Ion-please by stating `test-also=--wasm-compiler=ion;` in their
`directives.txt` file, have been changed to use
`test-also=--wasm-compiler=optimizing;`.
In places where the JSContextOptions are set, the non-selected compiler (Ion
or CL) is explicitly set to `false` (eg, `.setWasmIon(false)`). This may be
overly conservative, but seems wise given that it's not immediately obvious
what the previous value of that flag is, and given the recent difficulties
with incorrect option propagation/handling (eg, bug 1697560).
Differential Revision: https://phabricator.services.mozilla.com/D101695
2021-04-14 10:43:27 +03:00
|
|
|
if not (
|
|
|
|
target.cpu == "aarch64"
|
|
|
|
or (target.cpu == "x86_64" and simulator and simulator[0] == "arm64")
|
|
|
|
):
|
|
|
|
die("--enable-cranelift is only supported on arm64")
|
|
|
|
|
|
|
|
if is_windows:
|
|
|
|
die("--enable-cranelift is not supported on windows")
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_CRANELIFT", enable_cranelift)
|
|
|
|
set_define("ENABLE_WASM_CRANELIFT", enable_cranelift)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-01-31 20:29:02 +03:00
|
|
|
|
Bug 1656638: Add Wasm compile- and run-time telemetry to track Wasm compiler performance. r=lth
This patch adds telemetry to measure the time spent in Wasm compilers
and in the code that they generate (actually, all JS and Wasm code).
For simplicity, it measures wallclock time as a proxy for CPU time.
Furthermore, it measures runtime for all JS and Wasm code, and all
native functions invoked by the JS or Wasm code, by timing from
top-level entry to exit. This is for efficiency reasons: we do not want
to add a VM call in the transition stubs between native and JS or JS and
Wasm; that would be a Very Bad Thing for performance, even for a Nightly
build instrumented with telemetry. Because of that, it's difficult to
separate JITted JS and JITted Wasm runtime, but observing their sum
should still be useful when making comparisons across compiler changes
because absolute reductions will still be visible.
The plumbing is somewhat awkward, given that Wasm compilers can run on
background threads. It appears that the telemetry-callback API that
SpiderMonkey includes to avoid a direct dependency on the Gecko
embedding had artificially limited the callback to main-thread use only.
This patch removes that limitation, which is safe at least for Gecko;
the telemetry hooks in Gecko are thread-safe (they take a global mutex).
That way, the background threads performing compilation can directly add
telemetry incrementally, without having to pass this up through the main
thread somehow.
Finally, I have chosen to add the relevant metrics as Scalar telemetry
values rather than Histograms. This is because what we are really
interested in is the sum of all these values (all CPU time spent in
compilation + running Wasm code); if this value goes down as a result of
a Wasm compiler change, then that Wasm compiler change is good because
it reduces CPU time on the user's machine. It is difficult to add two
Histograms together because the bins may have different boundaries. If
we instead need to use a binned histogram for other reasons, then we
could simply report the sum (of all compiler time plus run time) as
another histogram.
Differential Revision: https://phabricator.services.mozilla.com/D85654
2020-08-06 04:28:45 +03:00
|
|
|
# Telemetry to measure compile time and generated-code runtime
|
|
|
|
# ============================================================
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-spidermonkey-telemetry",
|
|
|
|
default=milestone.is_nightly,
|
|
|
|
help="{Enable|Disable} performance telemetry for SpiderMonkey (e.g. compile and run times)",
|
|
|
|
)
|
Bug 1656638: Add Wasm compile- and run-time telemetry to track Wasm compiler performance. r=lth
This patch adds telemetry to measure the time spent in Wasm compilers
and in the code that they generate (actually, all JS and Wasm code).
For simplicity, it measures wallclock time as a proxy for CPU time.
Furthermore, it measures runtime for all JS and Wasm code, and all
native functions invoked by the JS or Wasm code, by timing from
top-level entry to exit. This is for efficiency reasons: we do not want
to add a VM call in the transition stubs between native and JS or JS and
Wasm; that would be a Very Bad Thing for performance, even for a Nightly
build instrumented with telemetry. Because of that, it's difficult to
separate JITted JS and JITted Wasm runtime, but observing their sum
should still be useful when making comparisons across compiler changes
because absolute reductions will still be visible.
The plumbing is somewhat awkward, given that Wasm compilers can run on
background threads. It appears that the telemetry-callback API that
SpiderMonkey includes to avoid a direct dependency on the Gecko
embedding had artificially limited the callback to main-thread use only.
This patch removes that limitation, which is safe at least for Gecko;
the telemetry hooks in Gecko are thread-safe (they take a global mutex).
That way, the background threads performing compilation can directly add
telemetry incrementally, without having to pass this up through the main
thread somehow.
Finally, I have chosen to add the relevant metrics as Scalar telemetry
values rather than Histograms. This is because what we are really
interested in is the sum of all these values (all CPU time spent in
compilation + running Wasm code); if this value goes down as a result of
a Wasm compiler change, then that Wasm compiler change is good because
it reduces CPU time on the user's machine. It is difficult to add two
Histograms together because the bins may have different boundaries. If
we instead need to use a binned histogram for other reasons, then we
could simply report the sum (of all compiler time plus run time) as
another histogram.
Differential Revision: https://phabricator.services.mozilla.com/D85654
2020-08-06 04:28:45 +03:00
|
|
|
|
|
|
|
set_define(
|
|
|
|
"ENABLE_SPIDERMONKEY_TELEMETRY",
|
|
|
|
depends_if("--enable-spidermonkey-telemetry")(lambda x: True),
|
|
|
|
)
|
2019-01-31 20:29:02 +03:00
|
|
|
|
|
|
|
# Support for debugging code generated by wasm backends
|
|
|
|
# =====================================================
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-wasm-codegen-debug",
|
|
|
|
default=depends(when=moz_debug)(lambda: True),
|
|
|
|
help="{Enable|Disable} debugging for wasm codegen",
|
|
|
|
)
|
2019-01-31 20:29:02 +03:00
|
|
|
|
|
|
|
set_config(
|
|
|
|
"WASM_CODEGEN_DEBUG", depends_if("--enable-wasm-codegen-debug")(lambda x: True)
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2019-01-31 20:29:02 +03:00
|
|
|
set_define(
|
|
|
|
"WASM_CODEGEN_DEBUG", depends_if("--enable-wasm-codegen-debug")(lambda x: True)
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2019-02-14 14:44:25 +03:00
|
|
|
|
2020-09-28 22:18:48 +03:00
|
|
|
# Support for WebAssembly function-references.
|
|
|
|
# ===========================
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2021-04-09 23:03:53 +03:00
|
|
|
@depends(milestone.is_nightly)
|
|
|
|
def default_wasm_function_references(is_nightly):
|
|
|
|
if is_nightly:
|
2020-09-28 22:18:48 +03:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
option(
|
2020-10-13 00:01:39 +03:00
|
|
|
"--enable-wasm-function-references",
|
2020-10-08 07:07:46 +03:00
|
|
|
default=default_wasm_function_references,
|
|
|
|
help="{Enable|Disable} WebAssembly function-references",
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-04-09 23:03:53 +03:00
|
|
|
@depends("--enable-wasm-function-references")
|
|
|
|
def wasm_function_references(value):
|
|
|
|
if value:
|
2020-09-28 22:18:48 +03:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_FUNCTION_REFERENCES", wasm_function_references)
|
|
|
|
set_define("ENABLE_WASM_FUNCTION_REFERENCES", wasm_function_references)
|
2019-02-14 14:59:38 +03:00
|
|
|
|
|
|
|
# Support for WebAssembly GC.
|
|
|
|
# ===========================
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-10-13 00:01:39 +03:00
|
|
|
@depends(milestone.is_nightly, "--enable-wasm-function-references")
|
|
|
|
def default_wasm_gc(is_nightly, function_references):
|
|
|
|
if is_nightly and function_references:
|
2019-02-14 14:59:38 +03:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
option(
|
2020-10-08 07:07:46 +03:00
|
|
|
"--enable-wasm-gc", default=default_wasm_gc, help="{Enable|Disable} WebAssembly GC"
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-10-13 00:01:39 +03:00
|
|
|
@depends("--enable-wasm-gc", "--enable-wasm-function-references")
|
|
|
|
def wasm_gc(value, function_references):
|
2020-06-03 13:45:14 +03:00
|
|
|
if not value:
|
|
|
|
return
|
|
|
|
|
2020-10-13 00:01:39 +03:00
|
|
|
if function_references:
|
2020-06-03 13:45:14 +03:00
|
|
|
return True
|
|
|
|
|
2020-10-13 00:01:39 +03:00
|
|
|
die("--enable-wasm-gc only possible with --enable-wasm-function-references")
|
2020-06-03 13:45:14 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-06-03 13:45:14 +03:00
|
|
|
set_config("ENABLE_WASM_GC", wasm_gc)
|
|
|
|
set_define("ENABLE_WASM_GC", wasm_gc)
|
2019-02-14 14:59:38 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Support for WebAssembly private ref types.
|
|
|
|
# Prevent (ref T) types from being exposed to JS content so that wasm need do
|
|
|
|
# no typechecking at the JS/wasm boundary
|
|
|
|
# ===========================================================================
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2019-02-14 14:59:38 +03:00
|
|
|
@depends(milestone.is_nightly, "--enable-wasm-gc")
|
|
|
|
def default_wasm_private_reftypes(is_nightly, gc):
|
|
|
|
if gc and is_nightly:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2020-09-21 14:01:19 +03:00
|
|
|
option(
|
|
|
|
"--enable-wasm-private-reftypes",
|
|
|
|
default=default_wasm_private_reftypes,
|
|
|
|
help="{Enable|Disable} WebAssembly private reference types",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-09-21 14:01:19 +03:00
|
|
|
set_config(
|
|
|
|
"WASM_PRIVATE_REFTYPES",
|
|
|
|
depends_if("--enable-wasm-private-reftypes")(lambda x: True),
|
|
|
|
)
|
|
|
|
set_define(
|
2019-02-14 14:59:38 +03:00
|
|
|
"WASM_PRIVATE_REFTYPES",
|
2020-10-08 07:07:46 +03:00
|
|
|
depends_if("--enable-wasm-private-reftypes")(lambda x: True),
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2019-10-01 17:30:35 +03:00
|
|
|
|
Bug 1566427 - Improved compiler availability computation. r=bbouvier
This patch cleans up wasm compiler selection and a few related things
with as few semantic changes as possible. The intent is to centralize
compiler availability computation so that all parts of the system stay
in sync and it is easy to change compiler selection policy.
First, we introduce new predicates <Compiler>Available(cx) to test for
the actual availability of a compiler. These predicates take into
account whether a compiler is compiled into the executable, whether it
supports the hardware, whether it is (currently) selected by
options/switches, and whether it can be used as a result of the
runtime environment (for example, Ion and Cranelift are not available
if the debugger is observing the page or if the GC feature is enabled;
Cranelift is not available if shared memory and atomics are enabled).
We switch to using these predicates almost everywhere that used
<Compiler>CanCompile() or cx->options().wasm<Compiler>(), since those
don't tell the full story.
Second, we implement a priority order of the optimizing compilers and
make it easy to change this order (see comments in code). At the
moment, Cranelift is prioritized over Ion since Ion is enabled by
default and Cranelift is not; thus the desire of somebody flipping the
pref for Cranelift is to deselect Ion. The priority order may change
in the future or may become platform-dependent. The default compiler
selection in both browser and shell remains Baseline+Ion.
Third, we rename HasCompilerSupport() as HasPlatformSupport(), since
the predicate does not test whether compilers are available, only
whether they are present in the executable and support the hardware.
And to make that more sensible, <Compiler>CanCompile() is renamed
as <Compiler>PlatformSupport().
Fourth, we remove some redundant testing predicates (we don't need
both wasmDebugSupport and wasmDebuggingIsSupported, nor do we need
wasmUsesCranelift because wasmCompileMode is more reliable).
Fifth, we introduce a few new test cases that try to ensure that
compiler selection works as it should. These are white-box and may
need to change if the compiler priority order changes.
Sixth, we rename the internal wasm::Has<Feature>Support() predicates
as wasm::<Feature>Available(), since they all actually test for
compiler availability.
Differential Revision: https://phabricator.services.mozilla.com/D64946
--HG--
extra : moz-landing-system : lando
2020-03-11 18:03:45 +03:00
|
|
|
# Support for WebAssembly shared memory and atomics.
|
|
|
|
#
|
|
|
|
# This affects the JS shell only and here to allow the use of
|
|
|
|
# Cranelift in the shell. Once Cranelift supports shared memory
|
|
|
|
# and atomics it can go away.
|
|
|
|
# =====================================================
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--disable-shared-memory", help="Disable JS/WebAssembly shared memory and atomics"
|
|
|
|
)
|
Bug 1566427 - Improved compiler availability computation. r=bbouvier
This patch cleans up wasm compiler selection and a few related things
with as few semantic changes as possible. The intent is to centralize
compiler availability computation so that all parts of the system stay
in sync and it is easy to change compiler selection policy.
First, we introduce new predicates <Compiler>Available(cx) to test for
the actual availability of a compiler. These predicates take into
account whether a compiler is compiled into the executable, whether it
supports the hardware, whether it is (currently) selected by
options/switches, and whether it can be used as a result of the
runtime environment (for example, Ion and Cranelift are not available
if the debugger is observing the page or if the GC feature is enabled;
Cranelift is not available if shared memory and atomics are enabled).
We switch to using these predicates almost everywhere that used
<Compiler>CanCompile() or cx->options().wasm<Compiler>(), since those
don't tell the full story.
Second, we implement a priority order of the optimizing compilers and
make it easy to change this order (see comments in code). At the
moment, Cranelift is prioritized over Ion since Ion is enabled by
default and Cranelift is not; thus the desire of somebody flipping the
pref for Cranelift is to deselect Ion. The priority order may change
in the future or may become platform-dependent. The default compiler
selection in both browser and shell remains Baseline+Ion.
Third, we rename HasCompilerSupport() as HasPlatformSupport(), since
the predicate does not test whether compilers are available, only
whether they are present in the executable and support the hardware.
And to make that more sensible, <Compiler>CanCompile() is renamed
as <Compiler>PlatformSupport().
Fourth, we remove some redundant testing predicates (we don't need
both wasmDebugSupport and wasmDebuggingIsSupported, nor do we need
wasmUsesCranelift because wasmCompileMode is more reliable).
Fifth, we introduce a few new test cases that try to ensure that
compiler selection works as it should. These are white-box and may
need to change if the compiler priority order changes.
Sixth, we rename the internal wasm::Has<Feature>Support() predicates
as wasm::<Feature>Available(), since they all actually test for
compiler availability.
Differential Revision: https://phabricator.services.mozilla.com/D64946
--HG--
extra : moz-landing-system : lando
2020-03-11 18:03:45 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-03-27 19:56:25 +03:00
|
|
|
@depends("--disable-shared-memory")
|
|
|
|
def enable_shared_memory(value):
|
|
|
|
if value:
|
|
|
|
return True
|
Bug 1566427 - Improved compiler availability computation. r=bbouvier
This patch cleans up wasm compiler selection and a few related things
with as few semantic changes as possible. The intent is to centralize
compiler availability computation so that all parts of the system stay
in sync and it is easy to change compiler selection policy.
First, we introduce new predicates <Compiler>Available(cx) to test for
the actual availability of a compiler. These predicates take into
account whether a compiler is compiled into the executable, whether it
supports the hardware, whether it is (currently) selected by
options/switches, and whether it can be used as a result of the
runtime environment (for example, Ion and Cranelift are not available
if the debugger is observing the page or if the GC feature is enabled;
Cranelift is not available if shared memory and atomics are enabled).
We switch to using these predicates almost everywhere that used
<Compiler>CanCompile() or cx->options().wasm<Compiler>(), since those
don't tell the full story.
Second, we implement a priority order of the optimizing compilers and
make it easy to change this order (see comments in code). At the
moment, Cranelift is prioritized over Ion since Ion is enabled by
default and Cranelift is not; thus the desire of somebody flipping the
pref for Cranelift is to deselect Ion. The priority order may change
in the future or may become platform-dependent. The default compiler
selection in both browser and shell remains Baseline+Ion.
Third, we rename HasCompilerSupport() as HasPlatformSupport(), since
the predicate does not test whether compilers are available, only
whether they are present in the executable and support the hardware.
And to make that more sensible, <Compiler>CanCompile() is renamed
as <Compiler>PlatformSupport().
Fourth, we remove some redundant testing predicates (we don't need
both wasmDebugSupport and wasmDebuggingIsSupported, nor do we need
wasmUsesCranelift because wasmCompileMode is more reliable).
Fifth, we introduce a few new test cases that try to ensure that
compiler selection works as it should. These are white-box and may
need to change if the compiler priority order changes.
Sixth, we rename the internal wasm::Has<Feature>Support() predicates
as wasm::<Feature>Available(), since they all actually test for
compiler availability.
Differential Revision: https://phabricator.services.mozilla.com/D64946
--HG--
extra : moz-landing-system : lando
2020-03-11 18:03:45 +03:00
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-03-27 19:56:25 +03:00
|
|
|
set_config("ENABLE_SHARED_MEMORY", enable_shared_memory)
|
|
|
|
set_define("ENABLE_SHARED_MEMORY", enable_shared_memory)
|
Bug 1566427 - Improved compiler availability computation. r=bbouvier
This patch cleans up wasm compiler selection and a few related things
with as few semantic changes as possible. The intent is to centralize
compiler availability computation so that all parts of the system stay
in sync and it is easy to change compiler selection policy.
First, we introduce new predicates <Compiler>Available(cx) to test for
the actual availability of a compiler. These predicates take into
account whether a compiler is compiled into the executable, whether it
supports the hardware, whether it is (currently) selected by
options/switches, and whether it can be used as a result of the
runtime environment (for example, Ion and Cranelift are not available
if the debugger is observing the page or if the GC feature is enabled;
Cranelift is not available if shared memory and atomics are enabled).
We switch to using these predicates almost everywhere that used
<Compiler>CanCompile() or cx->options().wasm<Compiler>(), since those
don't tell the full story.
Second, we implement a priority order of the optimizing compilers and
make it easy to change this order (see comments in code). At the
moment, Cranelift is prioritized over Ion since Ion is enabled by
default and Cranelift is not; thus the desire of somebody flipping the
pref for Cranelift is to deselect Ion. The priority order may change
in the future or may become platform-dependent. The default compiler
selection in both browser and shell remains Baseline+Ion.
Third, we rename HasCompilerSupport() as HasPlatformSupport(), since
the predicate does not test whether compilers are available, only
whether they are present in the executable and support the hardware.
And to make that more sensible, <Compiler>CanCompile() is renamed
as <Compiler>PlatformSupport().
Fourth, we remove some redundant testing predicates (we don't need
both wasmDebugSupport and wasmDebuggingIsSupported, nor do we need
wasmUsesCranelift because wasmCompileMode is more reliable).
Fifth, we introduce a few new test cases that try to ensure that
compiler selection works as it should. These are white-box and may
need to change if the compiler priority order changes.
Sixth, we rename the internal wasm::Has<Feature>Support() predicates
as wasm::<Feature>Available(), since they all actually test for
compiler availability.
Differential Revision: https://phabricator.services.mozilla.com/D64946
--HG--
extra : moz-landing-system : lando
2020-03-11 18:03:45 +03:00
|
|
|
|
2021-05-04 18:58:26 +03:00
|
|
|
# Support for WebAssembly extended constant expressions
|
|
|
|
# =====================================================
|
|
|
|
|
|
|
|
|
|
|
|
@depends(milestone.is_nightly)
|
|
|
|
def default_wasm_extended_const(is_nightly):
|
|
|
|
if is_nightly:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-wasm-extended-const",
|
|
|
|
default=default_wasm_extended_const,
|
|
|
|
help="{Enable|Disable} WebAssembly extended constant expressions",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-wasm-extended-const")
|
|
|
|
def wasm_extended_const(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_EXTENDED_CONST", wasm_extended_const)
|
|
|
|
set_define("ENABLE_WASM_EXTENDED_CONST", wasm_extended_const)
|
Bug 1566427 - Improved compiler availability computation. r=bbouvier
This patch cleans up wasm compiler selection and a few related things
with as few semantic changes as possible. The intent is to centralize
compiler availability computation so that all parts of the system stay
in sync and it is easy to change compiler selection policy.
First, we introduce new predicates <Compiler>Available(cx) to test for
the actual availability of a compiler. These predicates take into
account whether a compiler is compiled into the executable, whether it
supports the hardware, whether it is (currently) selected by
options/switches, and whether it can be used as a result of the
runtime environment (for example, Ion and Cranelift are not available
if the debugger is observing the page or if the GC feature is enabled;
Cranelift is not available if shared memory and atomics are enabled).
We switch to using these predicates almost everywhere that used
<Compiler>CanCompile() or cx->options().wasm<Compiler>(), since those
don't tell the full story.
Second, we implement a priority order of the optimizing compilers and
make it easy to change this order (see comments in code). At the
moment, Cranelift is prioritized over Ion since Ion is enabled by
default and Cranelift is not; thus the desire of somebody flipping the
pref for Cranelift is to deselect Ion. The priority order may change
in the future or may become platform-dependent. The default compiler
selection in both browser and shell remains Baseline+Ion.
Third, we rename HasCompilerSupport() as HasPlatformSupport(), since
the predicate does not test whether compilers are available, only
whether they are present in the executable and support the hardware.
And to make that more sensible, <Compiler>CanCompile() is renamed
as <Compiler>PlatformSupport().
Fourth, we remove some redundant testing predicates (we don't need
both wasmDebugSupport and wasmDebuggingIsSupported, nor do we need
wasmUsesCranelift because wasmCompileMode is more reliable).
Fifth, we introduce a few new test cases that try to ensure that
compiler selection works as it should. These are white-box and may
need to change if the compiler priority order changes.
Sixth, we rename the internal wasm::Has<Feature>Support() predicates
as wasm::<Feature>Available(), since they all actually test for
compiler availability.
Differential Revision: https://phabricator.services.mozilla.com/D64946
--HG--
extra : moz-landing-system : lando
2020-03-11 18:03:45 +03:00
|
|
|
|
2020-05-05 11:17:47 +03:00
|
|
|
# Support for WebAssembly SIMD
|
|
|
|
# =====================================================
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
@depends("--enable-jit", "--enable-simulator", "--enable-cranelift", target)
|
|
|
|
def default_wasm_simd(jit_enabled, simulator, cranelift_enabled, target):
|
2021-01-27 14:35:40 +03:00
|
|
|
if not jit_enabled:
|
2020-05-05 11:17:47 +03:00
|
|
|
return
|
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
if cranelift_enabled:
|
|
|
|
return
|
|
|
|
|
|
|
|
if simulator and (simulator[0] != "arm64"):
|
2021-03-12 20:23:54 +03:00
|
|
|
return
|
2021-01-27 14:35:40 +03:00
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
if target.cpu in ("x86_64", "x86", "aarch64"):
|
2020-05-05 11:17:47 +03:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
option(
|
2020-10-06 15:10:56 +03:00
|
|
|
"--enable-wasm-simd",
|
2020-10-08 07:07:46 +03:00
|
|
|
default=default_wasm_simd,
|
|
|
|
help="{Enable|Disable} WebAssembly SIMD",
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
@depends(
|
|
|
|
"--enable-wasm-simd",
|
|
|
|
"--enable-jit",
|
|
|
|
"--enable-simulator",
|
|
|
|
"--enable-cranelift",
|
|
|
|
target,
|
|
|
|
)
|
|
|
|
def wasm_simd(value, jit_enabled, simulator, cranelift_enabled, target):
|
2020-05-20 10:01:38 +03:00
|
|
|
if not value:
|
|
|
|
return
|
|
|
|
|
2021-01-27 14:35:40 +03:00
|
|
|
if not jit_enabled:
|
2021-05-05 19:53:02 +03:00
|
|
|
die("--enable-wasm-simd requires --enable-jit")
|
2021-01-27 14:35:40 +03:00
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
if cranelift_enabled:
|
|
|
|
die("--enable-wasm-simd is not supported for --enable-cranelift")
|
|
|
|
|
|
|
|
if simulator and (simulator[0] != "arm64"):
|
|
|
|
die("--enable-wasm-simd is not supported for simulators, except arm64")
|
2020-05-20 10:01:38 +03:00
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
if target.cpu in ("x86_64", "x86", "aarch64"):
|
2020-10-02 16:12:42 +03:00
|
|
|
return True
|
|
|
|
|
2021-05-05 19:53:02 +03:00
|
|
|
die("--enable-wasm-simd only possible when targeting the x86_64/x86/arm64 jits")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-20 10:01:38 +03:00
|
|
|
|
|
|
|
set_config("ENABLE_WASM_SIMD", wasm_simd)
|
|
|
|
set_define("ENABLE_WASM_SIMD", wasm_simd)
|
2020-05-22 01:38:46 +03:00
|
|
|
|
2021-02-12 11:44:08 +03:00
|
|
|
# Wormhole opcodes are Intel-only. They are private to Firefox, but we need them for some
|
|
|
|
# experiments on release and so they ride the trains.
|
2020-12-15 12:49:35 +03:00
|
|
|
|
|
|
|
|
2021-02-12 11:44:08 +03:00
|
|
|
@depends("--enable-simulator", "--enable-wasm-simd", target)
|
|
|
|
def default_wasm_simd_wormhole(simulator, wasm_simd, target):
|
|
|
|
if wasm_simd and target.cpu in ("x86", "x86_64") and not simulator:
|
2021-01-27 17:49:11 +03:00
|
|
|
return True
|
2021-01-27 17:16:02 +03:00
|
|
|
|
2020-12-15 12:49:35 +03:00
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-wasm-simd-wormhole",
|
|
|
|
default=default_wasm_simd_wormhole,
|
|
|
|
help="{Enable|Disable} WebAssembly SIMD wormhole opcodes",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-02-12 11:44:08 +03:00
|
|
|
@depends(
|
|
|
|
"--enable-wasm-simd-wormhole", "--enable-wasm-simd", "--enable-simulator", target
|
|
|
|
)
|
|
|
|
def wasm_simd_wormhole(value, wasm_simd, simulator, target):
|
2021-01-29 17:20:16 +03:00
|
|
|
if not value:
|
|
|
|
return
|
|
|
|
|
2021-02-12 11:44:08 +03:00
|
|
|
if wasm_simd and target.cpu in ("x86", "x86_64") and not simulator:
|
|
|
|
return True
|
2020-12-15 12:49:35 +03:00
|
|
|
|
2021-02-12 11:44:08 +03:00
|
|
|
die("SIMD wormhole currently supported on native x86/x64 only, with --wasm-simd")
|
2020-12-15 12:49:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_SIMD_WORMHOLE", wasm_simd_wormhole)
|
|
|
|
set_define("ENABLE_WASM_SIMD_WORMHOLE", wasm_simd_wormhole)
|
|
|
|
|
|
|
|
|
2021-05-04 09:26:13 +03:00
|
|
|
# Support for WebAssembly relaxed SIMD
|
|
|
|
# =====================================================
|
|
|
|
|
|
|
|
|
|
|
|
@depends(milestone.is_nightly, "--enable-wasm-simd")
|
|
|
|
def default_wasm_relaxed_simd(is_nightly, wasm_simd):
|
|
|
|
if is_nightly and wasm_simd:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-wasm-relaxed-simd",
|
|
|
|
default=default_wasm_relaxed_simd,
|
|
|
|
help="{Enable|Disable} WebAssembly relaxed SIMD",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-wasm-relaxed-simd", "--enable-wasm-simd")
|
|
|
|
def wasm_relaxed_simd(value, wasm_simd):
|
|
|
|
if not value:
|
|
|
|
return
|
|
|
|
|
|
|
|
if not wasm_simd:
|
|
|
|
die("relaxed SIMD requires SIMD")
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_RELAXED_SIMD", wasm_relaxed_simd)
|
|
|
|
set_define("ENABLE_WASM_RELAXED_SIMD", wasm_relaxed_simd)
|
|
|
|
|
2021-08-06 22:14:23 +03:00
|
|
|
# Support for WebAssembly intgemm private intrinsics
|
|
|
|
# =====================================================
|
|
|
|
|
|
|
|
|
|
|
|
@depends(milestone.is_nightly)
|
|
|
|
def default_wasm_moz_intgemm(is_nightly):
|
|
|
|
if is_nightly:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-wasm-moz-intgemm",
|
|
|
|
default=default_wasm_moz_intgemm,
|
|
|
|
help="{Enable|Disable} WebAssembly intgemm private intrinsics",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-wasm-moz-intgemm")
|
|
|
|
def wasm_moz_intgemm(value):
|
|
|
|
if not value:
|
|
|
|
return
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_MOZ_INTGEMM", wasm_moz_intgemm)
|
|
|
|
set_define("ENABLE_WASM_MOZ_INTGEMM", wasm_moz_intgemm)
|
|
|
|
|
2021-07-16 23:58:09 +03:00
|
|
|
# Support for WebAssembly Memory64.
|
|
|
|
# ===========================
|
|
|
|
|
2021-10-18 12:58:13 +03:00
|
|
|
|
|
|
|
@depends(milestone.is_nightly, "--enable-cranelift", "--enable-simulator", target)
|
|
|
|
def default_wasm_memory64(is_nightly, cranelift, simulator, target):
|
|
|
|
if cranelift:
|
|
|
|
return
|
|
|
|
|
2021-11-26 11:49:32 +03:00
|
|
|
if target.cpu == "mips32":
|
2021-10-18 12:58:13 +03:00
|
|
|
return
|
|
|
|
|
2021-11-26 11:49:32 +03:00
|
|
|
if simulator and simulator[0] == "mips32":
|
2021-10-18 12:58:13 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
if is_nightly:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2021-07-16 23:58:09 +03:00
|
|
|
option(
|
|
|
|
"--enable-wasm-memory64",
|
2021-10-18 12:58:13 +03:00
|
|
|
default=default_wasm_memory64,
|
2021-07-16 23:58:09 +03:00
|
|
|
help="{Enable|Disable} WebAssembly Memory64",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-10-18 12:58:13 +03:00
|
|
|
@depends("--enable-wasm-memory64", "--enable-cranelift", "--enable-simulator", target)
|
|
|
|
def wasm_memory64(value, cranelift, simulator, target):
|
|
|
|
if not value:
|
|
|
|
return
|
|
|
|
|
|
|
|
if cranelift:
|
|
|
|
die("Memory64 is incompatible with Cranelift")
|
|
|
|
|
2021-11-26 11:49:32 +03:00
|
|
|
if target.cpu == "mips32":
|
|
|
|
die("Memory64 is incompatible with MIPS32 target")
|
2021-10-18 12:58:13 +03:00
|
|
|
|
2021-11-26 11:49:32 +03:00
|
|
|
if simulator and simulator[0] == "mips32":
|
|
|
|
die("Memory64 is incompatible with MIPS32 simulator")
|
2021-10-18 12:58:13 +03:00
|
|
|
|
|
|
|
return True
|
2021-07-16 23:58:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_WASM_MEMORY64", wasm_memory64)
|
|
|
|
set_define("ENABLE_WASM_MEMORY64", wasm_memory64)
|
2021-05-04 09:26:13 +03:00
|
|
|
|
2020-05-22 01:38:46 +03:00
|
|
|
# Options for generating the shell as a script
|
|
|
|
# ============================================
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--with-qemu-exe", nargs=1, help="Use path as an arm emulator on host platforms")
|
2020-05-22 01:38:46 +03:00
|
|
|
set_config("QEMU_EXE", depends_if("--with-qemu-exe")(lambda x: x))
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--with-cross-lib",
|
|
|
|
nargs=1,
|
|
|
|
default=depends(target.alias)(lambda x: "/usr/%s" % x),
|
|
|
|
help="Use dir as the location for arm libraries",
|
|
|
|
)
|
2020-05-22 01:38:46 +03:00
|
|
|
set_config("CROSS_LIB", depends_if("--with-cross-lib")(lambda x: x))
|
2020-05-22 01:38:46 +03:00
|
|
|
|
|
|
|
# Enable static checking using sixgill
|
|
|
|
# ====================================
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option("--with-sixgill", nargs=1, help="Enable static checking of code using sixgill")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-22 01:38:46 +03:00
|
|
|
|
|
|
|
@depends_if("--with-sixgill")
|
|
|
|
@imports("os")
|
|
|
|
def sixgill(value):
|
|
|
|
for f in ("bin/xdbfind", "gcc/xgill.so", "scripts/wrap_gcc/g++"):
|
|
|
|
if not os.path.exists(os.path.join(value[0], f)):
|
|
|
|
die("The sixgill plugin and binaries are not at the specified path")
|
|
|
|
return value[0]
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-22 01:38:46 +03:00
|
|
|
set_config("SIXGILL_PATH", sixgill)
|
2020-05-22 01:38:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Support for readline
|
|
|
|
# =====================================================
|
2021-04-20 08:15:28 +03:00
|
|
|
|
|
|
|
|
2021-04-22 07:25:04 +03:00
|
|
|
@depends("--enable-js-shell", target_is_windows, compile_environment, target)
|
|
|
|
def editline(js_shell, is_windows, compile_environment, target):
|
|
|
|
return js_shell and not is_windows and compile_environment and (target.os != "WASI")
|
2020-05-22 01:38:46 +03:00
|
|
|
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
option(
|
2020-05-22 01:38:46 +03:00
|
|
|
"--enable-readline", help="Link js shell to system readline library", when=editline
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
|
|
|
|
2020-05-22 01:38:46 +03:00
|
|
|
has_readline = check_symbol(
|
2020-10-26 21:34:53 +03:00
|
|
|
"readline",
|
2020-05-22 01:38:46 +03:00
|
|
|
flags=["-lreadline"],
|
|
|
|
when="--enable-readline",
|
|
|
|
onerror=lambda: die("No system readline library found"),
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-22 01:38:46 +03:00
|
|
|
set_config("EDITLINE_LIBS", ["-lreadline"], when=has_readline)
|
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-readline", editline, when=editline)
|
|
|
|
def bundled_editline(readline, editline):
|
|
|
|
return editline and not readline
|
|
|
|
|
|
|
|
|
|
|
|
set_config("JS_BUNDLED_EDITLINE", bundled_editline)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-22 01:38:46 +03:00
|
|
|
set_define("EDITLINE", True, when=editline)
|
2020-05-29 15:17:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
# JIT observers
|
|
|
|
# =============
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--with-jitreport-granularity",
|
|
|
|
default="3",
|
|
|
|
choices=("0", "1", "2", "3"),
|
|
|
|
help="Default granularity at which to report JIT code to external tools "
|
|
|
|
"(0 - no info, 1 - code ranges for while functions only, "
|
|
|
|
"2 - per-line information, 3 - per-op information)",
|
|
|
|
)
|
2020-05-29 15:17:26 +03:00
|
|
|
|
|
|
|
set_define(
|
|
|
|
"JS_DEFAULT_JITREPORT_GRANULARITY",
|
|
|
|
depends_if("--with-jitreport-granularity")(lambda value: value[0]),
|
|
|
|
)
|
2020-05-30 00:29:52 +03:00
|
|
|
|
|
|
|
|
|
|
|
# ECMAScript Internationalization API Support (uses ICU)
|
|
|
|
# ======================================================
|
2021-07-16 23:51:27 +03:00
|
|
|
system_lib_option("--with-system-icu", help="Use system ICU")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2021-11-16 20:02:59 +03:00
|
|
|
system_icu = pkg_check_modules("MOZ_ICU", "icu-i18n >= 70.1", when="--with-system-icu")
|
2020-05-30 00:29:52 +03:00
|
|
|
|
2021-12-01 00:34:14 +03:00
|
|
|
|
|
|
|
@depends("--with-system-icu")
|
|
|
|
def in_tree_icu(system_icu):
|
|
|
|
return not system_icu
|
|
|
|
|
|
|
|
|
|
|
|
# Set MOZ_ICU_CFLAGS to an explicit empty value when --with-system-icu is *not* used,
|
|
|
|
# for layout/style/extra-bindgen-flags
|
|
|
|
set_config("MOZ_ICU_CFLAGS", [], when=in_tree_icu)
|
|
|
|
|
2020-05-30 00:29:52 +03:00
|
|
|
set_config("MOZ_SYSTEM_ICU", True, when=system_icu)
|
|
|
|
set_define("MOZ_SYSTEM_ICU", True, when=system_icu)
|
|
|
|
|
|
|
|
option("--without-intl-api", help="Disable ECMAScript Internationalization API")
|
|
|
|
|
|
|
|
|
2020-10-07 20:48:06 +03:00
|
|
|
@depends("--with-intl-api", js_standalone)
|
|
|
|
def check_intl_api(enabled, js_standalone):
|
|
|
|
if not enabled and not js_standalone:
|
2020-05-30 00:29:52 +03:00
|
|
|
die("--without-intl-api is not supported")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-30 00:29:52 +03:00
|
|
|
|
|
|
|
set_config("JS_HAS_INTL_API", True, when="--with-intl-api")
|
|
|
|
set_define("JS_HAS_INTL_API", True, when="--with-intl-api")
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-30 00:29:52 +03:00
|
|
|
@depends(check_build_environment, when="--with-intl-api")
|
|
|
|
@imports(_from="__builtin__", _import="open")
|
|
|
|
@imports(_from="__builtin__", _import="ValueError")
|
|
|
|
def icu_version(build_env):
|
|
|
|
path = os.path.join(
|
|
|
|
build_env.topsrcdir, "intl", "icu", "source", "common", "unicode", "uvernum.h"
|
|
|
|
)
|
|
|
|
with open(path, encoding="utf-8") as fh:
|
|
|
|
for line in fh:
|
|
|
|
if line.startswith("#define"):
|
|
|
|
define = line.split(None, 3)
|
|
|
|
if len(define) == 3 and define[1] == "U_ICU_VERSION_MAJOR_NUM":
|
|
|
|
try:
|
|
|
|
return str(int(define[2]))
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
die("Cannot determine ICU version number from uvernum.h header file")
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-30 00:29:52 +03:00
|
|
|
|
|
|
|
set_config("MOZ_ICU_VERSION", icu_version)
|
|
|
|
|
|
|
|
# Source files that use ICU should have control over which parts of the ICU
|
|
|
|
# namespace they want to use.
|
|
|
|
set_define("U_USING_ICU_NAMESPACE", "0", when="--with-intl-api")
|
|
|
|
|
|
|
|
# We build ICU as a static library.
|
|
|
|
set_define("U_STATIC_IMPLEMENTATION", True, when=depends(system_icu)(lambda x: not x))
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-05-30 00:29:52 +03:00
|
|
|
|
2020-09-21 14:01:19 +03:00
|
|
|
# Initial support for WebAssembly JS-API Type Reflections
|
|
|
|
# =======================================================
|
|
|
|
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-09-21 14:01:19 +03:00
|
|
|
@depends(milestone.is_nightly)
|
|
|
|
def default_wasm_type_reflections(is_nightly):
|
|
|
|
return is_nightly
|
|
|
|
|
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
option(
|
|
|
|
"--enable-wasm-type-reflections",
|
|
|
|
default=default_wasm_type_reflections,
|
|
|
|
help="{Enable|Disable} type reflection in WASM JS-API",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2020-10-08 07:07:46 +03:00
|
|
|
set_config(
|
2020-09-21 14:01:19 +03:00
|
|
|
"ENABLE_WASM_TYPE_REFLECTIONS",
|
|
|
|
depends_if("--enable-wasm-type-reflections")(lambda x: True),
|
|
|
|
)
|
|
|
|
set_define(
|
|
|
|
"ENABLE_WASM_TYPE_REFLECTIONS",
|
|
|
|
depends_if("--enable-wasm-type-reflections")(lambda x: True),
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2020-12-05 01:47:29 +03:00
|
|
|
|
|
|
|
# Support for WebAssembly exceptions
|
|
|
|
# ==================================
|
|
|
|
|
|
|
|
|
2021-04-09 23:03:51 +03:00
|
|
|
@depends(milestone.is_nightly)
|
|
|
|
def default_wasm_exceptions(is_nightly):
|
|
|
|
if is_nightly:
|
2020-12-05 01:47:29 +03:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-wasm-exceptions",
|
|
|
|
default=default_wasm_exceptions,
|
|
|
|
help="{Enable|Disable} WebAssembly exceptions",
|
|
|
|
)
|
|
|
|
|
|
|
|
set_config(
|
|
|
|
"ENABLE_WASM_EXCEPTIONS", depends_if("--enable-wasm-exceptions")(lambda x: True)
|
|
|
|
)
|
|
|
|
set_define(
|
|
|
|
"ENABLE_WASM_EXCEPTIONS", depends_if("--enable-wasm-exceptions")(lambda x: True)
|
|
|
|
)
|
2021-10-06 11:56:32 +03:00
|
|
|
|
|
|
|
set_define(
|
|
|
|
"_WASI_EMULATED_PROCESS_CLOCKS",
|
|
|
|
True,
|
|
|
|
when=depends(target)(lambda t: t.os == "WASI"),
|
|
|
|
)
|
2021-10-22 21:38:09 +03:00
|
|
|
|
|
|
|
# Enable change-array-by-copy
|
|
|
|
# ===================================================
|
|
|
|
def use_change_array_by_copy():
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-change-array-by-copy",
|
|
|
|
default=use_change_array_by_copy(),
|
|
|
|
help="{Enable|Disable} change-array-by-copy method pref/command-line option (disabled by default)",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-change-array-by-copy")
|
|
|
|
def enable_change_array_by_copy(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_CHANGE_ARRAY_BY_COPY", enable_change_array_by_copy)
|
|
|
|
set_define("ENABLE_CHANGE_ARRAY_BY_COPY", enable_change_array_by_copy)
|
2021-11-30 06:40:50 +03:00
|
|
|
|
|
|
|
# Enable New Set methods
|
|
|
|
# ===================================================
|
|
|
|
def use_new_set_methods():
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
option(
|
|
|
|
"--enable-new-set-methods",
|
|
|
|
default=use_new_set_methods(),
|
|
|
|
help="{Enable|Disable} New Set methods pref/command-line option (disabled by default)",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@depends("--enable-new-set-methods")
|
|
|
|
def enable_new_set_methods(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
set_config("ENABLE_NEW_SET_METHODS", enable_new_set_methods)
|
|
|
|
set_define("ENABLE_NEW_SET_METHODS", enable_new_set_methods)
|