aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2020-12-10 00:39:33 +0000
committerJan Beich <jbeich@FreeBSD.org>2020-12-10 00:39:33 +0000
commit6e605a1a9f712b3d633fa59388afef25ec6ced67 (patch)
tree81007854d64e056f433ee0dea14653a4b9b8e38b
parentd4034adbb8647c1aa4ec3e731ebeca9157fa102c (diff)
downloadports-6e605a1a9f712b3d633fa59388afef25ec6ced67.tar.gz
ports-6e605a1a9f712b3d633fa59388afef25ec6ced67.zip
Notes
-rw-r--r--www/firefox/Makefile5
-rw-r--r--www/firefox/distinfo6
-rw-r--r--www/firefox/files/patch-bug128858734
-rw-r--r--www/firefox/files/patch-bug1440203788
-rw-r--r--www/firefox/files/patch-bug155921360
-rw-r--r--www/firefox/files/patch-bug161891426
-rw-r--r--www/firefox/files/patch-bug16641158
-rw-r--r--www/firefox/files/patch-bug16677363208
-rw-r--r--www/firefox/files/patch-bug167080715
-rw-r--r--www/firefox/files/patch-bug1676134122
-rw-r--r--www/firefox/files/patch-bug1677715148
-rw-r--r--www/firefox/files/patch-bug847568140
-rw-r--r--www/firefox/files/patch-cubeb-oss1327
-rw-r--r--www/firefox/files/patch-env-api-keys14
-rw-r--r--www/firefox/files/patch-freebsd1121
15 files changed, 438 insertions, 5484 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile
index ddc0e9f57eeb..f62782ecf21d 100644
--- a/www/firefox/Makefile
+++ b/www/firefox/Makefile
@@ -2,12 +2,11 @@
# $FreeBSD$
PORTNAME= firefox
-DISTVERSION= 83.0
-PORTREVISION= 4
+DISTVERSION= 84.0
PORTEPOCH= 2
CATEGORIES= www
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
- MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source
+ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source
DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX}
MAINTAINER= gecko@FreeBSD.org
diff --git a/www/firefox/distinfo b/www/firefox/distinfo
index b77a92c16c55..9bbd2cee773c 100644
--- a/www/firefox/distinfo
+++ b/www/firefox/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1605204503
-SHA256 (firefox-83.0.source.tar.xz) = d69e84e8b8449f828683d274c24e03095858362bfed21b08bdd7fe715eea5398
-SIZE (firefox-83.0.source.tar.xz) = 351331940
+TIMESTAMP = 1607384511
+SHA256 (firefox-84.0.source.tar.xz) = 8a2c2e0d5ff510b4366b6124a499603a05eefdce015c22b02d36023ab6dc3665
+SIZE (firefox-84.0.source.tar.xz) = 365966380
diff --git a/www/firefox/files/patch-bug1288587 b/www/firefox/files/patch-bug1288587
index a911043358c9..6130cf7e30da 100644
--- a/www/firefox/files/patch-bug1288587
+++ b/www/firefox/files/patch-bug1288587
@@ -2,34 +2,34 @@ diff --git a/build/moz.configure/init.configure b/build/moz.configure/init.confi
index 855214a..1e91d51 100644
--- build/moz.configure/init.configure
+++ build/moz.configure/init.configure
-@@ -240,6 +240,7 @@ option(env='VIRTUALENV_NAME', nargs=1, default='init_p
- @imports(_from='mozbuild.pythonutil', _import='find_python3_executable')
- @imports(_from='mozbuild.pythonutil', _import='python_executable_version')
- @imports(_from='six', _import='ensure_text')
-+@imports(_from='__builtin__', _import='KeyError')
+@@ -238,6 +238,7 @@ option(
+ @imports(_from="mozbuild.pythonutil", _import="find_python3_executable")
+ @imports(_from="mozbuild.pythonutil", _import="python_executable_version")
+ @imports(_from="six", _import="ensure_text")
++@imports(_from="__builtin__", _import="KeyError")
def virtualenv_python3(env_python, virtualenv_name, build_env, mozconfig, help):
# Avoid re-executing python when running configure --help.
if help:
-@@ -273,6 +274,12 @@ def virtualenv_python3(env_python, virtualenv_name, bu
- python = mozconfig['vars']['added']['PYTHON3']
- elif 'PYTHON3' in mozconfig['vars']['modified']:
- python = mozconfig['vars']['modified']['PYTHON3'][1]
-+ for i in ('env', 'vars'):
-+ for j in ('added', 'modified'):
+@@ -271,6 +272,12 @@ def virtualenv_python3(env_python, virtualenv_name, bu
+ python = mozconfig["vars"]["added"]["PYTHON3"]
+ elif "PYTHON3" in mozconfig["vars"]["modified"]:
+ python = mozconfig["vars"]["modified"]["PYTHON3"][1]
++ for i in ("env", "vars"):
++ for j in ("added", "modified"):
+ try:
-+ del mozconfig[i][j]['PYTHON3']
++ del mozconfig[i][j]["PYTHON3"]
+ except KeyError:
+ pass
log.debug("python3: executable from configuration: %r" % python)
-@@ -358,7 +365,10 @@ def virtualenv_python3(env_python, virtualenv_name, bu
- sys.executable, manager.python_path))
- log.info('Re-executing in the virtualenv')
+@@ -364,7 +371,10 @@ def virtualenv_python3(env_python, virtualenv_name, bu
+ )
+ log.info("Re-executing in the virtualenv")
if env_python:
-- del os.environ['PYTHON3']
+- del os.environ["PYTHON3"]
+ try:
-+ del os.environ['PYTHON3']
++ del os.environ["PYTHON3"]
+ except KeyError:
+ pass
# Homebrew on macOS will change Python's sys.executable to a custom
diff --git a/www/firefox/files/patch-bug1440203 b/www/firefox/files/patch-bug1440203
deleted file mode 100644
index d66aebf5ff72..000000000000
--- a/www/firefox/files/patch-bug1440203
+++ /dev/null
@@ -1,788 +0,0 @@
-commit cc6e7ab13380
-Author: Jed Davis <jld@mozilla.com>
-Date: Thu Oct 22 21:23:32 2020 +0000
-
- Bug 1440203 - Support memfd_create in IPC shared memory. r=glandium
-
- This commit also allows `memfd_create` in the seccomp-bpf policy for all
- process types.
-
- `memfd_create` is an API added in Linux 3.17 (and adopted by FreeBSD
- for the upcoming version 13) for creating anonymous shared memory
- not connected to any filesystem. Supporting it means that sandboxed
- child processes on Linux can create shared memory directly instead of
- messaging a broker, which is unavoidably slower, and it should avoid
- the problems we'd been seeing with overly small `/dev/shm` in container
- environments (which were causing serious problems for using Firefox for
- automated testing of frontend projects).
-
- `memfd_create` also introduces the related operation of file seals:
- irrevocably preventing types of modifications to a file. Unfortunately,
- the most useful one, `F_SEAL_WRITE`, can't be relied on; see the large
- comment in `SharedMemory:ReadOnlyCopy` for details. So we still use
- the applicable seals as defense in depth, but read-only copies are
- implemented on Linux by using procfs (and see the comments on the
- `ReadOnlyCopy` function in `shared_memory_posix.cc` for the subtleties
- there).
-
- There's also a FreeBSD implementation, using `cap_rights_limit` for
- read-only copies, if the build host is new enough to have the
- `memfd_create` function.
-
- The support code for Android, which doesn't support shm_open and can't
- use the memfd backend because of issues with its SELinux policy (see bug
- 1670277), has been reorganized to reflect that we'll always use its own
- API, ashmem, in that case.
-
- Differential Revision: https://phabricator.services.mozilla.com/D90605
----
- build/moz.configure/headers.configure | 8 +
- config/system-headers.mozbuild | 5 +
- ipc/chromium/src/base/linux_memfd_defs.h | 69 +++++
- ipc/chromium/src/base/shared_memory.h | 3 +-
- ipc/chromium/src/base/shared_memory_posix.cc | 428 +++++++++++++++++++++------
- ipc/gtest/TestSharedMemory.cpp | 46 +++
- security/sandbox/linux/SandboxFilter.cpp | 9 +-
- 7 files changed, 472 insertions(+), 96 deletions(-)
-
-diff --git build/moz.configure/headers.configure build/moz.configure/headers.configure
-index 9445f10a4d53..0f4455d8eeea 100644
---- build/moz.configure/headers.configure
-+++ build/moz.configure/headers.configure
-@@ -65,6 +65,14 @@ check_headers(
- 'byteswap.h',
- )
-
-+# memfd_create(2) -- Note that older versions of the Linux man-pages
-+# project incorrectly cite <sys/memfd.h>, which doesn't exist; this
-+# was fixed in the man-pages-5.00 release.
-+set_define('HAVE_MEMFD_CREATE',
-+ try_compile(includes=['sys/mman.h'],
-+ body='memfd_create("", 0);',
-+ check_msg='for memfd_create in sys/mman.h'))
-+
- # TODO: Move these checks to file specific to --enable-project=js.
- have_perf_event_h = check_header('linux/perf_event.h',
- when=building_linux)
-diff --git config/system-headers.mozbuild config/system-headers.mozbuild
-index 1dfd3f0a48b8..3c355e3f1d71 100644
---- config/system-headers.mozbuild
-+++ config/system-headers.mozbuild
-@@ -1352,5 +1352,10 @@ if CONFIG['OS_TARGET'] == 'Linux' and CONFIG['CPU_ARCH'].startswith('mips'):
- 'sys/cachectl.h',
- ]
-
-+if CONFIG['OS_TARGET'] == 'FreeBSD':
-+ system_headers += [
-+ 'sys/capsicum.h',
-+ ]
-+
- if CONFIG['MOZ_APP_SYSTEM_HEADERS']:
- include("../" + CONFIG['MOZ_BUILD_APP'] + "/app-system-headers.mozbuild")
-diff --git ipc/chromium/src/base/linux_memfd_defs.h ipc/chromium/src/base/linux_memfd_defs.h
-new file mode 100644
-index 000000000000..f5b0de1de853
---- /dev/null
-+++ ipc/chromium/src/base/linux_memfd_defs.h
-@@ -0,0 +1,69 @@
-+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
-+/* 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 https://mozilla.org/MPL/2.0/. */
-+
-+#ifndef BASE_LINUX_MEMFD_DEFS_H
-+#define BASE_LINUX_MEMFD_DEFS_H
-+
-+#include <sys/syscall.h>
-+
-+// glibc before 2.27 didn't have a memfd_create wrapper, and if the
-+// build system is old enough then it won't have the syscall number
-+// and various related constants either.
-+
-+#if defined(__x86_64__)
-+# define MEMFD_CREATE_NR 319
-+#elif defined(__i386__)
-+# define MEMFD_CREATE_NR 356
-+#elif defined(__aarch64__)
-+# define MEMFD_CREATE_NR 279
-+#elif defined(__arm__)
-+# define MEMFD_CREATE_NR 385
-+#elif defined(__powerpc__)
-+# define MEMFD_CREATE_NR 360
-+#elif defined(__s390__)
-+# define MEMFD_CREATE_NR 350
-+#elif defined(__mips__)
-+# include <sgidefs.h>
-+# if _MIPS_SIM == _MIPS_SIM_ABI32
-+# define MEMFD_CREATE_NR 4354
-+# elif _MIPS_SIM == _MIPS_SIM_ABI64
-+# define MEMFD_CREATE_NR 5314
-+# elif _MIPS_SIM == _MIPS_SIM_NABI32
-+# define MEMFD_CREATE_NR 6318
-+# endif // mips subarch
-+#endif // arch
-+
-+#ifdef MEMFD_CREATE_NR
-+# ifdef SYS_memfd_create
-+static_assert(MEMFD_CREATE_NR == SYS_memfd_create,
-+ "MEMFD_CREATE_NR should match the actual SYS_memfd_create value");
-+# else // defined here but not in system headers
-+# define SYS_memfd_create MEMFD_CREATE_NR
-+# endif
-+#endif
-+
-+#ifndef MFD_CLOEXEC
-+# define MFD_CLOEXEC 0x0001U
-+# define MFD_ALLOW_SEALING 0x0002U
-+#endif
-+
-+#ifndef F_ADD_SEALS
-+# ifndef F_LINUX_SPECIFIC_BASE
-+# define F_LINUX_SPECIFIC_BASE 1024
-+# endif
-+# define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
-+# define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
-+# define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */
-+# define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
-+# define F_SEAL_GROW 0x0004 /* prevent file from growing */
-+# define F_SEAL_WRITE 0x0008 /* prevent writes */
-+#endif
-+
-+#ifndef F_SEAL_FUTURE_WRITE
-+# define F_SEAL_FUTURE_WRITE 0x0010
-+#endif
-+
-+#endif // BASE_LINUX_MEMFD_DEFS_H
-diff --git ipc/chromium/src/base/shared_memory.h ipc/chromium/src/base/shared_memory.h
-index 93372f4ab333..49d614164a0b 100644
---- ipc/chromium/src/base/shared_memory.h
-+++ ipc/chromium/src/base/shared_memory.h
-@@ -216,8 +216,9 @@ class SharedMemory {
- // If true indicates this came from an external source so needs extra checks
- // before being mapped.
- bool external_section_ = false;
--#elif defined(OS_POSIX)
-+#elif defined(OS_POSIX) && !defined(ANDROID)
- mozilla::UniqueFileHandle frozen_file_;
-+ bool is_memfd_ = false;
- #endif
- bool read_only_ = false;
- bool freezeable_ = false;
-diff --git ipc/chromium/src/base/shared_memory_posix.cc ipc/chromium/src/base/shared_memory_posix.cc
-index d5f734ac91b8..e36805aedb89 100644
---- ipc/chromium/src/base/shared_memory_posix.cc
-+++ ipc/chromium/src/base/shared_memory_posix.cc
-@@ -16,6 +16,18 @@
- # include "mozilla/Ashmem.h"
- #endif
-
-+#ifdef OS_LINUX
-+# include "linux_memfd_defs.h"
-+#endif
-+
-+#ifdef __FreeBSD__
-+# include <sys/capsicum.h>
-+#endif
-+
-+#ifdef MOZ_VALGRIND
-+# include <valgrind/valgrind.h>
-+#endif
-+
- #include "base/eintr_wrapper.h"
- #include "base/logging.h"
- #include "base/string_util.h"
-@@ -46,11 +58,14 @@ SharedMemory::~SharedMemory() {
-
- bool SharedMemory::SetHandle(SharedMemoryHandle handle, bool read_only) {
- DCHECK(!mapped_file_);
-+#ifndef ANDROID
- DCHECK(!frozen_file_);
-+#endif
-
- freezeable_ = false;
- mapped_file_.reset(handle.fd);
- read_only_ = read_only;
-+ // is_memfd_ only matters for freezing, which isn't possible
- return true;
- }
-
-@@ -62,11 +77,187 @@ bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) {
- // static
- SharedMemoryHandle SharedMemory::NULLHandle() { return SharedMemoryHandle(); }
-
--// static
-+#ifdef ANDROID
-+
-+// Android has its own shared memory API, ashmem. It doesn't support
-+// POSIX shm_open, and the memfd support (see below) also doesn't work
-+// because its SELinux policy prevents the procfs operations we'd use
-+// (see bug 1670277 for more details).
-+
- bool SharedMemory::AppendPosixShmPrefix(std::string* str, pid_t pid) {
--#if defined(ANDROID)
- return false;
--#else
-+}
-+
-+bool SharedMemory::CreateInternal(size_t size, bool freezeable) {
-+ read_only_ = false;
-+
-+ DCHECK(size > 0);
-+ DCHECK(!mapped_file_);
-+
-+ int fd = mozilla::android::ashmem_create(nullptr, size);
-+ if (fd < 0) {
-+ CHROMIUM_LOG(WARNING) << "failed to open shm: " << strerror(errno);
-+ return false;
-+ }
-+
-+ mapped_file_.reset(fd);
-+ max_size_ = size;
-+ freezeable_ = freezeable;
-+ return true;
-+}
-+
-+bool SharedMemory::ReadOnlyCopy(SharedMemory* ro_out) {
-+ DCHECK(mapped_file_);
-+ DCHECK(!read_only_);
-+ CHECK(freezeable_);
-+
-+ if (ro_out == this) {
-+ DCHECK(!memory_);
-+ }
-+
-+ if (mozilla::android::ashmem_setProt(mapped_file_.get(), PROT_READ) != 0) {
-+ CHROMIUM_LOG(WARNING) << "failed to set ashmem read-only: "
-+ << strerror(errno);
-+ return false;
-+ }
-+
-+ mozilla::UniqueFileHandle ro_file = std::move(mapped_file_);
-+
-+ freezeable_ = false;
-+ ro_out->Close();
-+ ro_out->mapped_file_ = std::move(ro_file);
-+ ro_out->max_size_ = max_size_;
-+ ro_out->read_only_ = true;
-+ ro_out->freezeable_ = false;
-+
-+ return true;
-+}
-+
-+#else // not Android
-+
-+// memfd_create is a nonstandard interface for creating anonymous
-+// shared memory accessible as a file descriptor but not tied to any
-+// filesystem. It first appeared in Linux 3.17, and was adopted by
-+// FreeBSD in version 13.
-+
-+# if !defined(HAVE_MEMFD_CREATE) && defined(OS_LINUX) && \
-+ defined(SYS_memfd_create)
-+
-+// Older libc versions (e.g., glibc before 2.27) don't have the
-+// wrapper, but we can supply our own; see `linux_memfd_defs.h`.
-+
-+static int memfd_create(const char* name, unsigned int flags) {
-+ return syscall(SYS_memfd_create, name, flags);
-+}
-+
-+# define HAVE_MEMFD_CREATE 1
-+# endif
-+
-+// memfd supports having "seals" applied to the file, to prevent
-+// various types of changes (which apply to all fds referencing the
-+// file). Unfortunately, we can't rely on F_SEAL_WRITE to implement
-+// Freeze(); see the comments in ReadOnlyCopy() below.
-+//
-+// Instead, to prevent a child process from regaining write access to
-+// a read-only copy, the OS must also provide a way to remove write
-+// permissions at the file descriptor level. This next section
-+// attempts to accomplish that.
-+
-+# ifdef HAVE_MEMFD_CREATE
-+# ifdef XP_LINUX
-+# define USE_MEMFD_CREATE 1
-+
-+// To create a read-only duplicate of an fd, we can use procfs; the
-+// same operation could restore write access, but sandboxing prevents
-+// child processes from accessing /proc.
-+//
-+// (Note: if this ever changes to not use /proc, also reconsider how
-+// and if HaveMemfd should check whether this works.)
-+
-+static int DupReadOnly(int fd) {
-+ std::string path = StringPrintf("/proc/self/fd/%d", fd);
-+ // procfs opens probably won't EINTR, but checking for it can't hurt
-+ return HANDLE_EINTR(open(path.c_str(), O_RDONLY | O_CLOEXEC));
-+}
-+
-+# elif defined(__FreeBSD__)
-+# define USE_MEMFD_CREATE 1
-+
-+// FreeBSD's Capsicum framework allows irrevocably restricting the
-+// operations permitted on a file descriptor.
-+
-+static int DupReadOnly(int fd) {
-+ int rofd = dup(fd);
-+ if (rofd < 0) {
-+ return -1;
-+ }
-+
-+ cap_rights_t rights;
-+ cap_rights_init(&rights, CAP_FSTAT, CAP_MMAP_R);
-+ if (cap_rights_limit(rofd, &rights) < 0) {
-+ int err = errno;
-+ close(rofd);
-+ errno = err;
-+ return -1;
-+ }
-+
-+ return rofd;
-+}
-+
-+# else // unhandled OS
-+# warning "OS has memfd_create but no DupReadOnly implementation"
-+# endif // OS selection
-+# endif // HAVE_MEMFD_CREATE
-+
-+// Runtime detection for memfd support.
-+static bool HaveMemfd() {
-+# ifdef USE_MEMFD_CREATE
-+ static const bool kHave = [] {
-+ mozilla::UniqueFileHandle fd(
-+ memfd_create("mozilla-ipc-test", MFD_CLOEXEC | MFD_ALLOW_SEALING));
-+ if (!fd) {
-+ DCHECK_EQ(errno, ENOSYS);
-+ return false;
-+ }
-+
-+ // Verify that DupReadOnly works; on Linux it's known to fail if:
-+ //
-+ // * SELinux assigns the memfd a type for which this process's
-+ // domain doesn't have "open" permission; this is always the
-+ // case on Android but could occur on desktop as well
-+ //
-+ // * /proc (used by the DupReadOnly implementation) isn't mounted,
-+ // which is a configuration that the Tor Browser project is
-+ // interested in as a way to reduce fingerprinting risk
-+ //
-+ // Sandboxed processes on Linux also can't use it if sandboxing
-+ // has already been started, but that's expected. It should be
-+ // safe for sandboxed child processes to use memfd even if an
-+ // unsandboxed process couldn't freeze them, because freezing
-+ // isn't allowed (or meaningful) for memory created by another
-+ // process.
-+
-+ if (!PR_GetEnv("MOZ_SANDBOXED")) {
-+ mozilla::UniqueFileHandle rofd(DupReadOnly(fd.get()));
-+ if (!rofd) {
-+ CHROMIUM_LOG(WARNING) << "read-only dup failed (" << strerror(errno)
-+ << "); not using memfd";
-+ return false;
-+ }
-+ }
-+ return true;
-+ }();
-+ return kHave;
-+# else
-+ return false;
-+# endif // USE_MEMFD_CREATE
-+}
-+
-+// static
-+bool SharedMemory::AppendPosixShmPrefix(std::string* str, pid_t pid) {
-+ if (HaveMemfd()) {
-+ return false;
-+ }
- *str += '/';
- # ifdef OS_LINUX
- // The Snap package environment doesn't provide a private /dev/shm
-@@ -90,7 +281,6 @@ bool SharedMemory::AppendPosixShmPrefix(std::string* str, pid_t pid) {
- // enough for this.
- StringAppendF(str, "org.mozilla.ipc.%d.", static_cast<int>(pid));
- return true;
--#endif // !ANDROID
- }
-
- bool SharedMemory::CreateInternal(size_t size, bool freezeable) {
-@@ -102,104 +292,118 @@ bool SharedMemory::CreateInternal(size_t size, bool freezeable) {
-
- mozilla::UniqueFileHandle fd;
- mozilla::UniqueFileHandle frozen_fd;
-- bool needs_truncate = true;
-+ bool is_memfd = false;
-+
-+# ifdef USE_MEMFD_CREATE
-+ if (HaveMemfd()) {
-+ const unsigned flags = MFD_CLOEXEC | (freezeable ? MFD_ALLOW_SEALING : 0);
-+ fd.reset(memfd_create("mozilla-ipc", flags));
-+ if (!fd) {
-+ // In general it's too late to fall back here -- in a sandboxed
-+ // child process, shm_open is already blocked. And it shouldn't
-+ // be necessary.
-+ CHROMIUM_LOG(WARNING) << "failed to create memfd: " << strerror(errno);
-+ return false;
-+ }
-+ is_memfd = true;
-+ if (freezeable) {
-+ frozen_fd.reset(DupReadOnly(fd.get()));
-+ if (!frozen_fd) {
-+ CHROMIUM_LOG(WARNING)
-+ << "failed to create read-only memfd: " << strerror(errno);
-+ return false;
-+ }
-+ }
-+ }
-+# endif
-
--#ifdef ANDROID
-- // Android has its own shared memory facility:
-- fd.reset(mozilla::android::ashmem_create(nullptr, size));
- if (!fd) {
-- CHROMIUM_LOG(WARNING) << "failed to open shm: " << strerror(errno);
-- return false;
-- }
-- needs_truncate = false;
--#else
-- // Generic Unix: shm_open + shm_unlink
-- do {
-- // The names don't need to be unique, but it saves time if they
-- // usually are.
-- static mozilla::Atomic<size_t> sNameCounter;
-- std::string name;
-- CHECK(AppendPosixShmPrefix(&name, getpid()));
-- StringAppendF(&name, "%zu", sNameCounter++);
-- // O_EXCL means the names being predictable shouldn't be a problem.
-- fd.reset(
-- HANDLE_EINTR(shm_open(name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600)));
-- if (fd) {
-- if (freezeable) {
-- frozen_fd.reset(HANDLE_EINTR(shm_open(name.c_str(), O_RDONLY, 0400)));
-- if (!frozen_fd) {
-- int open_err = errno;
-- shm_unlink(name.c_str());
-- DLOG(FATAL) << "failed to re-open freezeable shm: "
-- << strerror(open_err);
-+ // Generic Unix: shm_open + shm_unlink
-+ do {
-+ // The names don't need to be unique, but it saves time if they
-+ // usually are.
-+ static mozilla::Atomic<size_t> sNameCounter;
-+ std::string name;
-+ CHECK(AppendPosixShmPrefix(&name, getpid()));
-+ StringAppendF(&name, "%zu", sNameCounter++);
-+ // O_EXCL means the names being predictable shouldn't be a problem.
-+ fd.reset(HANDLE_EINTR(
-+ shm_open(name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600)));
-+ if (fd) {
-+ if (freezeable) {
-+ frozen_fd.reset(HANDLE_EINTR(shm_open(name.c_str(), O_RDONLY, 0400)));
-+ if (!frozen_fd) {
-+ int open_err = errno;
-+ shm_unlink(name.c_str());
-+ DLOG(FATAL) << "failed to re-open freezeable shm: "
-+ << strerror(open_err);
-+ return false;
-+ }
-+ }
-+ if (shm_unlink(name.c_str()) != 0) {
-+ // This shouldn't happen, but if it does: assume the file is
-+ // in fact leaked, and bail out now while it's still 0-length.
-+ DLOG(FATAL) << "failed to unlink shm: " << strerror(errno);
- return false;
- }
- }
-- if (shm_unlink(name.c_str()) != 0) {
-- // This shouldn't happen, but if it does: assume the file is
-- // in fact leaked, and bail out now while it's still 0-length.
-- DLOG(FATAL) << "failed to unlink shm: " << strerror(errno);
-- return false;
-- }
-- }
-- } while (!fd && errno == EEXIST);
--#endif
-+ } while (!fd && errno == EEXIST);
-+ }
-
- if (!fd) {
- CHROMIUM_LOG(WARNING) << "failed to open shm: " << strerror(errno);
- return false;
- }
-
-- if (needs_truncate) {
--#if defined(HAVE_POSIX_FALLOCATE)
-- // Using posix_fallocate will ensure that there's actually space for this
-- // file. Otherwise we end up with a sparse file that can give SIGBUS if we
-- // run out of space while writing to it.
-- int rv;
-- {
-- // Avoid repeated interruptions of posix_fallocate by the profiler's
-- // SIGPROF sampling signal. Indicating "thread sleep" here means we'll
-- // get up to one interruption but not more. See bug 1658847 for more.
-- // This has to be scoped outside the HANDLE_RV_EINTR retry loop.
-- AUTO_PROFILER_THREAD_SLEEP;
-- rv = HANDLE_RV_EINTR(
-- posix_fallocate(fd.get(), 0, static_cast<off_t>(size)));
-- }
-- if (rv != 0) {
-- if (rv == EOPNOTSUPP || rv == EINVAL || rv == ENODEV) {
-- // Some filesystems have trouble with posix_fallocate. For now, we must
-- // fallback ftruncate and accept the allocation failures like we do
-- // without posix_fallocate.
-- // See https://bugzilla.mozilla.org/show_bug.cgi?id=1618914
-- int fallocate_errno = rv;
-- rv = HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(size)));
-- if (rv != 0) {
-- CHROMIUM_LOG(WARNING) << "fallocate failed to set shm size: "
-- << strerror(fallocate_errno);
-- CHROMIUM_LOG(WARNING)
-- << "ftruncate failed to set shm size: " << strerror(errno);
-- return false;
-- }
-- } else {
-+# if defined(HAVE_POSIX_FALLOCATE)
-+ // Using posix_fallocate will ensure that there's actually space for this
-+ // file. Otherwise we end up with a sparse file that can give SIGBUS if we
-+ // run out of space while writing to it.
-+ int rv;
-+ {
-+ // Avoid repeated interruptions of posix_fallocate by the profiler's
-+ // SIGPROF sampling signal. Indicating "thread sleep" here means we'll
-+ // get up to one interruption but not more. See bug 1658847 for more.
-+ // This has to be scoped outside the HANDLE_RV_EINTR retry loop.
-+ AUTO_PROFILER_THREAD_SLEEP;
-+ rv =
-+ HANDLE_RV_EINTR(posix_fallocate(fd.get(), 0, static_cast<off_t>(size)));
-+ }
-+ if (rv != 0) {
-+ if (rv == EOPNOTSUPP || rv == EINVAL || rv == ENODEV) {
-+ // Some filesystems have trouble with posix_fallocate. For now, we must
-+ // fallback ftruncate and accept the allocation failures like we do
-+ // without posix_fallocate.
-+ // See https://bugzilla.mozilla.org/show_bug.cgi?id=1618914
-+ int fallocate_errno = rv;
-+ rv = HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(size)));
-+ if (rv != 0) {
-+ CHROMIUM_LOG(WARNING) << "fallocate failed to set shm size: "
-+ << strerror(fallocate_errno);
- CHROMIUM_LOG(WARNING)
-- << "fallocate failed to set shm size: " << strerror(rv);
-+ << "ftruncate failed to set shm size: " << strerror(errno);
- return false;
- }
-- }
--#else
-- int rv = HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(size)));
-- if (rv != 0) {
-+ } else {
- CHROMIUM_LOG(WARNING)
-- << "ftruncate failed to set shm size: " << strerror(errno);
-+ << "fallocate failed to set shm size: " << strerror(rv);
- return false;
- }
--#endif
- }
-+# else
-+ int rv = HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(size)));
-+ if (rv != 0) {
-+ CHROMIUM_LOG(WARNING) << "ftruncate failed to set shm size: "
-+ << strerror(errno);
-+ return false;
-+ }
-+# endif
-
- mapped_file_ = std::move(fd);
- frozen_file_ = std::move(frozen_fd);
- max_size_ = size;
- freezeable_ = freezeable;
-+ is_memfd_ = is_memfd;
- return true;
- }
-
-@@ -212,23 +416,63 @@ bool SharedMemory::ReadOnlyCopy(SharedMemory* ro_out) {
- DCHECK(!memory_);
- }
-
-- mozilla::UniqueFileHandle ro_file;
--#ifdef ANDROID
-- ro_file = std::move(mapped_file_);
-- if (mozilla::android::ashmem_setProt(ro_file.get(), PROT_READ) != 0) {
-- CHROMIUM_LOG(WARNING) << "failed to set ashmem read-only: "
-- << strerror(errno);
-- return false;
-+# ifdef USE_MEMFD_CREATE
-+# ifdef MOZ_VALGRIND
-+ // Valgrind allows memfd_create but doesn't understand F_ADD_SEALS.
-+ static const bool haveSeals = RUNNING_ON_VALGRIND == 0;
-+# else
-+ static const bool haveSeals = true;
-+# endif
-+ static const bool useSeals = !PR_GetEnv("MOZ_SHM_NO_SEALS");
-+ if (is_memfd_ && haveSeals && useSeals) {
-+ // Seals are added to the file as defense-in-depth. The primary
-+ // method of access control is creating a read-only fd (using
-+ // procfs in this case) and requiring that sandboxes processes not
-+ // have access to /proc/self/fd to regain write permission; this
-+ // is the same as with shm_open.
-+ //
-+ // Unfortunately, F_SEAL_WRITE is unreliable: if the process
-+ // forked while there was a writeable mapping, it will inherit a
-+ // copy of the mapping, which causes the seal to fail.
-+ //
-+ // (Also, in the future we may want to split this into separate
-+ // classes for mappings and shared memory handles, which would
-+ // complicate identifying the case where `F_SEAL_WRITE` would be
-+ // possible even in the absence of races with fork.)
-+ //
-+ // However, Linux 5.1 added F_SEAL_FUTURE_WRITE, which prevents
-+ // write operations afterwards, but existing writeable mappings
-+ // are unaffected (similar to ashmem protection semantics).
-+
-+ const int seals = F_SEAL_GROW | F_SEAL_SHRINK | F_SEAL_SEAL;
-+ int sealError = EINVAL;
-+
-+# ifdef F_SEAL_FUTURE_WRITE
-+ sealError =
-+ fcntl(mapped_file_.get(), F_ADD_SEALS, seals | F_SEAL_FUTURE_WRITE) == 0
-+ ? 0
-+ : errno;
-+# endif // F_SEAL_FUTURE_WRITE
-+ if (sealError == EINVAL) {
-+ sealError =
-+ fcntl(mapped_file_.get(), F_ADD_SEALS, seals) == 0 ? 0 : errno;
-+ }
-+ if (sealError != 0) {
-+ CHROMIUM_LOG(WARNING) << "failed to seal memfd: " << strerror(errno);
-+ return false;
-+ }
- }
--#else
-+# else // !USE_MEMFD_CREATE
-+ DCHECK(!is_memfd_);
-+# endif
-+
- DCHECK(frozen_file_);
-+ DCHECK(mapped_file_);
- mapped_file_ = nullptr;
-- ro_file = std::move(frozen_file_);
--#endif
-+ mozilla::UniqueFileHandle ro_file = std::move(frozen_file_);
-
- DCHECK(ro_file);
- freezeable_ = false;
--
- ro_out->Close();
- ro_out->mapped_file_ = std::move(ro_file);
- ro_out->max_size_ = max_size_;
-@@ -238,6 +482,8 @@ bool SharedMemory::ReadOnlyCopy(SharedMemory* ro_out) {
- return true;
- }
-
-+#endif // not Android
-+
- bool SharedMemory::Map(size_t bytes, void* fixed_address) {
- if (!mapped_file_) {
- return false;
-@@ -292,10 +538,12 @@ void SharedMemory::Close(bool unmap_view) {
- }
-
- mapped_file_ = nullptr;
-+#ifndef ANDROID
- if (frozen_file_) {
- CHROMIUM_LOG(WARNING) << "freezeable shared memory was never frozen";
- frozen_file_ = nullptr;
- }
-+#endif
- }
-
- } // namespace base
-diff --git ipc/gtest/TestSharedMemory.cpp ipc/gtest/TestSharedMemory.cpp
-index 4c8ab0c77592..1474be0ea0d9 100644
---- ipc/gtest/TestSharedMemory.cpp
-+++ ipc/gtest/TestSharedMemory.cpp
-@@ -13,6 +13,15 @@
- #include "mozilla/ipc/SharedMemory.h"
- #include "mozilla/ipc/SharedMemoryBasic.h"
-
-+#ifdef XP_LINUX
-+# include <errno.h>
-+# include <linux/magic.h>
-+# include <stdio.h>
-+# include <string.h>
-+# include <sys/statfs.h>
-+# include <sys/utsname.h>
-+#endif
-+
- #ifdef XP_WIN
- # include <windows.h>
- #endif
-@@ -293,4 +302,41 @@ TEST(IPCSharedMemory, BasicIsZero)
- }
- #endif
-
-+#if defined(XP_LINUX) && !defined(ANDROID)
-+// Test that memfd_create is used where expected.
-+//
-+// More precisely: if memfd_create support is expected, verify that
-+// shared memory isn't subject to a filesystem size limit.
-+TEST(IPCSharedMemory, IsMemfd)
-+{
-+ static constexpr int kMajor = 3;
-+ static constexpr int kMinor = 17;
-+
-+ struct utsname uts;
-+ ASSERT_EQ(uname(&uts), 0) << strerror(errno);
-+ ASSERT_STREQ(uts.sysname, "Linux");
-+ int major, minor;
-+ ASSERT_EQ(sscanf(uts.release, "%d.%d", &major, &minor), 2);
-+ bool expectMemfd = major > kMajor || (major == kMajor && minor >= kMinor);
-+
-+ base::SharedMemory shm;
-+ ASSERT_TRUE(shm.Create(1));
-+ UniqueFileHandle fd = shm.TakeHandle();
-+ ASSERT_TRUE(fd);
-+
-+ struct statfs fs;
-+ ASSERT_EQ(fstatfs(fd.get(), &fs), 0) << strerror(errno);
-+ EXPECT_EQ(fs.f_type, TMPFS_MAGIC);
-+ static constexpr decltype(fs.f_blocks) kNoLimit = 0;
-+ if (expectMemfd) {
-+ EXPECT_EQ(fs.f_blocks, kNoLimit);
-+ } else {
-+ // On older kernels, we expect the memfd / no-limit test to fail.
-+ // (In theory it could succeed if backported memfd support exists;
-+ // if that ever happens, this check can be removed.)
-+ EXPECT_NE(fs.f_blocks, kNoLimit);
-+ }
-+}
-+#endif
-+
- } // namespace mozilla
-diff --git security/sandbox/linux/SandboxFilter.cpp security/sandbox/linux/SandboxFilter.cpp
-index b337a513791e..3017cd967766 100644
---- security/sandbox/linux/SandboxFilter.cpp
-+++ security/sandbox/linux/SandboxFilter.cpp
-@@ -704,6 +704,10 @@ class SandboxPolicyCommon : public SandboxPolicyBase {
- case __NR_munmap:
- return Allow();
-
-+ // Shared memory
-+ case __NR_memfd_create:
-+ return Allow();
-+
- // ipc::Shmem; also, glibc when creating threads:
- case __NR_mprotect:
- return Allow();
-@@ -1395,11 +1399,6 @@ class ContentSandboxPolicy : public SandboxPolicyCommon {
- case __NR_eventfd2:
- return Allow();
-
--# ifdef __NR_memfd_create
-- case __NR_memfd_create:
-- return Allow();
--# endif
--
- # ifdef __NR_rt_tgsigqueueinfo
- // Only allow to send signals within the process.
- case __NR_rt_tgsigqueueinfo: {
diff --git a/www/firefox/files/patch-bug1559213 b/www/firefox/files/patch-bug1559213
index 0100df8d09b0..f16af4cd83ba 100644
--- a/www/firefox/files/patch-bug1559213
+++ b/www/firefox/files/patch-bug1559213
@@ -14,24 +14,24 @@ diff --git config/external/moz.build config/external/moz.build
index 03e4fa143bd1..a67d10b11fe6 100644
--- config/external/moz.build
+++ config/external/moz.build
-@@ -37,8 +37,9 @@ if not CONFIG['MOZ_SYSTEM_LIBVPX']:
- external_dirs += ['media/libvpx']
+@@ -40,8 +40,9 @@ if not CONFIG["MOZ_SYSTEM_LIBVPX"]:
+ external_dirs += ["media/libvpx"]
- if CONFIG['MOZ_AV1']:
-- external_dirs += ['media/libaom']
-- external_dirs += ['media/libdav1d']
-+ if not CONFIG['MOZ_SYSTEM_AV1']:
-+ external_dirs += ['media/libaom']
-+ external_dirs += ['media/libdav1d']
+ if CONFIG["MOZ_AV1"]:
+- external_dirs += ["media/libaom"]
+- external_dirs += ["media/libdav1d"]
++ if not CONFIG["MOZ_SYSTEM_AV1"]:
++ external_dirs += ["media/libaom"]
++ external_dirs += ["media/libdav1d"]
- if not CONFIG['MOZ_SYSTEM_PNG']:
- external_dirs += ['media/libpng']
+ if not CONFIG["MOZ_SYSTEM_PNG"]:
+ external_dirs += ["media/libpng"]
diff --git config/system-headers.mozbuild config/system-headers.mozbuild
index bcf5c4925564..48964a999a9b 100644
--- config/system-headers.mozbuild
+++ config/system-headers.mozbuild
-@@ -1304,6 +1304,14 @@ if CONFIG['MOZ_ENABLE_CONTENTMANAGER']:
- 'SelectSingleContentItemPage.h',
+@@ -1305,6 +1305,14 @@ if CONFIG['MOZ_SYSTEM_HARFBUZZ']:
+ 'harfbuzz/hb.h',
]
+if CONFIG['MOZ_SYSTEM_AV1']:
@@ -49,9 +49,9 @@ diff --git dom/media/platforms/moz.build dom/media/platforms/moz.build
index 092cee0c9b66..38e45de5b5f0 100644
--- dom/media/platforms/moz.build
+++ dom/media/platforms/moz.build
-@@ -80,6 +80,11 @@ if CONFIG['MOZ_AV1']:
- 'agnostic/AOMDecoder.cpp',
- 'agnostic/DAV1DDecoder.cpp',
+@@ -78,6 +78,11 @@ if CONFIG["MOZ_AV1"]:
+ "agnostic/AOMDecoder.cpp",
+ "agnostic/DAV1DDecoder.cpp",
]
+ if CONFIG['MOZ_SYSTEM_AV1']:
+ CXXFLAGS += CONFIG['MOZ_SYSTEM_LIBAOM_CFLAGS']
@@ -59,25 +59,25 @@ index 092cee0c9b66..38e45de5b5f0 100644
+ CXXFLAGS += CONFIG['MOZ_SYSTEM_LIBDAV1D_CFLAGS']
+ OS_LIBS += CONFIG['MOZ_SYSTEM_LIBDAV1D_LIBS']
- if CONFIG['MOZ_OMX']:
+ if CONFIG["MOZ_OMX"]:
EXPORTS += [
diff --git toolkit/moz.configure toolkit/moz.configure
index 82b5a59acf42..e2329560b42b 100644
--- toolkit/moz.configure
+++ toolkit/moz.configure
-@@ -441,7 +441,23 @@ def av1(value):
- if value:
+@@ -553,7 +553,23 @@ def av1(value):
return True
+
-@depends(target, nasm_version, when=av1 & compile_environment)
-+option('--with-system-av1',
++option("--with-system-av1",
+ help="Use system av1 (located with pkgconfig)")
+
-+system_libaom_info = pkg_check_modules('MOZ_SYSTEM_LIBAOM', 'aom >= 1.0.0',
-+ when='--with-system-av1')
++system_libaom_info = pkg_check_modules("MOZ_SYSTEM_LIBAOM", "aom >= 1.0.0",
++ when="--with-system-av1")
+
-+system_libdav1d_info = pkg_check_modules('MOZ_SYSTEM_LIBDAV1D', 'dav1d >= 0.1.1',
-+ when='--with-system-av1')
++system_libdav1d_info = pkg_check_modules("MOZ_SYSTEM_LIBDAV1D", "dav1d >= 0.1.1",
++ when="--with-system-av1")
+
+@depends(system_libaom_info, system_libdav1d_info)
+def system_av1(system_libaom_info, system_libdav1d_info):
@@ -88,13 +88,13 @@ index 82b5a59acf42..e2329560b42b 100644
+
+@depends(target, nasm_version, when=av1 & depends(system_av1)(lambda v: not v) & compile_environment)
def dav1d_asm(target, nasm_version):
- if target.os != 'Android':
- if target.cpu == 'aarch64':
-@@ -457,6 +473,7 @@ set_config('MOZ_DAV1D_ASM', dav1d_asm)
- set_define('MOZ_DAV1D_ASM', dav1d_asm)
- set_config('MOZ_AV1', av1)
- set_define('MOZ_AV1', av1)
-+set_config('MOZ_SYSTEM_AV1', depends_if(system_av1)(lambda _: True))
+ if target.cpu == "aarch64":
+ return True
+@@ -570,6 +586,7 @@ set_config("MOZ_DAV1D_ASM", dav1d_asm)
+ set_define("MOZ_DAV1D_ASM", dav1d_asm)
+ set_config("MOZ_AV1", av1)
+ set_define("MOZ_AV1", av1)
++set_config("MOZ_SYSTEM_AV1", depends_if(system_av1)(lambda _: True))
# Built-in fragmented MP4 support.
# ==============================================================
diff --git a/www/firefox/files/patch-bug1618914 b/www/firefox/files/patch-bug1618914
index 817d00032222..94b7aa8d38e1 100644
--- a/www/firefox/files/patch-bug1618914
+++ b/www/firefox/files/patch-bug1618914
@@ -4,8 +4,7 @@ diff --git widget/gtk/WindowSurfaceWayland.cpp widget/gtk/WindowSurfaceWayland.c
index 9a73326399bd5..9e42a7f1c5d18 100644
--- widget/gtk/WindowSurfaceWayland.cpp
+++ widget/gtk/WindowSurfaceWayland.cpp
-@@ -222,20 +222,21 @@ static int WaylandAllocateShmMemory(int aSize) {
- #ifdef HAVE_POSIX_FALLOCATE
+@@ -221,7 +221,9 @@ static int WaylandAllocateShmMemory(int aSize) {
do {
ret = posix_fallocate(fd, 0, aSize);
} while (ret == EINTR);
@@ -13,29 +12,32 @@ index 9a73326399bd5..9e42a7f1c5d18 100644
+ if (ret == 0) {
+ return fd;
+ } else if (ret != ENODEV && ret != EINVAL && ret != EOPNOTSUPP) {
+ NS_WARNING(
+ nsPrintfCString("posix_fallocate() fails to allocate shm memory: %s",
+ strerror(ret))
+@@ -229,7 +231,7 @@ static int WaylandAllocateShmMemory(int aSize) {
close(fd);
- MOZ_CRASH("posix_fallocate() fails to allocate shm memory");
+ return -1;
}
-#else
+#endif
do {
ret = ftruncate(fd, aSize);
} while (ret < 0 && errno == EINTR);
- if (ret < 0) {
+@@ -240,7 +242,6 @@ static int WaylandAllocateShmMemory(int aSize) {
close(fd);
- MOZ_CRASH("ftruncate() fails to allocate shm memory");
+ fd = -1;
}
-#endif
return fd;
}
-@@ -265,8 +266,8 @@ bool WaylandShmPool::Resize(int aSize) {
- #ifdef HAVE_POSIX_FALLOCATE
+@@ -253,7 +254,7 @@ static bool WaylandReAllocateShmMemory(int aFd, int aSize) {
do {
- errno = posix_fallocate(mShmPoolFd, 0, aSize);
+ errno = posix_fallocate(aFd, 0, aSize);
} while (errno == EINTR);
-- if (errno != 0) return false;
-+ if (errno != 0 && errno != ENODEV && errno != EINVAL && errno != EOPNOTSUPP) return false;
+- if (errno != 0) {
++ if (errno != 0 && errno != ENODEV && errno != EINVAL && errno != EOPNOTSUPP) {
+ return false;
+ }
#endif
-
- wl_shm_pool_resize(mShmPool, aSize);
diff --git a/www/firefox/files/patch-bug1664115 b/www/firefox/files/patch-bug1664115
index 4b089b52e203..6672aa67459d 100644
--- a/www/firefox/files/patch-bug1664115
+++ b/www/firefox/files/patch-bug1664115
@@ -62,7 +62,7 @@ diff --git dom/media/AudioStream.h dom/media/AudioStream.h
index 933e4cb3bfdb5..5d2181e632af9 100644
--- dom/media/AudioStream.h
+++ dom/media/AudioStream.h
-@@ -304,7 +304,6 @@
+@@ -307,7 +307,6 @@ class AudioStream final
template <typename Function, typename... Args>
int InvokeCubeb(Function aFunction, Args&&... aArgs);
@@ -70,13 +70,13 @@ index 933e4cb3bfdb5..5d2181e632af9 100644
// The monitor is held to protect all access to member variables.
Monitor mMonitor;
-@@ -338,9 +337,6 @@
+@@ -341,9 +340,6 @@ class AudioStream final
// the default device is used. It is set
// during the Init() in decoder thread.
RefPtr<AudioDeviceInfo> mSinkInfo;
- /* Contains the id of the audio thread, from profiler_get_thread_id. */
- std::atomic<int> mAudioThreadId;
- const bool mSandboxed = false;
- };
- } // namespace mozilla
+ MozPromiseHolder<MediaSink::EndedPromise> mEndedPromise;
+ Atomic<bool> mPlaybackComplete;
diff --git a/www/firefox/files/patch-bug1667736 b/www/firefox/files/patch-bug1667736
deleted file mode 100644
index de080178d721..000000000000
--- a/www/firefox/files/patch-bug1667736
+++ /dev/null
@@ -1,3208 +0,0 @@
-commit 33c996c701b9
-Author: Henri Sivonen <hsivonen@hsivonen.fi>
-Date: Fri Oct 30 08:29:53 2020 +0000
-
- Bug 1667736 - Update packed_simd to compile on Rust 1.48. r=glandium
-
- Differential Revision: https://phabricator.services.mozilla.com/D91572
----
- .cargo/config.in | 2 +-
- Cargo.lock | 4 +-
- Cargo.toml | 2 +-
- third_party/rust/packed_simd/.cargo-checksum.json | 2 +-
- third_party/rust/packed_simd/.travis.yml | 237 +++++--------
- third_party/rust/packed_simd/Cargo.toml | 14 +-
- .../rust/packed_simd/{readme.md => README.md} | 111 +++----
- third_party/rust/packed_simd/build.rs | 2 +-
- third_party/rust/packed_simd/ci/all.sh | 2 +-
- .../ci/docker/aarch64-unknown-linux-gnu/Dockerfile | 2 +-
- .../ci/docker/arm-unknown-linux-gnueabi/Dockerfile | 2 +-
- .../docker/arm-unknown-linux-gnueabihf/Dockerfile | 2 +-
- .../armv7-unknown-linux-gnueabihf/Dockerfile | 2 +-
- .../ci/docker/i586-unknown-linux-gnu/Dockerfile | 2 +-
- .../ci/docker/i686-unknown-linux-gnu/Dockerfile | 2 +-
- .../ci/docker/mips-unknown-linux-gnu/Dockerfile | 2 +-
- .../mips64-unknown-linux-gnuabi64/Dockerfile | 2 +-
- .../mips64el-unknown-linux-gnuabi64/Dockerfile | 2 +-
- .../ci/docker/mipsel-unknown-linux-musl/Dockerfile | 4 +-
- .../ci/docker/powerpc-unknown-linux-gnu/Dockerfile | 3 +-
- .../docker/powerpc64-unknown-linux-gnu/Dockerfile | 2 +-
- .../powerpc64le-unknown-linux-gnu/Dockerfile | 2 +-
- .../thumbv7neon-unknown-linux-gnueabihf/Dockerfile | 2 +-
- .../ci/docker/x86_64-unknown-linux-gnu/Dockerfile | 2 +-
- third_party/rust/packed_simd/ci/dox.sh | 7 +-
- third_party/rust/packed_simd/ci/run.sh | 6 +-
- .../rust/packed_simd/ci/setup_benchmarks.sh | 3 -
- third_party/rust/packed_simd/src/api.rs | 13 +-
- third_party/rust/packed_simd/src/api/bit_manip.rs | 1 +
- third_party/rust/packed_simd/src/api/bitmask.rs | 82 +++++
- third_party/rust/packed_simd/src/api/cast/v128.rs | 2 +-
- third_party/rust/packed_simd/src/api/cast/v16.rs | 2 +-
- third_party/rust/packed_simd/src/api/cast/v256.rs | 2 +-
- third_party/rust/packed_simd/src/api/cast/v32.rs | 2 +-
- third_party/rust/packed_simd/src/api/cast/v512.rs | 2 +-
- third_party/rust/packed_simd/src/api/cast/v64.rs | 2 +-
- third_party/rust/packed_simd/src/api/default.rs | 2 +
- .../rust/packed_simd/src/api/from/from_array.rs | 2 +
- third_party/rust/packed_simd/src/api/hash.rs | 2 +
- .../packed_simd/src/api/into_bits/arch_specific.rs | 3 +-
- .../rust/packed_simd/src/api/into_bits/v128.rs | 2 +-
- .../rust/packed_simd/src/api/into_bits/v16.rs | 2 +-
- .../rust/packed_simd/src/api/into_bits/v256.rs | 2 +-
- .../rust/packed_simd/src/api/into_bits/v32.rs | 2 +-
- .../rust/packed_simd/src/api/into_bits/v512.rs | 2 +-
- .../rust/packed_simd/src/api/into_bits/v64.rs | 2 +-
- .../rust/packed_simd/src/api/minimal/iuf.rs | 6 +-
- .../rust/packed_simd/src/api/minimal/mask.rs | 6 +-
- .../rust/packed_simd/src/api/minimal/ptr.rs | 28 +-
- .../src/api/ops/vector_float_min_max.rs | 5 +
- .../rust/packed_simd/src/api/ptr/gather_scatter.rs | 36 +-
- .../src/api/reductions/float_arithmetic.rs | 13 +-
- .../rust/packed_simd/src/api/reductions/min_max.rs | 4 +
- .../rust/packed_simd/src/api/slice/from_slice.rs | 6 +-
- .../packed_simd/src/api/slice/write_to_slice.rs | 6 +-
- third_party/rust/packed_simd/src/codegen.rs | 3 +
- .../rust/packed_simd/src/codegen/bit_manip.rs | 2 +-
- third_party/rust/packed_simd/src/codegen/llvm.rs | 8 +
- .../packed_simd/src/codegen/reductions/mask/x86.rs | 8 +-
- .../src/codegen/reductions/mask/x86/sse.rs | 32 --
- .../rust/packed_simd/src/codegen/shuffle.rs | 370 ++++++---------------
- .../rust/packed_simd/src/codegen/shuffle1_dyn.rs | 35 +-
- third_party/rust/packed_simd/src/codegen/vPtr.rs | 2 +
- third_party/rust/packed_simd/src/lib.rs | 29 +-
- third_party/rust/packed_simd/src/masks.rs | 2 +
- third_party/rust/packed_simd/src/sealed.rs | 15 +-
- third_party/rust/packed_simd/src/testing/utils.rs | 25 +-
- third_party/rust/packed_simd/src/v128.rs | 32 +-
- third_party/rust/packed_simd/src/v16.rs | 6 +-
- third_party/rust/packed_simd/src/v256.rs | 32 +-
- third_party/rust/packed_simd/src/v32.rs | 12 +-
- third_party/rust/packed_simd/src/v512.rs | 32 +-
- third_party/rust/packed_simd/src/v64.rs | 26 +-
- third_party/rust/packed_simd/src/vPtr.rs | 2 +-
- third_party/rust/packed_simd/src/vSize.rs | 20 +-
- third_party/rust/packed_simd/tests/endianness.rs | 62 ++--
- 76 files changed, 618 insertions(+), 801 deletions(-)
-
-diff --git .cargo/config.in .cargo/config.in
-index 1d25dffe4e49..7a321d933326 100644
---- .cargo/config.in
-+++ .cargo/config.in
-@@ -45,7 +45,7 @@ tag = "v0.4.2"
- [source."https://github.com/hsivonen/packed_simd"]
- git = "https://github.com/hsivonen/packed_simd"
- replace-with = "vendored-sources"
--rev = "3541e3818fdc7c2a24f87e3459151a4ce955a67a"
-+rev = "0917fe780032a6bbb23d71be545f9c1834128d75"
-
- [source."https://github.com/gfx-rs/naga"]
- git = "https://github.com/gfx-rs/naga"
-diff --git Cargo.lock Cargo.lock
-index ea0a543b7397..5c030b1ef875 100644
---- Cargo.lock
-+++ Cargo.lock
-@@ -3578,8 +3578,8 @@ dependencies = [
-
- [[package]]
- name = "packed_simd"
--version = "0.3.3"
--source = "git+https://github.com/hsivonen/packed_simd?rev=3541e3818fdc7c2a24f87e3459151a4ce955a67a#3541e3818fdc7c2a24f87e3459151a4ce955a67a"
-+version = "0.3.4"
-+source = "git+https://github.com/hsivonen/packed_simd?rev=0917fe780032a6bbb23d71be545f9c1834128d75#0917fe780032a6bbb23d71be545f9c1834128d75"
- dependencies = [
- "cfg-if",
- ]
-diff --git Cargo.toml Cargo.toml
-index d1b826e2b388..f78c9a7408d9 100644
---- Cargo.toml
-+++ Cargo.toml
-@@ -65,7 +65,7 @@ panic = "abort"
-
- [patch.crates-io]
- libudev-sys = { path = "dom/webauthn/libudev-sys" }
--packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="3541e3818fdc7c2a24f87e3459151a4ce955a67a" }
-+packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="0917fe780032a6bbb23d71be545f9c1834128d75" }
- rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="ed8bac8812e9f335d5fadd0f4ece96981aba88a3" }
- nix = { git = "https://github.com/shravanrn/nix/", branch = "r0.13.1", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
- spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu3", rev = "20191ad2f370afd6d247edcb9ff9da32d3bedb9c" }
-diff --git third_party/rust/packed_simd/.cargo-checksum.json third_party/rust/packed_simd/.cargo-checksum.json
-index 01afcc1efdac..1512803e5729 100644
---- third_party/rust/packed_simd/.cargo-checksum.json
-+++ third_party/rust/packed_simd/.cargo-checksum.json
-@@ -1 +1 @@
--{"files":{".appveyor.yml":"f1ed01850e0d725f9498f52a1a63ddf40702ad6e0bf5b2d7c4c04d76e96794a3",".travis.yml":"e9258d9a54fdaf4cbc12405fe5993ac4497eb2b29021691dbc91b19cb9b52227","Cargo.toml":"089941ba3c89ea111cbea3cc3abdcdcf2b9d0ae0db268d7269ee38226db950e5","LICENSE-APACHE":"a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2","LICENSE-MIT":"6485b8ed310d3f0340bf1ad1f47645069ce4069dcc6bb46c7d5c6faf41de1fdb","bors.toml":"dee881dc69b9b7834e4eba5d95c3ed5a416d4628815a167d6a22d4cb4fb064b8","build.rs":"f3baefc5e5bb9b250e762a1466371b922fd7ee4243c217b2d014307603c2f57a","ci/all.sh":"a23d14e10cb26a0eb719e389c30eb955fa53cddcd436890646df09af640bd2eb","ci/android-install-ndk.sh":"0f1746108cc30bf9b9ba45bcde7b19fc1a8bdf5b0258035b4eb8dc69b75efac4","ci/android-install-sdk.sh":"3490432022c5c8f5a115c084f7a9aca1626f96c0c87ffb62019228c4346b47e4","ci/android-sysimage.sh":"ebf4e5daa1f0fe1b2092b79f0f3f161c4c4275cb744e52352c4d81ab451e4c5a","ci/benchmark.sh":"b61d19ef6b90deba8fb79dee74c8b062d94844676293da346da87bb78a9a49a4","ci/deploy_and_run_on_ios_simulator.rs":"ec8ecf82d92072676aa47f0d1a3d021b60a7ae3531153ef12d2ff4541fc294dc","ci/docker/aarch64-linux-android/Dockerfile":"ace2e7d33c87bc0f6d3962a4a3408c04557646f7f51ab99cfbf574906796b016","ci/docker/aarch64-unknown-linux-gnu/Dockerfile":"1ecdac757101d951794fb2ab0deaa278199cf25f2e08a15c7d40ff31a8556184","ci/docker/arm-linux-androideabi/Dockerfile":"370e55d3330a413a3ccf677b3afb3e0ef9018a5fab263faa97ae8ac017fc2286","ci/docker/arm-unknown-linux-gnueabi/Dockerfile":"e25d88f6c0c94aada3d2e3f08243f755feb7e869dc5dc505b3799719cb1af591","ci/docker/arm-unknown-linux-gnueabihf/Dockerfile":"f126f4c7bae8c11ab8b16df06ad997863f0838825a9c08c9899a3eedb6d570bd","ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile":"b647545c158ee480a4c581dbdc1f57833aef056c8d498acc04b573e842bf803c","ci/docker/i586-unknown-linux-gnu/Dockerfile":"0d492759017307ccf74dc2aa4a8cf6623daf3dc728c708dc2b18fa7940800cba","ci/docker/i686-unknown-linux-gnu/Dockerfile":"0d492759017307ccf74dc2aa4a8cf6623daf3dc728c708dc2b18fa7940800cba","ci/docker/mips-unknown-linux-gnu/Dockerfile":"323776469bb7b160385f3621d66e3ee14c75242f8180f916e65af048a29d4ea0","ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile":"c647f6948a9a43b0be695cbed4eac752120d0faf28e5e69c718cb10406921dab","ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile":"77bfd00cc8639509be381b394f077e39b45a00158ad61b4e1656714c714665d1","ci/docker/mipsel-unknown-linux-musl/Dockerfile":"ec5bea6c98a3b626731fdb95f9ff2d1182639c76e8fb16d3271d0fc884901524","ci/docker/powerpc-unknown-linux-gnu/Dockerfile":"4f2b662de66e83d1354f650b7077692309637f786c2ea5516c31b5c2ee10af2d","ci/docker/powerpc64-unknown-linux-gnu/Dockerfile":"a9595402b772bc365982e22a0096a8988825d90b09b5faa97ab192e76072f71d","ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile":"df3c381c157439695ae8cd10ab71664702c061e3b4ab22906a5ad6c2680acfed","ci/docker/s390x-unknown-linux-gnu/Dockerfile":"93fb44df3d7fd31ead158570667c97b5076a05c3d968af4a84bc13819a8f2db8","ci/docker/sparc64-unknown-linux-gnu/Dockerfile":"da1c39a3ff1fe22e41395fa7c8934e90b4c1788e551b9aec6e38bfd94effc437","ci/docker/thumbv7neon-linux-androideabi/Dockerfile":"c2decd5591bd7a09378901bef629cd944acf052eb55e4f35b79eb9cb4d62246a","ci/docker/thumbv7neon-unknown-linux-gnueabihf/Dockerfile":"75c0c56161c7382b439de74c00de1c0e3dc9d59560cd6720976a751034b78714","ci/docker/wasm32-unknown-unknown/Dockerfile":"3e5f294bc1e004aa599086c2af49d6f3e7459fa250f5fbdd60cf67d53db78758","ci/docker/x86_64-linux-android/Dockerfile":"685040273cf350d5509e580ac451555efa19790c8723ca2af066adadc6880ad2","ci/docker/x86_64-unknown-linux-gnu-emulated/Dockerfile":"44b6203d9290bfdc53d81219f0937e1110847a23dd982ec8c4de388354f01536","ci/docker/x86_64-unknown-linux-gnu/Dockerfile":"d253c86803b22da428fa9cc671a05f18d3318eca7733b8dccb4f7be1ddf524c5","ci/dox.sh":"5b61711be47a4e3dde0ddd15ba73d256ea95fd75af3897732c24db1dc7e66366","ci/linux-s390x.sh":"d6b732d7795b4ba131326aff893bca6228a7d2eb0e9402f135705413dbbe0dce","ci/linux-sparc64.sh":"c92966838b1ab7ad3b7a344833ee726aba6b647cf5952e56f0ad1ba420b13325","ci/lld-shim.rs":"3d7f71ec23a49e2b67f694a0168786f9a954dda15f5a138815d966643fd3fcc3","ci/max_line_width.sh":"0a1518bba4c9ecaa55694cb2e9930d0e19c265baabf73143f17f9cf285aaa5bb","ci/run-docker.sh":"92e036390ad9b0d16f109579df1b5ced2e72e9afea40c7d011400ebd3a2a90de","ci/run.sh":"63259e22a96ba539f53c06b1b39f53e3a78a71171652e7afc170836110ccd913","ci/run_examples.sh":"d1a23c6c35374a0678ba5114b9b8fefd8be0a79e774872a8bf0898d1baca18d0","ci/runtest-android.rs":"145a8e9799a5223975061fe7e586ade5669ee4877a7d7a4cf6b4ab48e8e36c7c","ci/setup_benchmarks.sh":"73fb981a8fdb1dcd54409d3c0fbbfb8f77a3ceabf8626a6b9bf9d21d6bc8ce72","ci/test-runner-linux":"c8aa6025cff5306f4f31d0c61dc5f9d4dd5a1d189ab613ef8d4c367c694d9ccd","contributing.md":"2cc8c9c560ae17867e69b06d09b758dbf7bc39eb774ada50a743724b10acc0a2","perf-guide/.gitignore":"fe82c7da551079d832cf74200b0b359b4df9828cb4a0416fa7384f07a2ae6a13","perf-guide/book.toml":"115a98284126c6b180178b44713314cc494f08a71662ee2ce15cf67f17a51064","perf-guide/src/SUMMARY.md":"3e03bffc991fdc2050f3d51842d72d9d21ea6abab56a3baf3b2d5973a78b89e1","perf-guide/src/ascii.css":"29afb08833b2fe2250f0412e1fa1161a2432a0820a14953c87124407417c741a","perf-guide/src/bound_checks.md":"5e4991ff58a183ef0cd9fdc1feb4cd12d083b44bdf87393bbb0927808ef3ce7d","perf-guide/src/float-math/approx.md":"8c09032fa2d795a0c5db1775826c850d28eb2627846d0965c60ee72de63735ad","perf-guide/src/float-math/fma.md":"311076ba4b741d604a82e74b83a8d7e8c318fcbd7f64c4392d1cf5af95c60243","perf-guide/src/float-math/fp.md":"04153e775ab6e4f0d7837bcc515230d327b04edfa34c84ce9c9e10ebaeef2be8","perf-guide/src/float-math/svml.md":"0798873b8eedaeda5fed62dc91645b57c20775a02d3cd74d8bd06958f1516506","perf-guide/src/introduction.md":"9f5a19e9e6751f25d2daad39891a0cc600974527ec4c8305843f9618910671bd","perf-guide/src/prof/linux.md":"447731eb5de7d69166728fdbc5ecb0c0c9db678ea493b45a592d67dd002184c0","perf-guide/src/prof/mca.md":"f56d54f3d20e7aa4d32052186e8237b03d65971eb5d112802b442570ff11d344","perf-guide/src/prof/profiling.md":"8a650c0fd6ede0964789bb6577557eeef1d8226a896788602ce61528e260e43c","perf-guide/src/target-feature/attribute.md":"615f88dca0a707b6c416fa605435dd6e1fb5361cc639429cbf68cd87624bd78b","perf-guide/src/target-feature/features.md":"17077760ff24c006b606dd21889c53d87228f4311f3ba3a574f9afdeacd86165","perf-guide/src/target-feature/inlining.md":"7ed1d7068d8173a00d84c16cfe5871cd68b9f04f8d0cca2d01ebc84957ebf2f6","perf-guide/src/target-feature/practice.md":"c4b371842e0086df178488fec97f20def8f0c62ee588bcd25fd948b9b1fa227e","perf-guide/src/target-feature/runtime.md":"835425f5ee597fb3e51d36e725a81ebee29f4561231d19563cd4da81dbb1cfcb","perf-guide/src/target-feature/rustflags.md":"ab49712e9293a65d74d540ba4784fcb57ff1119ec05a575d895c071f1a620f64","perf-guide/src/vert-hor-ops.md":"c6211c0ee91e60552ec592d89d9d957eedc21dee3cbd89e1ad6765ea06a27471","readme.md":"585a8f0e16877fb9abb00cd17a175fcb9d7857840c6c61209f1827ffab095070","rustfmt.toml":"de6101d0670bad65fb3b337d56957d2a024e017e5ab146ec784d77312daaf8ff","src/api.rs":"331a3a4abb19cee2df5f2df4ad7c3e88b45e62cf23fdacfc9bbaa633dc5cf788","src/api/bit_manip.rs":"e68290ee679cc5abc9c73afbe635c1035f8cbfe849e5c751a1680e459244c39e","src/api/cast.rs":"03b94a3d316ac7b7be7068810044911e965e889a0ace7bae762749ca74a92747","src/api/cast/macros.rs":"b0a14d0c83ad2ebb7a275180f6d9e3f2bc312ba57a7d3d6c39fad4e0f20f9408","src/api/cast/v128.rs":"63e28c6a3edf1a7a635f51b8d3c6adbb1d46f884d92a196b3d4a6e743d809416","src/api/cast/v16.rs":"2a584eeb57fd47baad6f3533764301b04aaaac23702b7a8db12598ac02899262","src/api/cast/v256.rs":"b91c15ed8d1536ecd97b4eb79ff9d5aba0552cd9b6f0ea6435b05f2273e23b3a","src/api/cast/v32.rs":"62ec89fcce7fa7f28497ee5770adc8f81d2d3a6b2925b02f7dc06504c40e8f38","src/api/cast/v512.rs":"d855cb943ae7106e9599ef38e30a3afb1c6bd5433178baca54cb128fd9a7d143","src/api/cast/v64.rs":"fe0f7dfaf4fc0c0c1a78c96fcfcdfdc2a1e2845843b11aa797a0c6fb52a8f774","src/api/cmp.rs":"357c3a2a09c6d4611c32dd7fa95be2fae933d513e229026ec9b44451a77b884e","src/api/cmp/eq.rs":"60f70f355bae4cb5b17db53204cacc3890f70670611c17df638d4c04f7cc8075","src/api/cmp/ord.rs":"589f7234761c294fa5df8f525bc4acd5a47cdb602207d524a0d4e19804cd9695","src/api/cmp/partial_eq.rs":"3ed23d2a930b0f9750c3a5309da766b03dc4f9c4d375b42ad3c50fe732693d15","src/api/cmp/partial_ord.rs":"e16b11805c94048acd058c93994b5bc74bb187f8d7e3b86a87df60e1601467f9","src/api/cmp/vertical.rs":"de3d62f38eba817299aa16f1e1939954c9a447e316509397465c2830852ba053","src/api/default.rs":"b61f92fc0e33a2633b3375eb405beba480da071cde03df4d437d8a6058afcd97","src/api/fmt.rs":"67fb804bb86b6cd77cf8cd492b5733ce437071b66fe3297278b8a6552c325dda","src/api/fmt/binary.rs":"35cb5c266197d6224d598fb3d286e5fe48ef0c01ed356c2ff6fe9ba946f96a92","src/api/fmt/debug.rs":"aa18eea443bf353fea3db8b1a025132bbcaf91e747ecfa43b8d9fce9af395a0c","src/api/fmt/lower_hex.rs":"69d5be366631af309f214e8031c8c20267fcc27a695eac6f45c6bc1df72a67e6","src/api/fmt/octal.rs":"9eb11ba3d990213f3c7f1ec25edba7ce997cb1320e16d308c83498ba6b9bfbd9","src/api/fmt/upper_hex.rs":"a4637d085b7bb20e759ce58e08435b510a563ba3dd468af2b03560fdc5511562","src/api/from.rs":"2e599d8329cb05eaf06224cc441355c4b7b51254fc19256619333be8c149d444","src/api/from/from_array.rs":"4151593c7bba7455821fffa5b59867005a77c95d32f1f0cc3fd87294000157d9","src/api/from/from_vector.rs":"9764371aa9e6005aace74dea14f59e5611a095b7cf42707940924749282c52f0","src/api/hash.rs":"562cfa3f1d8eb9a733c035a3665a599c2f1e341ee820d8fbdd102a4398a441bc","src/api/into_bits.rs":"82297f0697d67b5a015e904e7e6e7b2a7066ba825bc54b94b4ff3e22d7a1eefb","src/api/into_bits/arch_specific.rs":"1f925390b0ce7132587d95f2419c6e2ad3e1a9d17eb1d9c120a1c1c4bdf4277e","src/api/into_bits/macros.rs":"d762406de25aedff88d460dec7a80dc8e825a2a419d53218ce007efa6a1d3e04","src/api/into_bits/v128.rs":"ecdc5893664c71d7ab1ff3697c3fbe490d20d8748b9b76881d05e7625e40d74c","src/api/into_bits/v16.rs":"5459ec7dad1ad7bd30dc7e48374580b993abf23701d9c3cb22203fa0a9aabb6d","src/api/into_bits/v256.rs":"90ea351da0380ead1bf0f63b620afd40d01d638d09f7e7be31840bd2c1d9c663","src/api/into_bits/v32.rs":"ee1dc5a430050e16f51154b5fe85b1536f5feddf2ea23dd1d3859b67c4afc6fc","src/api/into_bits/v512.rs":"f72098ed1c9a23944f3d01abaf5e0f2d0e81d35a06fdadd2183e896d41b59867","src/api/into_bits/v64.rs":"6394462facdfe7827349c742b7801f1291e75a720dfb8c0b52100df46f371c98","src/api/math.rs":"8b2a2fc651917a850539f993aa0b9e5bf4da67b11685285b8de8cdca311719ec","src/api/math/float.rs":"61d2794d68262a1090ae473bd30793b5f65cf732f32a6694a3af2ce5d9225616","src/api/math/float/abs.rs":"5b6b2701e2e11135b7ce58a05052ea8120e10e4702c95d046b9d21b827b26bf8","src/api/math/float/consts.rs":"78acba000d3fa527111300b6327c1932de9c4c1e02d4174e1a5615c01463d38c","src/api/math/float/cos.rs":"4c2dd7173728ef189314f1576c9486e03be21b7da98843b2f9011282a7979e31","src/api/math/float/exp.rs":"7c6d5f1e304f498a01cfa23b92380c815d7da0ad94eae3483783bc377d287eef","src/api/math/float/ln.rs":"54c7583f3df793b39ff57534fade27b41bb992439e5dc178252f5ca3190a3e54","src/api/math/float/mul_add.rs":"62cac77660d20159276d4c9ef066eb90c81cbddb808e8e157182c607625ad2eb","src/api/math/float/mul_adde.rs":"bae056ee9f3a70df39ec3c3b2f6437c65303888a7b843ef1a5bcf1f5aca0e602","src/api/math/float/powf.rs":"9ddb938984b36d39d82a82f862f80df8f7fb013f1d222d45698d41d88472f568","src/api/math/float/recpre.rs":"589225794ff1dbf31158dff660e6d4509ecc8befbb57c633900dea5ac0b840d6","src/api/math/float/rsqrte.rs":"a32abdcc318d7ccc8448231f54d75b884b7cbeb03a7d595713ab6243036f4dbf","src/api/math/float/sin.rs":"cbd3622b7df74f19691743001c8cf747a201f8977ad90542fee915f37dcd1e49","src/api/math/float/sqrt.rs":"0c66d5d63fb08e4d99c6b82a8828e41173aff1ac9fa1a2764a11fac217ccf2ac","src/api/math/float/sqrte.rs":"731e1c9f321b662accdd27dacb3aac2e8043b7aecb2f2161dde733bd9f025362","src/api/minimal.rs":"1f22bcc528555444e76de569ec0ae2029b9ae9d04805efeafa93369c8098036b","src/api/minimal/iuf.rs":"c501a6696950cf5e521765f178de548af64fdfb6e10d026616d09fab93ca2d17","src/api/minimal/mask.rs":"42e415f536c5193d0218f5a754b34b87fd7c971bff068009f958712166ff056d","src/api/minimal/ptr.rs":"a9ee482d1dd1c956fb8f3f179e6e620b1de4e9d713961461d4c6923a4ef2e67c","src/api/ops.rs":"3e273b277a0f3019d42c3c59ca94a5afd4885d5ae6d2182e5089bbeec9de42ee","src/api/ops/scalar_arithmetic.rs":"d2d5ad897a59dd0787544f927e0e7ca4072c3e58b0f4a2324083312b0d5a21d7","src/api/ops/scalar_bitwise.rs":"482204e459ca6be79568e1c9f70adbe2d2151412ddf122fb2161be8ebb51c40c","src/api/ops/scalar_mask_bitwise.rs":"c250f52042e37b22d57256c80d4604104cfd2fbe2a2e127c676267270ca5d350","src/api/ops/scalar_shifts.rs":"987f8fdebeedc16e3d77c1b732e7826ef70633c541d16dfa290845d5c6289150","src/api/ops/vector_arithmetic.rs":"ddca15d09ddeef502c2ed66117a62300ca65d87e959e8b622d767bdf1c307910","src/api/ops/vector_bitwise.rs":"b3968f7005b649edcc22a54e2379b14d5ee19045f2e784029805781ae043b5ee","src/api/ops/vector_float_min_max.rs":"f5155dce75219f4ba11275b1f295d2fdcddd49d174a6f1fb2ace7ea42813ce41","src/api/ops/vector_int_min_max.rs":"a378789c6ff9b32a51fbd0a97ffd36ed102cd1fe6a067d2b02017c1df342def6","src/api/ops/vector_mask_bitwise.rs":"5052d18517d765415d40327e6e8e55a312daaca0a5e2aec959bfa54b1675f9c8","src/api/ops/vector_neg.rs":"5c62f6b0221983cdbd23cd0a3af3672e6ba1255f0dfe8b19aae6fbd6503e231b","src/api/ops/vector_rotates.rs":"03cbe8a400fd7c688e4ee771a990a6754f2031b1a59b19ae81158b21471167e5","src/api/ops/vector_shifts.rs":"9bf69d0087268f61009e39aea52e03a90f378910206b6a28e8393178b6a5d0e0","src/api/ptr.rs":"8a793251bed6130dcfb2f1519ceaa18b751bbb15875928d0fb6deb5a5e07523a","src/api/ptr/gather_scatter.rs":"9ddd960365e050674b25b2fd3116e24d94669b4375d74e71c03e3f1469576066","src/api/reductions.rs":"ae5baca81352ecd44526d6c30c0a1feeda475ec73ddd3c3ec6b14e944e5448ee","src/api/reductions/bitwise.rs":"8bf910ae226188bd15fc7e125f058cd2566b6186fcd0cd8fd020f352c39ce139","src/api/reductions/float_arithmetic.rs":"e58c8c87806a95df2b2b5b48ac5991036df024096d9d7c171a480fe9282896a4","src/api/reductions/integer_arithmetic.rs":"47471da1c5f859489680bb5d34ced3d3aa20081c16053a3af121a4496fcb57bf","src/api/reductions/mask.rs":"db83327a950e33a317f37fd33ca4e20c347fb415975ec024f3e23da8509425af","src/api/reductions/min_max.rs":"f27be3aa28e1c1f46de7890198db6e12f00c207085e89ef2de7e57ee443cdb98","src/api/select.rs":"a98e2ccf9fc6bdeed32d337c8675bc96c2fbe2cc34fbf149ad6047fb8e749774","src/api/shuffle.rs":"da58200790868c09659819322a489929a5b6e56c596ed07e6a44293ea02e7d09","src/api/shuffle1_dyn.rs":"bfea5a91905b31444e9ef7ca6eddb7a9606b7e22d3f71bb842eb2795a0346620","src/api/slice.rs":"ee87484e8af329547b9a5d4f2a69e8bed6ea10bbd96270d706083843d4eea2ac","src/api/slice/from_slice.rs":"4d4fe8a329c885fcb4fbcbedf99efb15a95296fe6b3f595056cc37037450d5ac","src/api/slice/write_to_slice.rs":"f5b23b2c4b91cfb26b713a9013a6c0da7f45eaefb79ba06dcbc27f3f23bda679","src/api/swap_bytes.rs":"4a6792a2e49a77475e1b237592b4b2804dbddb79c474331acd0dd71b36934259","src/codegen.rs":"c6eebc3d3665420aa6a2f317977e3c41a4f43e0550ac630cdbe8e4bbed5e2031","src/codegen/bit_manip.rs":"5559e095105a80003e0de35af1d19b0c65c9ab04eb743c7e01c5442d882eb34e","src/codegen/llvm.rs":"d1299c189abb17a6133f047574cffc7a6db4c1be37cb7d4785491cb5e8f8cf54","src/codegen/math.rs":"35f96e37a78fcf0cdb02146b7f27a45108fe06a37fc2a54d8851ce131a326178","src/codegen/math/float.rs":"dd86c0449e576c83b719700962ac017c332987fac08d91f2b7a2b1b883598170","src/codegen/math/float/abs.rs":"f56e2b4b8055ea861c1f5cbc6b6e1d8e7e5af163b62c13574ddee4e09513bfbc","src/codegen/math/float/cos.rs":"ef3b511a24d23045b310315e80348a9b7fedb576fc2de52d74290616a0abeb2a","src/codegen/math/float/cos_pi.rs":"4e7631a5d73dac21531e09ef1802d1180f8997509c2c8fa9f67f322194263a97","src/codegen/math/float/exp.rs":"61b691598c41b5622f24e4320c1bdd08701e612a516438bdddcc728fc3405c8c","src/codegen/math/float/ln.rs":"46b718b1ba8c9d99e1ad40f53d20dfde08a3063ca7bd2a9fdd6698e060da687e","src/codegen/math/float/macros.rs":"dd42135fff13f9aca4fd3a1a4e14c7e6c31aadc6d817d63b0d2fb9e62e062744","src/codegen/math/float/mul_add.rs":"a37bf764345d4b1714f97e83897b7cf0855fc2811704bcbc0012db91825339e1","src/codegen/math/float/mul_adde.rs":"c75702bfcb361de45964a93caf959a695ef2376bd069227600b8c6872665c755","src/codegen/math/float/powf.rs":"642346e982bc4c39203de0864d2149c4179cd7b21cf67a2951687932b4675872","src/codegen/math/float/sin.rs":"9d68164c90cdca6a85155040cdac42e27342ebe0b925273ef1593df721af4258","src/codegen/math/float/sin_cos_pi.rs":"9be02ad48585a1e8d99129382fbffbaed47852f15459256a708850b6b7a75405","src/codegen/math/float/sin_pi.rs":"9890347905b4d4a3c7341c3eb06406e46e60582bcf6960688bd727e5dadc6c57","src/codegen/math/float/sqrt.rs":"e3c60dcfb0c6d2fc62adabcc931b2d4040b83cab294dea36443fb4b89eb79e34","src/codegen/math/float/sqrte.rs":"f0f4ef9eb475ae41bcc7ec6a95ad744ba6b36925faa8b2c2814004396d196b63","src/codegen/pointer_sized_int.rs":"a70697169c28218b56fd2e8d5353f2e00671d1150d0c8cef77d613bdfacd84cb","src/codegen/reductions.rs":"645e2514746d01387ddd07f0aa4ffd8430cc9ab428d4fb13773ea319fa25dd95","src/codegen/reductions/mask.rs":"8f1afe6aabf096a3278e1fc3a30f736e04aa8b9ce96373cee22162d18cfe2702","src/codegen/reductions/mask/aarch64.rs":"cba6e17603d39795dcfe8339b6b7d8714c3e162a1f0a635979f037aa24fe4206","src/codegen/reductions/mask/arm.rs":"9447904818aa2c7c25d0963eead452a639a11ca7dbd6d21eedbfcaade07a0f33","src/codegen/reductions/mask/fallback.rs":"7a0ef9f7fd03ae318b495b95e121350cd61caffc5cc6ee17fabf130d5d933453","src/codegen/reductions/mask/fallback_impl.rs":"76547f396e55ef403327c77c314cf8db8c7a5c9b9819bfb925abeacf130249e5","src/codegen/reductions/mask/x86.rs":"14bd2c482071f2355beebcf7b7ecf950ff2dfcdb08c3ca50993092434a9de717","src/codegen/reductions/mask/x86/avx.rs":"b4913d87844c522903641cbbf10db4551addb1ce5e9e78278e21612fa65c733b","src/codegen/reductions/mask/x86/avx2.rs":"677aed3f056285285daa3adff8bc65e739630b4424defa6d9665e160f027507e","src/codegen/reductions/mask/x86/sse.rs":"226610b4ff88c676d5187114dd57b4a8800de6ce40884675e9198445b1ed0306","src/codegen/reductions/mask/x86/sse2.rs":"bc38e6c31cb4b3d62147eba6cac264e519e2a48e0f7ce9010cfa9ef0cf0ec9fd","src/codegen/shuffle.rs":"0abca97e92cdce49a58a39cc447eb09dc7d7715ef256c8dbd2181a186e61bb64","src/codegen/shuffle1_dyn.rs":"04523e9338133bdedb012dd076c2c564b79ce5593b0fc56d0fb6910e04190a81","src/codegen/swap_bytes.rs":"1d6cdc716eadddc92b4fd506b2445a821caa8dc00860447de09d7ebd69c2087f","src/codegen/v128.rs":"94226b31ec403d18d9d2fe06713f147c9c79e9b5f9105089088266313f843185","src/codegen/v16.rs":"ddec4ffb66b6f7aaffb9a1780c5ddba82557abd74f45073d335047e04cf74924","src/codegen/v256.rs":"6b63917f0444118d6b1595bff2045e59b97c4d24012bd575f69f1f0efc5a0241","src/codegen/v32.rs":"3477b3c5540aed86e61e2f5807dd31db947413cec9181c587d93ed6ec74f0eba","src/codegen/v512.rs":"5854f99d3aabc4cd42b28a20d9ce447756dc2ba024a409a69b6a8ae1f1842fc5","src/codegen/v64.rs":"e9e89caebfe63d10c0cbca61e4dfdba3b7e02ee0989170f80beed23237ddd950","src/codegen/vPtr.rs":"96d609a9eece4dcbbcc01ba0b8744d7f5958be12774176a2945bc676f4e6b5cb","src/codegen/vSize.rs":"eeee9858749aa82142b27bc120d1989bb74a6b82e1e4efbbeaccc9634dc9acfc","src/lib.rs":"1b5d419ff05ee0370d671810423ccc254708cc8d415c1dbac2a7a36be4bf63a8","src/masks.rs":"870f429967b2d7d5133f4d28d6c753fc5cef0570b27b29d4e966a066d22d2d0e","src/sealed.rs":"ff7f0324276408ae8249941cfa32c90b8835a54d750896b683efea857af19db2","src/testing.rs":"1d3a7862ef625e235a5734ad7204e68d350f902c0695182b1f08a0552432416e","src/testing/macros.rs":"6378856d7a40ba5ec5c7c0dad6327d79f0c77266921c24296d10aed6c68e9b98","src/testing/utils.rs":"d6fd5a5017f1f85d9d99585754f8f6ad06fc3d683b34083543e67a7cc6c1772c","src/v128.rs":"18fe263c4aa28cd06461c7070b0269f69f4a2e75749b8f142a83dfdfe4d22bf5","src/v16.rs":"e5c663c9fb3547eaeac78a5f7db9969f4d8b5ec96112bf2954602fff11f0aebd","src/v256.rs":"68732cd688ad12a56d8b4f8ddf279f77bdfe1be2943c7dc0c1b4f1a76798aa0f","src/v32.rs":"785b22a1ccb4a41bb53dfeb0670f624c0ce42e6cdf62d1747e3283777a1c70bd","src/v512.rs":"d1337bfe07f06a8f37f8e8fa7d4315b9307476ee435ad80dd5269eaed564fbfa","src/v64.rs":"3077468d65125b8f085e9454c8b2463a4d5225697464ba6a1300f8799528fd4b","src/vPtr.rs":"c9a53f41f466e17b6648a4ce390fd8f4d3a848d440eb8a9a803a11608d76eb05","src/vSize.rs":"5c46d3e8c3ee5863d9b6e37e681f871386e0efc254d6d84ba711edb529ce7b3c","tests/endianness.rs":"541a144be017e3dd7da7c8ea49d907dc02538245e8c5f3deb5bd43da92c929e1"},"package":null}
-\ No newline at end of file
-+{"files":{".appveyor.yml":"f1ed01850e0d725f9498f52a1a63ddf40702ad6e0bf5b2d7c4c04d76e96794a3",".travis.yml":"d56de6531d3c4880e3aada85ac8e6d7388e5d781871e181cb8ade2a746d5d5f5","Cargo.toml":"e94ccb82002e8b55680c2c5fec554a9e864c5f354e113278d0aa927df279330d","LICENSE-APACHE":"a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2","LICENSE-MIT":"6485b8ed310d3f0340bf1ad1f47645069ce4069dcc6bb46c7d5c6faf41de1fdb","README.md":"49d01e49a33393af64fa6c813b6a724f68a4d1abfbedcb96413651ed105aa820","bors.toml":"dee881dc69b9b7834e4eba5d95c3ed5a416d4628815a167d6a22d4cb4fb064b8","build.rs":"c3312e786c7fcb8f16c0785fe235ebbcf43fbeab6d7d683752f62043ca92d887","ci/all.sh":"2ae6b2445b4db83833e40b37efd0016c6b9879ee988b9b3ef94db5439a3e1606","ci/android-install-ndk.sh":"0f1746108cc30bf9b9ba45bcde7b19fc1a8bdf5b0258035b4eb8dc69b75efac4","ci/android-install-sdk.sh":"3490432022c5c8f5a115c084f7a9aca1626f96c0c87ffb62019228c4346b47e4","ci/android-sysimage.sh":"ebf4e5daa1f0fe1b2092b79f0f3f161c4c4275cb744e52352c4d81ab451e4c5a","ci/benchmark.sh":"b61d19ef6b90deba8fb79dee74c8b062d94844676293da346da87bb78a9a49a4","ci/deploy_and_run_on_ios_simulator.rs":"ec8ecf82d92072676aa47f0d1a3d021b60a7ae3531153ef12d2ff4541fc294dc","ci/docker/aarch64-linux-android/Dockerfile":"ace2e7d33c87bc0f6d3962a4a3408c04557646f7f51ab99cfbf574906796b016","ci/docker/aarch64-unknown-linux-gnu/Dockerfile":"da88c0d50f16dc08448c7fdf1fa5ed2cbe576acf9e7dd85b5b818621b2a8c702","ci/docker/arm-linux-androideabi/Dockerfile":"370e55d3330a413a3ccf677b3afb3e0ef9018a5fab263faa97ae8ac017fc2286","ci/docker/arm-unknown-linux-gnueabi/Dockerfile":"bb5f8ae890707c128652290ffc544447643bf12037ddd73c6ad6989f848cb380","ci/docker/arm-unknown-linux-gnueabihf/Dockerfile":"1afaefcbc05b740859acd4e067bc92439be6bcbe8f2e9678474fb434bcd398d9","ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile":"8282ea707a94109beed47a57574755e2d58401735904a03f85fb64c578c53b4f","ci/docker/i586-unknown-linux-gnu/Dockerfile":"49792922269f371bd29da4727e9085101b27be67a6b97755d0196c63317f7abb","ci/docker/i686-unknown-linux-gnu/Dockerfile":"49792922269f371bd29da4727e9085101b27be67a6b97755d0196c63317f7abb","ci/docker/mips-unknown-linux-gnu/Dockerfile":"b2ebc25797612c4f8395fe9d407725156044955bfbcf442036b7f55b43a5f9da","ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile":"b0c1692ac65bc56dd30494b1993d8e929c48cc9c4b92029b7c7592af6d4f9220","ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile":"4e9249c179300138141d0b2b7401b11897f64aed69f541f078c1db4594df2827","ci/docker/mipsel-unknown-linux-musl/Dockerfile":"3164c52b0dcbb01afa78292b15b5c43503ccf0491cf6eb801ec2bf22ae274e52","ci/docker/powerpc-unknown-linux-gnu/Dockerfile":"786f799d0b56eb54d7b6c4b00e1aed4ce81776e14e44767e083c89d014b72004","ci/docker/powerpc64-unknown-linux-gnu/Dockerfile":"e8bc363837cd9c2d8b22402acb8c1c329efc11ba5d12170603d2fe2eae9da059","ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile":"47998d45b781d797b9e6085ebe898d90de0c952b54537a8db4e8d7503eb032d9","ci/docker/s390x-unknown-linux-gnu/Dockerfile":"93fb44df3d7fd31ead158570667c97b5076a05c3d968af4a84bc13819a8f2db8","ci/docker/sparc64-unknown-linux-gnu/Dockerfile":"da1c39a3ff1fe22e41395fa7c8934e90b4c1788e551b9aec6e38bfd94effc437","ci/docker/thumbv7neon-linux-androideabi/Dockerfile":"c2decd5591bd7a09378901bef629cd944acf052eb55e4f35b79eb9cb4d62246a","ci/docker/thumbv7neon-unknown-linux-gnueabihf/Dockerfile":"51955a8bf3c4d440f47382af6f5426ebff94ab01a04da36175babda9a057740f","ci/docker/wasm32-unknown-unknown/Dockerfile":"3e5f294bc1e004aa599086c2af49d6f3e7459fa250f5fbdd60cf67d53db78758","ci/docker/x86_64-linux-android/Dockerfile":"685040273cf350d5509e580ac451555efa19790c8723ca2af066adadc6880ad2","ci/docker/x86_64-unknown-linux-gnu-emulated/Dockerfile":"44b6203d9290bfdc53d81219f0937e1110847a23dd982ec8c4de388354f01536","ci/docker/x86_64-unknown-linux-gnu/Dockerfile":"7f4e3ca5fa288ea70edb4d1f75309708cd30b192e2e4444e61c4d5b3b58f89cf","ci/dox.sh":"434e9611c52e389312d2b03564adf09429f10cc76fe66a8644adb104903b87b7","ci/linux-s390x.sh":"d6b732d7795b4ba131326aff893bca6228a7d2eb0e9402f135705413dbbe0dce","ci/linux-sparc64.sh":"c92966838b1ab7ad3b7a344833ee726aba6b647cf5952e56f0ad1ba420b13325","ci/lld-shim.rs":"3d7f71ec23a49e2b67f694a0168786f9a954dda15f5a138815d966643fd3fcc3","ci/max_line_width.sh":"0a1518bba4c9ecaa55694cb2e9930d0e19c265baabf73143f17f9cf285aaa5bb","ci/run-docker.sh":"92e036390ad9b0d16f109579df1b5ced2e72e9afea40c7d011400ebd3a2a90de","ci/run.sh":"41dd6a60efaaeae9661a01370cce98b631f78392859a0cf68c946c0a16edf5f7","ci/run_examples.sh":"d1a23c6c35374a0678ba5114b9b8fefd8be0a79e774872a8bf0898d1baca18d0","ci/runtest-android.rs":"145a8e9799a5223975061fe7e586ade5669ee4877a7d7a4cf6b4ab48e8e36c7c","ci/setup_benchmarks.sh":"fae3960023f6f3d1388cd2ad22fdbab4b075f1f29dd4292d7994a20783beb6cf","ci/test-runner-linux":"c8aa6025cff5306f4f31d0c61dc5f9d4dd5a1d189ab613ef8d4c367c694d9ccd","contributing.md":"2cc8c9c560ae17867e69b06d09b758dbf7bc39eb774ada50a743724b10acc0a2","perf-guide/.gitignore":"fe82c7da551079d832cf74200b0b359b4df9828cb4a0416fa7384f07a2ae6a13","perf-guide/book.toml":"115a98284126c6b180178b44713314cc494f08a71662ee2ce15cf67f17a51064","perf-guide/src/SUMMARY.md":"3e03bffc991fdc2050f3d51842d72d9d21ea6abab56a3baf3b2d5973a78b89e1","perf-guide/src/ascii.css":"29afb08833b2fe2250f0412e1fa1161a2432a0820a14953c87124407417c741a","perf-guide/src/bound_checks.md":"5e4991ff58a183ef0cd9fdc1feb4cd12d083b44bdf87393bbb0927808ef3ce7d","perf-guide/src/float-math/approx.md":"8c09032fa2d795a0c5db1775826c850d28eb2627846d0965c60ee72de63735ad","perf-guide/src/float-math/fma.md":"311076ba4b741d604a82e74b83a8d7e8c318fcbd7f64c4392d1cf5af95c60243","perf-guide/src/float-math/fp.md":"04153e775ab6e4f0d7837bcc515230d327b04edfa34c84ce9c9e10ebaeef2be8","perf-guide/src/float-math/svml.md":"0798873b8eedaeda5fed62dc91645b57c20775a02d3cd74d8bd06958f1516506","perf-guide/src/introduction.md":"9f5a19e9e6751f25d2daad39891a0cc600974527ec4c8305843f9618910671bd","perf-guide/src/prof/linux.md":"447731eb5de7d69166728fdbc5ecb0c0c9db678ea493b45a592d67dd002184c0","perf-guide/src/prof/mca.md":"f56d54f3d20e7aa4d32052186e8237b03d65971eb5d112802b442570ff11d344","perf-guide/src/prof/profiling.md":"8a650c0fd6ede0964789bb6577557eeef1d8226a896788602ce61528e260e43c","perf-guide/src/target-feature/attribute.md":"615f88dca0a707b6c416fa605435dd6e1fb5361cc639429cbf68cd87624bd78b","perf-guide/src/target-feature/features.md":"17077760ff24c006b606dd21889c53d87228f4311f3ba3a574f9afdeacd86165","perf-guide/src/target-feature/inlining.md":"7ed1d7068d8173a00d84c16cfe5871cd68b9f04f8d0cca2d01ebc84957ebf2f6","perf-guide/src/target-feature/practice.md":"c4b371842e0086df178488fec97f20def8f0c62ee588bcd25fd948b9b1fa227e","perf-guide/src/target-feature/runtime.md":"835425f5ee597fb3e51d36e725a81ebee29f4561231d19563cd4da81dbb1cfcb","perf-guide/src/target-feature/rustflags.md":"ab49712e9293a65d74d540ba4784fcb57ff1119ec05a575d895c071f1a620f64","perf-guide/src/vert-hor-ops.md":"c6211c0ee91e60552ec592d89d9d957eedc21dee3cbd89e1ad6765ea06a27471","rustfmt.toml":"de6101d0670bad65fb3b337d56957d2a024e017e5ab146ec784d77312daaf8ff","src/api.rs":"f6e92f056565e6fd93f98829a408aee9e790251e0cbd8a8bc30c8662b4d6fabb","src/api/bit_manip.rs":"c47a4d0f7451f7e35d07715e4f39a472e07457fd456fdb726864a4f6887252a3","src/api/bitmask.rs":"6d2beefd62ee5d9c8eb060bee6abc641616bf828c99f82abf97b21bf004e894b","src/api/cast.rs":"03b94a3d316ac7b7be7068810044911e965e889a0ace7bae762749ca74a92747","src/api/cast/macros.rs":"b0a14d0c83ad2ebb7a275180f6d9e3f2bc312ba57a7d3d6c39fad4e0f20f9408","src/api/cast/v128.rs":"2107ea6a426a0fe37a0aa6a03a579ff0bdeb5a1599ea76e2d81734a82f41276d","src/api/cast/v16.rs":"d785cf93b8e61200c9ae1c32b9f5e9d9518e87c261c56bcaf92f2e47b0009eb4","src/api/cast/v256.rs":"b81fcfd367a5de532d922dedf18579e53666facef7957c0e1bc827825e500ae6","src/api/cast/v32.rs":"2aac9ec0a67a97328ba908b13a1ff98da3dcd7781910d592d31f9207cbd9a7d2","src/api/cast/v512.rs":"33b33de818f8d4eccc982bc2f3951a8b3d03e9762ec02789b3df82e3f5ed3fc3","src/api/cast/v64.rs":"ec878917d52a8c952633251b3a938a2cbe0a63fee6d12c15840d9f1343d1f394","src/api/cmp.rs":"357c3a2a09c6d4611c32dd7fa95be2fae933d513e229026ec9b44451a77b884e","src/api/cmp/eq.rs":"60f70f355bae4cb5b17db53204cacc3890f70670611c17df638d4c04f7cc8075","src/api/cmp/ord.rs":"589f7234761c294fa5df8f525bc4acd5a47cdb602207d524a0d4e19804cd9695","src/api/cmp/partial_eq.rs":"3ed23d2a930b0f9750c3a5309da766b03dc4f9c4d375b42ad3c50fe732693d15","src/api/cmp/partial_ord.rs":"e16b11805c94048acd058c93994b5bc74bb187f8d7e3b86a87df60e1601467f9","src/api/cmp/vertical.rs":"de3d62f38eba817299aa16f1e1939954c9a447e316509397465c2830852ba053","src/api/default.rs":"67bf21c134127d12a7028c8b88a57f0ceee8ccbd74976da8ca74eb9f16a174d5","src/api/fmt.rs":"67fb804bb86b6cd77cf8cd492b5733ce437071b66fe3297278b8a6552c325dda","src/api/fmt/binary.rs":"35cb5c266197d6224d598fb3d286e5fe48ef0c01ed356c2ff6fe9ba946f96a92","src/api/fmt/debug.rs":"aa18eea443bf353fea3db8b1a025132bbcaf91e747ecfa43b8d9fce9af395a0c","src/api/fmt/lower_hex.rs":"69d5be366631af309f214e8031c8c20267fcc27a695eac6f45c6bc1df72a67e6","src/api/fmt/octal.rs":"9eb11ba3d990213f3c7f1ec25edba7ce997cb1320e16d308c83498ba6b9bfbd9","src/api/fmt/upper_hex.rs":"a4637d085b7bb20e759ce58e08435b510a563ba3dd468af2b03560fdc5511562","src/api/from.rs":"2e599d8329cb05eaf06224cc441355c4b7b51254fc19256619333be8c149d444","src/api/from/from_array.rs":"dd3fc64fb17d6184bb60343f8da26a05edf0e5f3c14caf55d49fa15e21d948dc","src/api/from/from_vector.rs":"9764371aa9e6005aace74dea14f59e5611a095b7cf42707940924749282c52f0","src/api/hash.rs":"5076ece87969592c876486f5b1ea8affbeaec379d1a14a30859e0aa5592019de","src/api/into_bits.rs":"82297f0697d67b5a015e904e7e6e7b2a7066ba825bc54b94b4ff3e22d7a1eefb","src/api/into_bits/arch_specific.rs":"4acab22af90112072a2608fafc66fccf18cbf2e641b72af28404d30833cfe5c6","src/api/into_bits/macros.rs":"d762406de25aedff88d460dec7a80dc8e825a2a419d53218ce007efa6a1d3e04","src/api/into_bits/v128.rs":"3c502b9ce85bfcc727d6f053d49030b0ba9f46bd8e9fa5aa109382a2033f9f87","src/api/into_bits/v16.rs":"f4f4f61ba88aa51b158ec56ca3dce234349aea0daf2b3029a14ab5125d1e41e5","src/api/into_bits/v256.rs":"c24c3676707a0feb868dabe00766d74deab176794f905f79056337198c7cf790","src/api/into_bits/v32.rs":"905ba683d342fa32f4202b80bb46530807bd0a5b588f6c2e8c9f475223c47775","src/api/into_bits/v512.rs":"7cd89005215a9326eed8a742125dcbf981cba1aca72a313478eabf3df71b1160","src/api/into_bits/v64.rs":"d6238022ccff7b92e55b3f6017fc269acb6f36330a6d7e8fb389853a0f1b6478","src/api/math.rs":"8b2a2fc651917a850539f993aa0b9e5bf4da67b11685285b8de8cdca311719ec","src/api/math/float.rs":"61d2794d68262a1090ae473bd30793b5f65cf732f32a6694a3af2ce5d9225616","src/api/math/float/abs.rs":"5b6b2701e2e11135b7ce58a05052ea8120e10e4702c95d046b9d21b827b26bf8","src/api/math/float/consts.rs":"78acba000d3fa527111300b6327c1932de9c4c1e02d4174e1a5615c01463d38c","src/api/math/float/cos.rs":"4c2dd7173728ef189314f1576c9486e03be21b7da98843b2f9011282a7979e31","src/api/math/float/exp.rs":"7c6d5f1e304f498a01cfa23b92380c815d7da0ad94eae3483783bc377d287eef","src/api/math/float/ln.rs":"54c7583f3df793b39ff57534fade27b41bb992439e5dc178252f5ca3190a3e54","src/api/math/float/mul_add.rs":"62cac77660d20159276d4c9ef066eb90c81cbddb808e8e157182c607625ad2eb","src/api/math/float/mul_adde.rs":"bae056ee9f3a70df39ec3c3b2f6437c65303888a7b843ef1a5bcf1f5aca0e602","src/api/math/float/powf.rs":"9ddb938984b36d39d82a82f862f80df8f7fb013f1d222d45698d41d88472f568","src/api/math/float/recpre.rs":"589225794ff1dbf31158dff660e6d4509ecc8befbb57c633900dea5ac0b840d6","src/api/math/float/rsqrte.rs":"a32abdcc318d7ccc8448231f54d75b884b7cbeb03a7d595713ab6243036f4dbf","src/api/math/float/sin.rs":"cbd3622b7df74f19691743001c8cf747a201f8977ad90542fee915f37dcd1e49","src/api/math/float/sqrt.rs":"0c66d5d63fb08e4d99c6b82a8828e41173aff1ac9fa1a2764a11fac217ccf2ac","src/api/math/float/sqrte.rs":"731e1c9f321b662accdd27dacb3aac2e8043b7aecb2f2161dde733bd9f025362","src/api/minimal.rs":"1f22bcc528555444e76de569ec0ae2029b9ae9d04805efeafa93369c8098036b","src/api/minimal/iuf.rs":"819cff26d3e196f807645bcc1d79eb27d9f175edb89910f2274d52a1e913cd11","src/api/minimal/mask.rs":"0cae10ae1fc65f5070e686c0c79bfba27b86b33d6c399367bd4848fb367dcec4","src/api/minimal/ptr.rs":"f65ebf21866a863485344432d9a7a9b7418f7fad5fdf841a4e2fa56ec0766ad0","src/api/ops.rs":"3e273b277a0f3019d42c3c59ca94a5afd4885d5ae6d2182e5089bbeec9de42ee","src/api/ops/scalar_arithmetic.rs":"d2d5ad897a59dd0787544f927e0e7ca4072c3e58b0f4a2324083312b0d5a21d7","src/api/ops/scalar_bitwise.rs":"482204e459ca6be79568e1c9f70adbe2d2151412ddf122fb2161be8ebb51c40c","src/api/ops/scalar_mask_bitwise.rs":"c250f52042e37b22d57256c80d4604104cfd2fbe2a2e127c676267270ca5d350","src/api/ops/scalar_shifts.rs":"987f8fdebeedc16e3d77c1b732e7826ef70633c541d16dfa290845d5c6289150","src/api/ops/vector_arithmetic.rs":"ddca15d09ddeef502c2ed66117a62300ca65d87e959e8b622d767bdf1c307910","src/api/ops/vector_bitwise.rs":"b3968f7005b649edcc22a54e2379b14d5ee19045f2e784029805781ae043b5ee","src/api/ops/vector_float_min_max.rs":"76bf8cb607e2c442923c1da1061a6b80d742d607408033c2a3761161114cf2a0","src/api/ops/vector_int_min_max.rs":"a378789c6ff9b32a51fbd0a97ffd36ed102cd1fe6a067d2b02017c1df342def6","src/api/ops/vector_mask_bitwise.rs":"5052d18517d765415d40327e6e8e55a312daaca0a5e2aec959bfa54b1675f9c8","src/api/ops/vector_neg.rs":"5c62f6b0221983cdbd23cd0a3af3672e6ba1255f0dfe8b19aae6fbd6503e231b","src/api/ops/vector_rotates.rs":"03cbe8a400fd7c688e4ee771a990a6754f2031b1a59b19ae81158b21471167e5","src/api/ops/vector_shifts.rs":"9bf69d0087268f61009e39aea52e03a90f378910206b6a28e8393178b6a5d0e0","src/api/ptr.rs":"8a793251bed6130dcfb2f1519ceaa18b751bbb15875928d0fb6deb5a5e07523a","src/api/ptr/gather_scatter.rs":"138b02b0fa1fdd785b95fc7048488be7e3ef277e0bc6ac5affb26af6a11d41a6","src/api/reductions.rs":"ae5baca81352ecd44526d6c30c0a1feeda475ec73ddd3c3ec6b14e944e5448ee","src/api/reductions/bitwise.rs":"8bf910ae226188bd15fc7e125f058cd2566b6186fcd0cd8fd020f352c39ce139","src/api/reductions/float_arithmetic.rs":"3997125f87c7bac07fffda3a1d814e0e6c77ca83099546a9e2fb8dc92231129f","src/api/reductions/integer_arithmetic.rs":"47471da1c5f859489680bb5d34ced3d3aa20081c16053a3af121a4496fcb57bf","src/api/reductions/mask.rs":"db83327a950e33a317f37fd33ca4e20c347fb415975ec024f3e23da8509425af","src/api/reductions/min_max.rs":"d40ccad10220ae5982785015bef92e4b0749583c2b060cad0aa4f92d99491c3b","src/api/select.rs":"a98e2ccf9fc6bdeed32d337c8675bc96c2fbe2cc34fbf149ad6047fb8e749774","src/api/shuffle.rs":"da58200790868c09659819322a489929a5b6e56c596ed07e6a44293ea02e7d09","src/api/shuffle1_dyn.rs":"bfea5a91905b31444e9ef7ca6eddb7a9606b7e22d3f71bb842eb2795a0346620","src/api/slice.rs":"ee87484e8af329547b9a5d4f2a69e8bed6ea10bbd96270d706083843d4eea2ac","src/api/slice/from_slice.rs":"53691dc9958dec4180004a42d140552b405e8cd875caa282e89af378dd63c8bc","src/api/slice/write_to_slice.rs":"3dd2e511af43dc6fa911dd0b12f6f00323e0acd1202a01365db400557d52a89b","src/api/swap_bytes.rs":"4a6792a2e49a77475e1b237592b4b2804dbddb79c474331acd0dd71b36934259","src/codegen.rs":"a29d38fa0a85eaf787fb49989e625bf64effd5f39c126fbb2a24be206d2a3917","src/codegen/bit_manip.rs":"17ecebcff1f080e712fea5eb51602a73f4201ed56a198220342c8eb55bb92692","src/codegen/llvm.rs":"b1f24237f61b7c5ddb8d47f3943aab79a95ce0e75af87ab2d1c88d842faffd39","src/codegen/math.rs":"35f96e37a78fcf0cdb02146b7f27a45108fe06a37fc2a54d8851ce131a326178","src/codegen/math/float.rs":"dd86c0449e576c83b719700962ac017c332987fac08d91f2b7a2b1b883598170","src/codegen/math/float/abs.rs":"f56e2b4b8055ea861c1f5cbc6b6e1d8e7e5af163b62c13574ddee4e09513bfbc","src/codegen/math/float/cos.rs":"ef3b511a24d23045b310315e80348a9b7fedb576fc2de52d74290616a0abeb2a","src/codegen/math/float/cos_pi.rs":"4e7631a5d73dac21531e09ef1802d1180f8997509c2c8fa9f67f322194263a97","src/codegen/math/float/exp.rs":"61b691598c41b5622f24e4320c1bdd08701e612a516438bdddcc728fc3405c8c","src/codegen/math/float/ln.rs":"46b718b1ba8c9d99e1ad40f53d20dfde08a3063ca7bd2a9fdd6698e060da687e","src/codegen/math/float/macros.rs":"dd42135fff13f9aca4fd3a1a4e14c7e6c31aadc6d817d63b0d2fb9e62e062744","src/codegen/math/float/mul_add.rs":"a37bf764345d4b1714f97e83897b7cf0855fc2811704bcbc0012db91825339e1","src/codegen/math/float/mul_adde.rs":"c75702bfcb361de45964a93caf959a695ef2376bd069227600b8c6872665c755","src/codegen/math/float/powf.rs":"642346e982bc4c39203de0864d2149c4179cd7b21cf67a2951687932b4675872","src/codegen/math/float/sin.rs":"9d68164c90cdca6a85155040cdac42e27342ebe0b925273ef1593df721af4258","src/codegen/math/float/sin_cos_pi.rs":"9be02ad48585a1e8d99129382fbffbaed47852f15459256a708850b6b7a75405","src/codegen/math/float/sin_pi.rs":"9890347905b4d4a3c7341c3eb06406e46e60582bcf6960688bd727e5dadc6c57","src/codegen/math/float/sqrt.rs":"e3c60dcfb0c6d2fc62adabcc931b2d4040b83cab294dea36443fb4b89eb79e34","src/codegen/math/float/sqrte.rs":"f0f4ef9eb475ae41bcc7ec6a95ad744ba6b36925faa8b2c2814004396d196b63","src/codegen/pointer_sized_int.rs":"a70697169c28218b56fd2e8d5353f2e00671d1150d0c8cef77d613bdfacd84cb","src/codegen/reductions.rs":"645e2514746d01387ddd07f0aa4ffd8430cc9ab428d4fb13773ea319fa25dd95","src/codegen/reductions/mask.rs":"8f1afe6aabf096a3278e1fc3a30f736e04aa8b9ce96373cee22162d18cfe2702","src/codegen/reductions/mask/aarch64.rs":"cba6e17603d39795dcfe8339b6b7d8714c3e162a1f0a635979f037aa24fe4206","src/codegen/reductions/mask/arm.rs":"9447904818aa2c7c25d0963eead452a639a11ca7dbd6d21eedbfcaade07a0f33","src/codegen/reductions/mask/fallback.rs":"7a0ef9f7fd03ae318b495b95e121350cd61caffc5cc6ee17fabf130d5d933453","src/codegen/reductions/mask/fallback_impl.rs":"76547f396e55ef403327c77c314cf8db8c7a5c9b9819bfb925abeacf130249e5","src/codegen/reductions/mask/x86.rs":"4c0457b6276f9809223590092a4c77e73812330326cdabd28df06820de10a310","src/codegen/reductions/mask/x86/avx.rs":"b4913d87844c522903641cbbf10db4551addb1ce5e9e78278e21612fa65c733b","src/codegen/reductions/mask/x86/avx2.rs":"677aed3f056285285daa3adff8bc65e739630b4424defa6d9665e160f027507e","src/codegen/reductions/mask/x86/sse.rs":"5a827c6f8e1074e324f6e4c778942badb6c09d747a7142de01cadec1240b3428","src/codegen/reductions/mask/x86/sse2.rs":"bc38e6c31cb4b3d62147eba6cac264e519e2a48e0f7ce9010cfa9ef0cf0ec9fd","src/codegen/shuffle.rs":"99a0b52c2470097b028af134221099baba383446a01c7dc3ae560209880bcdb7","src/codegen/shuffle1_dyn.rs":"abbc95305dad815ab2ded3e8357791bcff080414668b55a4d397558a1d202d01","src/codegen/swap_bytes.rs":"1d6cdc716eadddc92b4fd506b2445a821caa8dc00860447de09d7ebd69c2087f","src/codegen/v128.rs":"94226b31ec403d18d9d2fe06713f147c9c79e9b5f9105089088266313f843185","src/codegen/v16.rs":"ddec4ffb66b6f7aaffb9a1780c5ddba82557abd74f45073d335047e04cf74924","src/codegen/v256.rs":"6b63917f0444118d6b1595bff2045e59b97c4d24012bd575f69f1f0efc5a0241","src/codegen/v32.rs":"3477b3c5540aed86e61e2f5807dd31db947413cec9181c587d93ed6ec74f0eba","src/codegen/v512.rs":"5854f99d3aabc4cd42b28a20d9ce447756dc2ba024a409a69b6a8ae1f1842fc5","src/codegen/v64.rs":"e9e89caebfe63d10c0cbca61e4dfdba3b7e02ee0989170f80beed23237ddd950","src/codegen/vPtr.rs":"711c753a08d53a2879c4fb87a0762c46ce4e34c22f0ca88d2e4c557a0f679969","src/codegen/vSize.rs":"eeee9858749aa82142b27bc120d1989bb74a6b82e1e4efbbeaccc9634dc9acfc","src/lib.rs":"b842b5e47008b9bd59af4d2e309b84204d90a53d36595684082adc46b6934987","src/masks.rs":"be05e923ac58fe6eb61311561b5583cd306574f206dc09fe8e3c7de3dd0c1433","src/sealed.rs":"ae7fdeaf5d84cd7710ed730ca72ca7eaba93df6cb0acb183e5c0a7327acf197f","src/testing.rs":"1d3a7862ef625e235a5734ad7204e68d350f902c0695182b1f08a0552432416e","src/testing/macros.rs":"6378856d7a40ba5ec5c7c0dad6327d79f0c77266921c24296d10aed6c68e9b98","src/testing/utils.rs":"5ec6a47b836f364ec6dede19750a19eaac704162327d03041eb0f007d5f8d75c","src/v128.rs":"16cf9a8e7156b899ee9b9cd3f2dba9d13ec63289bea8c3ee9ae2e43ad9510288","src/v16.rs":"cb6465cf1e00bf530183af1819b9fe3d7eec978f8765d5e85d9b58a39a4b4045","src/v256.rs":"fe235017da18c7f3c361831c60e3173ad304d8ea1e95d64ebebc79da2d708511","src/v32.rs":"145d347855bac59b2de6508f9e594654e6c330423af9edc0e2ac8f4d1abdf45e","src/v512.rs":"f372f277f3e62eb5c945bb1c460333fdb17b6974fcc876633788ff53bded9599","src/v64.rs":"0b8079881b71575e3414be0b7f8f7eaba65281ba6732f2b2f61f73e95b6f48f7","src/vPtr.rs":"8b3e433d487180bb4304ff71245ecad90f0010f43e139a72027b672abe58facc","src/vSize.rs":"eda5aa020706cbf94d15bada41a0c2a35fc8f3f37cb7c2cd6f34d201399a495e","tests/endianness.rs":"7db22078f31fe1421fc2d21f2e6b9df5eb0bdc99c10f6985d3a74c0df8f205dc"},"package":null}
-\ No newline at end of file
-diff --git third_party/rust/packed_simd/.travis.yml third_party/rust/packed_simd/.travis.yml
-index 8d8ed54ab737..be3fb2369341 100644
---- third_party/rust/packed_simd/.travis.yml
-+++ third_party/rust/packed_simd/.travis.yml
-@@ -1,192 +1,129 @@
- language: rust
--sudo: false
- rust: nightly
-+os: linux
-+dist: focal
-
- stages:
- - tools
-- - linux-tier1
-- - osx-tier1
-- - osx-tier2
-- - linux-tier2
-- - android
-+ - build-test-verify # Passes full test suite, permit no regressions (unless it's rustup :/)
-+ - 32bit-tier1
-+ - 64bit-tier2
-+ - 32bit-tier2
-
--matrix:
-- fast_finish: true
-+jobs:
-+ fast_finish: true
- include:
- # Android:
-- - env: TARGET=x86_64-linux-android NOVERIFY=1
-+ - env: TARGET=x86_64-linux-android
- name: "x86_64-unknown-linux-android + SSE2"
-- stage: android
-+ stage: build-test-verify
- - env: TARGET=arm-linux-androideabi
- name: "arm-linux-androideabi"
-- stage: android
-+ stage: build-test-verify
- - env: TARGET=arm-linux-androideabi RUSTFLAGS="-C target-feature=+v7,+neon"
- name: "arm-linux-androideabi + NEON"
-- stage: android
-- - env: TARGET=aarch64-linux-android
-- name: "aarch64-unknown-linux-android"
-- stage: android
-- - env: TARGET=aarch64-linux-android RUSTFLAGS="-C target-feature=+neon"
-- name: "aarch64-unknown-linux-android + NEON"
-- stage: android
-+ stage: build-test-verify
-+ - name: "aarch64-unknown-linux-android + NEON"
-+ env: TARGET=aarch64-linux-android RUSTFLAGS="-C target-feature=+neon"
-+ stage: build-test-verify
- - env: TARGET="thumbv7neon-linux-androideabi"
- name: "thumbv7neon-linux-androideabi"
-- stage: android
-+ stage: 32bit-tier2
- # Linux:
- - env: TARGET=i586-unknown-linux-gnu
- name: "i586-unknown-linux-gnu"
-- stage: linux-tier2
-+ stage: 32bit-tier2
- - env: TARGET=i586-unknown-linux-gnu RUSTFLAGS="-C target-feature=+sse"
- name: "i586-unknown-linux-gnu + SSE"
-- stage: linux-tier2
-+ stage: 32bit-tier2
- - env: TARGET=i586-unknown-linux-gnu RUSTFLAGS="-C target-feature=+sse2"
- name: "i586-unknown-linux-gnu + SSE2"
-- stage: linux-tier2
-+ stage: 32bit-tier2
- - env: TARGET=i686-unknown-linux-gnu
- name: "i686-unknown-linux-gnu + SSE2"
-- stage: linux-tier1
-+ stage: 32bit-tier1
- - env: TARGET=i686-unknown-linux-gnu RUSTFLAGS="-C target-feature=+sse4.2"
- name: "i686-unknown-linux-gnu + SSE4.2"
-- stage: linux-tier1
-+ stage: 32bit-tier1
- - env: TARGET=i686-unknown-linux-gnu RUSTFLAGS="-C target-feature=+avx2"
- name: "i686-unknown-linux-gnu + AVX2"
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu
-- name: "x86_64-unknown-linux-gnu + SSE2"
-- install: rustup component add rustfmt-preview
-- stage: linux-tier1
-+ stage: 32bit-tier1
- - env: TARGET=x86_64-unknown-linux-gnu RUSTFLAGS="-C target-feature=+sse4.2"
- name: "x86_64-unknown-linux-gnu + SSE4.2"
- install: rustup component add rustfmt-preview
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu RUSTFLAGS="-C target-feature=+avx"
-- name: "x86_64-unknown-linux-gnu + AVX"
-- install: rustup component add rustfmt-preview
-- stage: linux-tier1
-+ stage: build-test-verify
- - env: TARGET=x86_64-unknown-linux-gnu RUSTFLAGS="-C target-feature=+avx2"
- name: "x86_64-unknown-linux-gnu + AVX2"
- install: rustup component add rustfmt-preview
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu-emulated
-- name: "Intel SDE + SSE2"
-- install: true
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu-emulated RUSTFLAGS="-C target-feature=+sse4.2"
-- name: "Intel SDE + SSE4.2"
-- install: true
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu-emulated RUSTFLAGS="-C target-feature=+avx"
-- name: "Intel SDE + AVX"
-- install: true
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu-emulated RUSTFLAGS="-C target-feature=+avx2"
-- name: "Intel SDE + AVX2"
-- install: true
-- stage: linux-tier1
-- - env: TARGET=x86_64-unknown-linux-gnu-emulated RUSTFLAGS="-C target-feature=+avx-512f"
-- name: "Intel SDE + AVX-512"
-- install: true
-- stage: linux-tier1
-- - env: TARGET=arm-unknown-linux-gnueabi
-- name: "arm-unknown-linux-gnueabi"
-- stage: linux-tier2
-+ stage: build-test-verify
- - env: TARGET=arm-unknown-linux-gnueabi RUSTFLAGS="-C target-feature=+v7,+neon"
- name: "arm-unknown-linux-gnueabi + NEON"
-- stage: linux-tier2
-+ stage: build-test-verify
- - env: TARGET=arm-unknown-linux-gnueabihf
- name: "arm-unknown-linux-gnueabihf"
-- stage: linux-tier2
-+ stage: build-test-verify
- - env: TARGET=arm-unknown-linux-gnueabihf RUSTFLAGS="-C target-feature=+v7,+neon"
- name: "arm-unknown-linux-gnueabihf + NEON"
-- stage: linux-tier2
-+ stage: build-test-verify
- - env: TARGET=armv7-unknown-linux-gnueabihf
- name: "armv7-unknown-linux-gnueabihf"
-- stage: linux-tier2
-+ stage: build-test-verify
- - env: TARGET=armv7-unknown-linux-gnueabihf RUSTFLAGS="-C target-feature=+neon"
- name: "armv7-unknown-linux-gnueabihf + NEON"
-- stage: linux-tier2
-+ stage: build-test-verify
- - env: TARGET="thumbv7neon-unknown-linux-gnueabihf"
- name: "thumbv7neon-unknown-linux-gnueabihf"
-- stage: linux-tier2
-- - env: TARGET=aarch64-unknown-linux-gnu
-- name: "aarch64-unknown-linux-gnu"
-- stage: linux-tier2
-- - env: TARGET=aarch64-unknown-linux-gnu RUSTFLAGS="-C target-feature=+neon"
-- name: "aarch64-unknown-linux-gnu + NEON"
-- stage: linux-tier2
-+ stage: 32bit-tier2
-+ - name: "aarch64-unknown-linux-gnu + NEON"
-+ env: TARGET=aarch64-unknown-linux-gnu RUSTFLAGS="-C target-feature=+neon"
-+ stage: build-test-verify
- - env: TARGET=mips-unknown-linux-gnu
- name: "mips-unknown-linux-gnu"
-- stage: linux-tier2
-+ stage: 32bit-tier2
- - env: TARGET=mipsel-unknown-linux-musl
- name: "mipsel-unknown-linux-musl"
-- stage: linux-tier2
-+ stage: 32bit-tier2
- - env: TARGET=mips64-unknown-linux-gnuabi64
- name: "mips64-unknown-linux-gnuabi64"
-- stage: linux-tier2
-+ stage: 64bit-tier2
- - env: TARGET=mips64el-unknown-linux-gnuabi64
- name: "mips64el-unknown-linux-gnuabi64"
-- stage: linux-tier2
-+ stage: 64bit-tier2
- # FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/18
- # env: TARGET=mips64el-unknown-linux-gnuabi64 RUSTFLAGS="-C target-feature=+msa -C target-cpu=mips64r6"
- - env: TARGET=powerpc-unknown-linux-gnu
- name: "powerpc-unknown-linux-gnu"
-- stage: linux-tier2
-+ stage: 32bit-tier2
- - env: TARGET=powerpc64-unknown-linux-gnu
- name: "powerpc64-unknown-linux-gnu"
-- stage: linux-tier2
-- - env: TARGET=powerpc64le-unknown-linux-gnu
-- name: "powerpc64le-unknown-linux-gnu"
-- stage: linux-tier2
-- - env: TARGET=powerpc64le-unknown-linux-gnu RUSTFLAGS="-C target-feature=+altivec"
-- name: "powerpc64le-unknown-linux-gnu + ALTIVEC"
-- stage: linux-tier2
-- - env: TARGET=powerpc64le-unknown-linux-gnu RUSTFLAGS="-C target-feature=+vsx"
-- name: "powerpc64le-unknown-linux-gnu + VSX"
-- stage: linux-tier2
-- - env: TARGET=s390x-unknown-linux-gnu
-- name: "s390x-unknown-linux-gnu"
-- stage: linux-tier2
-+ stage: 64bit-tier2
-+ - name: "powerpc64le-unknown-linux-gnu"
-+ env: TARGET=powerpc64le-unknown-linux-gnu
-+ stage: build-test-verify
-+ - name: "powerpc64le-unknown-linux-gnu + ALTIVEC"
-+ env: TARGET=powerpc64le-unknown-linux-gnu RUSTFLAGS="-C target-feature=+altivec"
-+ stage: build-test-verify
-+ - name: "powerpc64le-unknown-linux-gnu + VSX"
-+ env: TARGET=powerpc64le-unknown-linux-gnu RUSTFLAGS="-C target-feature=+vsx"
-+ stage: build-test-verify
-+ - name: "s390x-unknown-linux-gnu"
-+ env: TARGET=s390x-unknown-linux-gnu
-+ stage: 64bit-tier2
- - env: TARGET=sparc64-unknown-linux-gnu
- name: "sparc64-unknown-linux-gnu"
-- stage: linux-tier2
-+ stage: 64bit-tier2
- # WebAssembly:
- - env: TARGET=wasm32-unknown-unknown
- name: "wasm32-unknown-unknown"
-- stage: osx-tier1 # For now
-+ stage: 32bit-tier2
- # MacOSX:
-- - os: osx
-- env: TARGET=i686-apple-darwin
-- name: "i686-apple-darwin + SSE2"
-- script: ci/run.sh
-- osx_image: xcode10
-- stage: osx-tier1
-- - os: osx
-- env: TARGET=i686-apple-darwin RUSTFLAGS="-C target-feature=+sse4.2"
-- name: "i686-apple-darwin + SSE4.2"
-- script: ci/run.sh
-- osx_image: xcode10
-- stage: osx-tier1
-- # Travis-CI OSX build bots do not support AVX2:
-- - os: osx
-- env: TARGET=i686-apple-darwin RUSTFLAGS="-C target-feature=+avx"
-- name: "i686-apple-darwin + AVX"
-- script: ci/run.sh
-- osx_image: xcode10
-- stage: osx-tier1
-- - os: osx
-- env: TARGET=x86_64-apple-darwin
-- name: "x86_64-apple-darwin + SSE2"
-- install: true
-- script: ci/run.sh
-- osx_image: xcode10
-- stage: osx-tier1
- - os: osx
- env: TARGET=x86_64-apple-darwin RUSTFLAGS="-C target-feature=+sse4.2"
- name: "x86_64-apple-darwin + SSE4.2"
- install: true
- script: ci/run.sh
- osx_image: xcode10
-- stage: osx-tier1
-+ stage: build-test-verify
- # Travis-CI OSX build bots do not support AVX2:
- - os: osx
- env: TARGET=x86_64-apple-darwin RUSTFLAGS="-C target-feature=+avx"
-@@ -194,7 +131,7 @@ matrix:
- install: true
- script: ci/run.sh
- osx_image: xcode10
-- stage: osx-tier1
-+ stage: build-test-verify
- # *BSDs:
- #- env: TARGET=i686-unknown-freebsd NORUN=1
- # script: ci/run.sh
-@@ -206,81 +143,75 @@ matrix:
- #- env: TARGET=x86_64-sun-solaris NORUN=1
- # script: ci/run.sh
- # iOS:
-- - os: osx
-- env: TARGET=i386-apple-ios
-- name: "i386-apple-ios"
-- script: ci/run.sh
-- osx_image: xcode9.4
-- stage: osx-tier2
- - os: osx
- env: TARGET=x86_64-apple-ios
- name: "x86_64-apple-ios + SSE2"
- script: ci/run.sh
- osx_image: xcode9.4
-- stage: osx-tier2
-- - os: osx
-- env: TARGET=armv7-apple-ios NORUN=1
-- name: "armv7-apple-ios [Build only]"
-- script: ci/run.sh
-+ stage: 64bit-tier2
-+ - name: "aarch64-apple-ios + NEON"
-+ env: TARGET=aarch64-apple-ios RUSTFLAGS="-C target-feature=+neon"
-+ os: osx
- osx_image: xcode9.4
-- stage: osx-tier2
-- - os: osx
-- env: TARGET=aarch64-apple-ios NORUN=1
-- name: "aarch64-apple-ios [Build only]"
- script: ci/run.sh
-- osx_image: xcode9.4
-- stage: osx-tier2
-+ stage: 64bit-tier2
- # BENCHMARKS:
- - name: "Benchmarks - x86_64-unknown-linux-gnu"
- install: TARGET=x86_64-unknown-linux-gnu ./ci/setup_benchmarks.sh
-- script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=core_arch,ispc,sleef-sys ci/benchmark.sh
-+ # FIXME: Use `core_arch,sleef-sys` features once they works again
-+ script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=ispc ci/benchmark.sh
- stage: tools
- - name: "Benchmarks - x86_64-apple-darwin"
- install: TARGET=x86_64-apple-darwin ./ci/setup_benchmarks.sh
-- script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=core_arch,ispc,sleef-sys ci/benchmark.sh
-+ # FIXME: Use `core_arch,sleef-sys` features once they works again
-+ script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=ispc ci/benchmark.sh
- os: osx
- osx_image: xcode9.4
- stage: tools
- # TOOLS:
- - name: "Documentation"
-- install: cargo install mdbook
-+ before_install:
-+ - sudo add-apt-repository -y ppa:deadsnakes/ppa
-+ - sudo apt-get update -y
-+ - sudo apt-get install -y python3.9
-+ install:
-+ - cargo install mdbook
- script: ci/dox.sh
- stage: tools
- - name: "rustfmt"
- install: true
-- before_script: rustup component add rustfmt-preview
-- script: ci/all.sh check_fmt || true
-+ script: |
-+ if rustup component add rustfmt-preview ; then
-+ ci/all.sh check_fmt || true
-+ fi
- stage: tools
- - name: "clippy"
- install: true
-- before_script: rustup component add clippy-preview
-- script: ci/all.sh clippy
-+ script: |
-+ if rustup component add clippy-preview ; then
-+ ci/all.sh clippy
-+ fi
- stage: tools
-
- allow_failures:
- # FIXME: ISPC cannot be found?
- - name: "Benchmarks - x86_64-apple-darwin"
-- # FIXME: TBD
-- - env: TARGET=powerpc-unknown-linux-gnu
-- - env: TARGET=powerpc64-unknown-linux-gnu
-- - env: TARGET=powerpc64le-unknown-linux-gnu
-- - env: TARGET=powerpc64le-unknown-linux-gnu RUSTFLAGS="-C target-feature=+altivec"
-- - env: TARGET=powerpc64le-unknown-linux-gnu RUSTFLAGS="-C target-feature=+vsx"
-+ # FIXME: i686 fails in inlining, apparently
-+ - stage: 32bit-tier1
- #- env: TARGET=i686-unknown-freebsd NORUN=1
- #- env: TARGET=x86_64-unknown-freebsd NORUN=1
- #- env: TARGET=x86_64-unknown-netbsd NORUN=1
- #- env: TARGET=x86_64-sun-solaris NORUN=1
-
- # FIXME: TBD
-- - env: TARGET=arm-linux-androideabi
-- - env: TARGET=arm-linux-androideabi RUSTFLAGS="-C target-feature=+v7,+neon"
-- - env: TARGET=aarch64-linux-android
-- - env: TARGET=aarch64-linux-android RUSTFLAGS="-C target-feature=+neon"
-+ - stage: 64bit-tier2
-+ - stage: 32bit-tier2
-
- # FIXME: iOS
- # https://github.com/rust-lang-nursery/packed_simd/issues/26
-- - env: TARGET=i386-apple-ios
- - env: TARGET=x86_64-apple-ios
-+ # Is this related to the above? Mysterious test failure
-+ - name: "aarch64-apple-ios + NEON"
-
- # FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/182
- - env: TARGET=arm-unknown-linux-gnueabi RUSTFLAGS="-C target-feature=+v7,+neon"
-diff --git third_party/rust/packed_simd/Cargo.toml third_party/rust/packed_simd/Cargo.toml
-index 3db9354c9407..70bbf26ed259 100644
---- third_party/rust/packed_simd/Cargo.toml
-+++ third_party/rust/packed_simd/Cargo.toml
-@@ -1,6 +1,6 @@
- [package]
- name = "packed_simd"
--version = "0.3.3"
-+version = "0.3.4"
- authors = ["Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>"]
- description = "Portable Packed SIMD vectors"
- documentation = "https://docs.rs/crate/packed_simd/"
-@@ -21,8 +21,8 @@ is-it-maintained-open-issues = { repository = "rust-lang-nursery/packed_simd" }
- maintenance = { status = "experimental" }
-
- [dependencies]
--cfg-if = "^0.1.6"
--core_arch = { version = "^0.1.3", optional = true }
-+cfg-if = "0.1.10"
-+core_arch = { version = "0.1.5", optional = true }
-
- [features]
- default = []
-@@ -31,12 +31,12 @@ libcore_neon = []
-
- [dev-dependencies]
- paste = "^0.1.3"
--arrayvec = { version = "^0.4", default-features = false }
-+arrayvec = { version = "^0.5", default-features = false }
-
- [target.'cfg(target_arch = "x86_64")'.dependencies.sleef-sys]
--version = "^0.1.2"
-+version = "0.1.2"
- optional = true
-
- [target.wasm32-unknown-unknown.dev-dependencies]
--wasm-bindgen = "=0.2.19"
--wasm-bindgen-test = "=0.2.19"
-\ No newline at end of file
-+wasm-bindgen = "=0.2.52"
-+wasm-bindgen-test = "=0.3.2"
-diff --git third_party/rust/packed_simd/readme.md third_party/rust/packed_simd/README.md
-similarity index 54%
-rename from third_party/rust/packed_simd/readme.md
-rename to third_party/rust/packed_simd/README.md
-index 3b27a2bba0d6..ad4f3f27093f 100644
---- third_party/rust/packed_simd/readme.md
-+++ third_party/rust/packed_simd/README.md
-@@ -4,16 +4,14 @@
-
- [![Travis-CI Status]][travis] [![Appveyor Status]][appveyor] [![Latest Version]][crates.io] [![docs]][master_docs]
-
--> This aims to be a 100% conforming implementation of Rust RFC 2366 for stabilization.
--
--**WARNING**: this crate only supports the most recent nightly Rust toolchain.
-+**WARNING**: this crate only supports the most recent nightly Rust toolchain
-+and will be superceded by [stdsimd](https://github.com/rust-lang/stdsimd).
-
- ## Documentation
-
- * [API docs (`master` branch)][master_docs]
- * [Performance guide][perf_guide]
--* [API docs (`docs.rs`)][docs.rs]: **CURRENTLY DOWN** due to
-- https://github.com/rust-lang-nursery/packed_simd/issues/110
-+* [API docs (`docs.rs`)][docs.rs]
- * [RFC2366 `std::simd`][rfc2366]: - contains motivation, design rationale,
- discussion, etc.
-
-@@ -39,17 +37,6 @@ Most of the examples come with both a scalar and a vectorized implementation.
- vector type as those of another vector type safely by just using the
- `.into_bits()` method.
-
--* `core_arch` (default: disabled): enable this feature to recompile `core::arch`
-- for the target-features enabled. `packed_simd` includes optimizations for some
-- target feature combinations that are enabled by this feature. Note, however,
-- that this is an unstable dependency, that rustc might break at any time.
--
--* `sleef-sys` (default: disabled - `x86_64` only): internally uses the [SLEEF]
-- short-vector math library when profitable via the [`sleef-sys`][sleef_sys]
-- crate. [SLEEF] is licensed under the [Boost Software License
-- v1.0][boost_license], an extremely permissive license, and can be statically
-- linked without issues.
--
- ## Performance
-
- The following [ISPC] examples are also part of `packed_simd`'s
-@@ -75,60 +62,40 @@ slowdown:
-
- ## Platform support
-
--The following table describes the supported platforms: `build` shows whether the
--library compiles without issues for a given target, while `run` shows whether
--the full testsuite passes on the target.
--
--| Linux targets: | build | run |
--|-----------------------------------|-----------|---------|
--| `i586-unknown-linux-gnu` | ✓ | ✓ |
--| `i686-unknown-linux-gnu` | ✓ | ✓ |
--| `x86_64-unknown-linux-gnu` | ✓ | ✓ |
--| `arm-unknown-linux-gnueabi` | ✗ | ✗ |
--| `arm-unknown-linux-gnueabihf` | ✓ | ✓ |
--| `armv7-unknown-linux-gnueabi` | ✓ | ✓ |
--| `aarch64-unknown-linux-gnu` | ✓ | ✓ |
--| `mips-unknown-linux-gnu` | ✓ | ✓ |
--| `mipsel-unknown-linux-musl` | ✓ | ✓ |
--| `mips64-unknown-linux-gnuabi64` | ✓ | ✓ |
--| `mips64el-unknown-linux-gnuabi64` | ✓ | ✓ |
--| `powerpc-unknown-linux-gnu` | ✗ | ✗ |
--| `powerpc64-unknown-linux-gnu` | ✗ | ✗ |
--| `powerpc64le-unknown-linux-gnu` | ✗ | ✗ |
--| `s390x-unknown-linux-gnu` | ✓ | ✓* |
--| `sparc64-unknown-linux-gnu` | ✓ | ✓* |
--| `thumbv7neon-unknown-linux-gnueabihf` | ✓ | ✓ |
--| **MacOSX targets:** | **build** | **run** |
--| `x86_64-apple-darwin` | ✓ | ✓ |
--| `i686-apple-darwin` | ✓ | ✓ |
--| **Windows targets:** | **build** | **run** |
--| `x86_64-pc-windows-msvc` | ✓ | ✓ |
--| `i686-pc-windows-msvc` | ✓ | ✓ |
--| `x86_64-pc-windows-gnu` | ✗ | ✗ |
--| `i686-pc-windows-gnu` | ✗ | ✗ |
--| **WebAssembly targets:** | **build** | **run** |
--| `wasm32-unknown-unknown` | ✓ | ✓ |
--| **Android targets:** | **build** | **run** |
--| `x86_64-linux-android` | ✓ | ✓ |
--| `arm-linux-androideabi` | ✓ | ✓ |
--| `aarch64-linux-android` | ✓ | ✗ |
--| `thumbv7neon-linux-androideabi` | ✓ | ✓ |
--| **iOS targets:** | **build** | **run** |
--| `i386-apple-ios` | ✓ | ✗ |
--| `x86_64-apple-ios` | ✓ | ✗ |
--| `armv7-apple-ios` | ✓ | ✗** |
--| `aarch64-apple-ios` | ✓ | ✗** |
--| **xBSD targets:** | **build** | **run** |
--| `i686-unknown-freebsd` | ✗ | ✗** |
--| `x86_64-unknown-freebsd` | ✗ | ✗** |
--| `x86_64-unknown-netbsd` | ✗ | ✗** |
--| **Solaris targets:** | **build** | **run** |
--| `x86_64-sun-solaris` | ✗ | ✗** |
--
--[*] most of the test suite passes correctly on these platform but
--there are correctness bugs open in the issue tracker.
--
--[**] it is currently not easily possible to run these platforms on CI.
-+The following table describes the supported platforms: `build` shows whether
-+the library compiles without issues for a given target, while `run` shows
-+whether the test suite passes for a given target.
-+
-+| **Linux** | **build** | **run** |
-+|---------------------------------------|-----------|---------|
-+| `i586-unknown-linux-gnu` | ✓ | ✗ |
-+| `i686-unknown-linux-gnu` | ✓ | ✗ |
-+| `x86_64-unknown-linux-gnu` | ✓ | ✓ |
-+| `arm-unknown-linux-gnueabi` | ✗ | ✗ |
-+| `arm-unknown-linux-gnueabihf` | ✓ | ✓ |
-+| `armv7-unknown-linux-gnueabi` | ✓ | ✓ |
-+| `aarch64-unknown-linux-gnu` | ✓ | ✓ |
-+| `mips-unknown-linux-gnu` | ✓ | ✗ |
-+| `mipsel-unknown-linux-musl` | ✓ | ✗ |
-+| `mips64-unknown-linux-gnuabi64` | ✓ | ✗ |
-+| `mips64el-unknown-linux-gnuabi64` | ✓ | ✗ |
-+| `powerpc-unknown-linux-gnu` | ✗ | ✗ |
-+| `powerpc64-unknown-linux-gnu` | ✗ | ✗ |
-+| `powerpc64le-unknown-linux-gnu` | ✓ | ✓ |
-+| `s390x-unknown-linux-gnu` | ✗ | ✗ |
-+| `sparc64-unknown-linux-gnu` | ✓ | ✗ |
-+| `thumbv7neon-unknown-linux-gnueabihf` | ✓ | ✓ |
-+| **MacOSX** | **build** | **run** |
-+| `x86_64-apple-darwin` | ✓ | ✓ |
-+| **Android** | **build** | **run** |
-+| `x86_64-linux-android` | ✓ | ✓ |
-+| `arm-linux-androideabi` | ✓ | ✓ |
-+| `aarch64-linux-android` | ✓ | ✓ |
-+| `thumbv7neon-linux-androideabi` | ✗ | ✗ |
-+| **iOS** | **build** | **run** |
-+| `x86_64-apple-ios` | ✓ | ✗ |
-+| `aarch64-apple-ios` | ✓ | ✗ |
-+
-
- ## Machine code verification
-
-@@ -162,8 +129,8 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
- for inclusion in `packed_simd` by you, as defined in the Apache-2.0 license, shall be
- dual licensed as above, without any additional terms or conditions.
-
--[travis]: https://travis-ci.org/rust-lang-nursery/packed_simd
--[Travis-CI Status]: https://travis-ci.org/rust-lang-nursery/packed_simd.svg?branch=master
-+[travis]: https://travis-ci.com/rust-lang-nursery/packed_simd
-+[Travis-CI Status]: https://travis-ci.com/rust-lang-nursery/packed_simd.svg?branch=master
- [appveyor]: https://ci.appveyor.com/project/gnzlbg/packed-simd
- [Appveyor Status]: https://ci.appveyor.com/api/projects/status/hd7v9dvr442hgdix?svg=true
- [Latest Version]: https://img.shields.io/crates/v/packed_simd.svg
-diff --git third_party/rust/packed_simd/build.rs third_party/rust/packed_simd/build.rs
-index 85639ff9d085..5958b9b7856e 100644
---- third_party/rust/packed_simd/build.rs
-+++ third_party/rust/packed_simd/build.rs
-@@ -1,5 +1,5 @@
- fn main() {
-- println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
-+ println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
- let target = std::env::var("TARGET")
- .expect("TARGET environment variable not defined");
- if target.contains("neon") {
-diff --git third_party/rust/packed_simd/ci/all.sh third_party/rust/packed_simd/ci/all.sh
-index 273562d4a9bb..55a1fa2efefe 100755
---- third_party/rust/packed_simd/ci/all.sh
-+++ third_party/rust/packed_simd/ci/all.sh
-@@ -21,7 +21,7 @@ cargo_fmt() {
- }
-
- cargo_clippy() {
-- cargo clippy --all -- -D clippy::pedantic
-+ cargo clippy --all -- -D clippy::perf
- }
-
- CMD="-1"
-diff --git third_party/rust/packed_simd/ci/docker/aarch64-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/aarch64-unknown-linux-gnu/Dockerfile
-index 68261a2f033d..41ff4729ac59 100644
---- third_party/rust/packed_simd/ci/docker/aarch64-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/aarch64-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabi/Dockerfile third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabi/Dockerfile
-index cb4de6a57eaa..e1c591dd979a 100644
---- third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabi/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabi/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile
-index c7bd61f0a796..757b79e7ecc1 100644
---- third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile third_party/rust/packed_simd/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile
-index e01b87afdf56..253906293374 100644
---- third_party/rust/packed_simd/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/i586-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/i586-unknown-linux-gnu/Dockerfile
-index 857974a858f1..01093698f679 100644
---- third_party/rust/packed_simd/ci/docker/i586-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/i586-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc-multilib \
- libc6-dev \
-diff --git third_party/rust/packed_simd/ci/docker/i686-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/i686-unknown-linux-gnu/Dockerfile
-index 857974a858f1..01093698f679 100644
---- third_party/rust/packed_simd/ci/docker/i686-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/i686-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc-multilib \
- libc6-dev \
-diff --git third_party/rust/packed_simd/ci/docker/mips-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/mips-unknown-linux-gnu/Dockerfile
-index 4711cead372a..3bd471e87d4d 100644
---- third_party/rust/packed_simd/ci/docker/mips-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/mips-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
-
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc libc6-dev qemu-user ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile third_party/rust/packed_simd/ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile
-index 1422e8c80924..f26f1f38eb22 100644
---- third_party/rust/packed_simd/ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
-
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc libc6-dev qemu-user ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile third_party/rust/packed_simd/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile
-index d94deb5b2013..7d9f0bd99250 100644
---- third_party/rust/packed_simd/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
-
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc libc6-dev qemu-user ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/mipsel-unknown-linux-musl/Dockerfile third_party/rust/packed_simd/ci/docker/mipsel-unknown-linux-musl/Dockerfile
-index 40ac50675bd9..7488662ef281 100644
---- third_party/rust/packed_simd/ci/docker/mipsel-unknown-linux-musl/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/mipsel-unknown-linux-musl/Dockerfile
-@@ -16,10 +16,10 @@ RUN mkdir /toolchain
-
- # Note that this originally came from:
- # https://downloads.openwrt.org/snapshots/trunk/malta/generic/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2
--RUN curl -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
-+RUN curl -L https://ci-mirrors.rust-lang.org/libc/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
- tar xjf - -C /toolchain --strip-components=2
-
- ENV PATH=$PATH:/rust/bin:/toolchain/bin \
- CC_mipsel_unknown_linux_musl=mipsel-openwrt-linux-gcc \
- CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_MUSL_LINKER=mipsel-openwrt-linux-gcc \
-- CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_MUSL_RUNNER="qemu-mipsel -L /toolchain"
-\ No newline at end of file
-+ CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_MUSL_RUNNER="qemu-mipsel -L /toolchain"
-diff --git third_party/rust/packed_simd/ci/docker/powerpc-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/powerpc-unknown-linux-gnu/Dockerfile
-index 43b174ed87fc..80cfee8ab5b9 100644
---- third_party/rust/packed_simd/ci/docker/powerpc-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/powerpc-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
-
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc libc6-dev qemu-user ca-certificates \
-@@ -9,4 +9,5 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
-
- ENV CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_LINKER=powerpc-linux-gnu-gcc \
- CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc -cpu Vger -L /usr/powerpc-linux-gnu" \
-+ CC=powerpc-linux-gnu-gcc \
- OBJDUMP=powerpc-linux-gnu-objdump
-diff --git third_party/rust/packed_simd/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile
-index 7757ad28a42d..74031a2a3e6f 100644
---- third_party/rust/packed_simd/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
-
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
-diff --git third_party/rust/packed_simd/ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile
-index 0b0c214fdf1b..471a7d9651f7 100644
---- third_party/rust/packed_simd/ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
-
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc libc6-dev qemu-user ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/thumbv7neon-unknown-linux-gnueabihf/Dockerfile third_party/rust/packed_simd/ci/docker/thumbv7neon-unknown-linux-gnueabihf/Dockerfile
-index 696cb6c3fb52..588d23c65ae5 100644
---- third_party/rust/packed_simd/ci/docker/thumbv7neon-unknown-linux-gnueabihf/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/thumbv7neon-unknown-linux-gnueabihf/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- ca-certificates \
-diff --git third_party/rust/packed_simd/ci/docker/x86_64-unknown-linux-gnu/Dockerfile third_party/rust/packed_simd/ci/docker/x86_64-unknown-linux-gnu/Dockerfile
-index e6b000d0516e..ce5bb88e625d 100644
---- third_party/rust/packed_simd/ci/docker/x86_64-unknown-linux-gnu/Dockerfile
-+++ third_party/rust/packed_simd/ci/docker/x86_64-unknown-linux-gnu/Dockerfile
-@@ -1,4 +1,4 @@
--FROM ubuntu:17.10
-+FROM ubuntu:18.04
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- libc6-dev \
-diff --git third_party/rust/packed_simd/ci/dox.sh third_party/rust/packed_simd/ci/dox.sh
-index 1743366407e3..560eaadcc880 100755
---- third_party/rust/packed_simd/ci/dox.sh
-+++ third_party/rust/packed_simd/ci/dox.sh
-@@ -18,7 +18,10 @@ cp -r perf-guide/book target/doc/perf-guide
-
- # If we're on travis, not a PR, and on the right branch, publish!
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then
-- pip install ghp_import --install-option="--prefix=$HOME/.local"
-- $HOME/.local/bin/ghp-import -n target/doc
-+ python3 -vV
-+ pip -vV
-+ python3.9 -vV
-+ pip install ghp_import --user
-+ ghp-import -n target/doc
- git push -qf https://${GH_PAGES}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
- fi
-diff --git third_party/rust/packed_simd/ci/run.sh third_party/rust/packed_simd/ci/run.sh
-index 7bb825883680..428a5d890257 100755
---- third_party/rust/packed_simd/ci/run.sh
-+++ third_party/rust/packed_simd/ci/run.sh
-@@ -78,9 +78,11 @@ fi
-
- if [[ "${TARGET}" == "x86_64-unknown-linux-gnu" ]] || [[ "${TARGET}" == "x86_64-pc-windows-msvc" ]]; then
- # use sleef on linux and windows x86_64 builds
-- cargo_test_impl --release --features=into_bits,core_arch,sleef-sys
-+ # FIXME: Use `core_arch,sleef-sys` features once they works again
-+ cargo_test_impl --release --features=into_bits
- else
-- cargo_test_impl --release --features=into_bits,core_arch
-+ # FIXME: Use `core_arch` feature once it works again
-+ cargo_test_impl --release --features=into_bits
- fi
-
- # Verify code generation
-diff --git third_party/rust/packed_simd/ci/setup_benchmarks.sh third_party/rust/packed_simd/ci/setup_benchmarks.sh
-index ddc4765d5ceb..cd41a7851303 100755
---- third_party/rust/packed_simd/ci/setup_benchmarks.sh
-+++ third_party/rust/packed_simd/ci/setup_benchmarks.sh
-@@ -5,6 +5,3 @@ set -ex
- # Get latest ISPC binary for the target and put it in the path
- git clone https://github.com/gnzlbg/ispc-binaries
- cp ispc-binaries/ispc-${TARGET} ispc
--
--# Rust-bindgen requires RUSTFMT
--rustup component add rustfmt-preview
-diff --git third_party/rust/packed_simd/src/api.rs third_party/rust/packed_simd/src/api.rs
-index 9959a052ae96..4e9c4292e06c 100644
---- third_party/rust/packed_simd/src/api.rs
-+++ third_party/rust/packed_simd/src/api.rs
-@@ -1,5 +1,7 @@
- //! Implements the Simd<[T; N]> APIs
-
-+#[macro_use]
-+mod bitmask;
- crate mod cast;
- #[macro_use]
- mod cmp;
-@@ -39,7 +41,7 @@ crate mod into_bits;
-
- macro_rules! impl_i {
- ([$elem_ty:ident; $elem_n:expr]: $tuple_id:ident, $mask_ty:ident
-- | $ielem_ty:ident | $test_tt:tt | $($elem_ids:ident),*
-+ | $ielem_ty:ident, $ibitmask_ty:ident | $test_tt:tt | $($elem_ids:ident),*
- | From: $($from_vec_ty:ident),* | $(#[$doc:meta])*) => {
- impl_minimal_iuf!([$elem_ty; $elem_n]: $tuple_id | $ielem_ty | $test_tt
- | $($elem_ids),* | $(#[$doc])*);
-@@ -93,6 +95,7 @@ macro_rules! impl_i {
- );
- impl_cmp_partial_ord!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
- impl_cmp_ord!([$elem_ty; $elem_n]: $tuple_id | $test_tt | (0, 1));
-+ impl_bitmask!($tuple_id | $ibitmask_ty | (-1, 0) | $test_tt);
-
- test_select!($elem_ty, $mask_ty, $tuple_id, (1, 2) | $test_tt);
- test_cmp_partial_ord_int!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
-@@ -102,7 +105,7 @@ macro_rules! impl_i {
-
- macro_rules! impl_u {
- ([$elem_ty:ident; $elem_n:expr]: $tuple_id:ident, $mask_ty:ident
-- | $ielem_ty:ident | $test_tt:tt | $($elem_ids:ident),*
-+ | $ielem_ty:ident, $ibitmask_ty:ident | $test_tt:tt | $($elem_ids:ident),*
- | From: $($from_vec_ty:ident),* | $(#[$doc:meta])*) => {
- impl_minimal_iuf!([$elem_ty; $elem_n]: $tuple_id | $ielem_ty | $test_tt
- | $($elem_ids),* | $(#[$doc])*);
-@@ -155,6 +158,8 @@ macro_rules! impl_u {
- );
- impl_cmp_partial_ord!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
- impl_cmp_ord!([$elem_ty; $elem_n]: $tuple_id | $test_tt | (0, 1));
-+ impl_bitmask!($tuple_id | $ibitmask_ty | ($ielem_ty::max_value(), 0) |
-+ $test_tt);
-
- test_select!($elem_ty, $mask_ty, $tuple_id, (1, 2) | $test_tt);
- test_cmp_partial_ord_int!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
-@@ -222,7 +227,8 @@ macro_rules! impl_f {
- }
-
- macro_rules! impl_m {
-- ([$elem_ty:ident; $elem_n:expr]: $tuple_id:ident | $ielem_ty:ident
-+ ([$elem_ty:ident; $elem_n:expr]: $tuple_id:ident
-+ | $ielem_ty:ident, $ibitmask_ty:ident
- | $test_tt:tt | $($elem_ids:ident),* | From: $($from_vec_ty:ident),*
- | $(#[$doc:meta])*) => {
- impl_minimal_mask!(
-@@ -265,6 +271,7 @@ macro_rules! impl_m {
- [$elem_ty; $elem_n]: $tuple_id | $test_tt | (false, true)
- );
- impl_shuffle1_dyn!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
-+ impl_bitmask!($tuple_id | $ibitmask_ty | (true, false) | $test_tt);
-
- test_cmp_partial_ord_mask!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
- test_shuffle1_dyn_mask!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
-diff --git third_party/rust/packed_simd/src/api/bit_manip.rs third_party/rust/packed_simd/src/api/bit_manip.rs
-index 3d3c4eb8850a..6d8865706d3e 100644
---- third_party/rust/packed_simd/src/api/bit_manip.rs
-+++ third_party/rust/packed_simd/src/api/bit_manip.rs
-@@ -37,6 +37,7 @@ macro_rules! impl_bit_manip {
- paste::item_with_macros! {
- #[allow(overflowing_literals)]
- pub mod [<$id _bit_manip>] {
-+ #![allow(const_item_mutation)]
- use super::*;
-
- const LANE_WIDTH: usize = mem::size_of::<$elem_ty>() * 8;
-diff --git third_party/rust/packed_simd/src/api/bitmask.rs third_party/rust/packed_simd/src/api/bitmask.rs
-new file mode 100644
-index 000000000000..a06ff0fab1f4
---- /dev/null
-+++ third_party/rust/packed_simd/src/api/bitmask.rs
-@@ -0,0 +1,82 @@
-+//! Bitmask API
-+
-+macro_rules! impl_bitmask {
-+ ($id:ident | $ibitmask_ty:ident | ($set:expr, $clear:expr)
-+ | $test_tt:tt) => {
-+ impl $id {
-+ /// Creates a bitmask with the MSB of each vector lane.
-+ ///
-+ /// If the vector has less than 8 lanes, the bits that do not
-+ /// correspond to any vector lanes are cleared.
-+ #[inline]
-+ pub fn bitmask(self) -> $ibitmask_ty {
-+ unsafe { codegen::llvm::simd_bitmask(self.0) }
-+ }
-+ }
-+
-+ test_if! {
-+ $test_tt:
-+ paste::item! {
-+ #[cfg(not(any(
-+ // FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/210
-+ all(target_arch = "mips", target_endian = "big"),
-+ all(target_arch = "mips64", target_endian = "big"),
-+ target_arch = "sparc64",
-+ target_arch = "s390x",
-+ )))]
-+ pub mod [<$id _bitmask>] {
-+ use super::*;
-+ #[cfg_attr(not(target_arch = "wasm32"), test)]
-+ #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
-+ fn bitmask() {
-+ // clear all lanes
-+ let vec = $id::splat($clear as _);
-+ let bitmask: $ibitmask_ty = 0;
-+ assert_eq!(vec.bitmask(), bitmask);
-+
-+ // set even lanes
-+ let mut vec = $id::splat($clear as _);
-+ for i in 0..$id::lanes() {
-+ if i % 2 == 0 {
-+ vec = vec.replace(i, $set as _);
-+ }
-+ }
-+ // create bitmask with even lanes set:
-+ let mut bitmask: $ibitmask_ty = 0;
-+ for i in 0..$id::lanes() {
-+ if i % 2 == 0 {
-+ bitmask |= 1 << i;
-+ }
-+ }
-+ assert_eq!(vec.bitmask(), bitmask);
-+
-+
-+ // set odd lanes
-+ let mut vec = $id::splat($clear as _);
-+ for i in 0..$id::lanes() {
-+ if i % 2 != 0 {
-+ vec = vec.replace(i, $set as _);
-+ }
-+ }
-+ // create bitmask with odd lanes set:
-+ let mut bitmask: $ibitmask_ty = 0;
-+ for i in 0..$id::lanes() {
-+ if i % 2 != 0 {
-+ bitmask |= 1 << i;
-+ }
-+ }
-+ assert_eq!(vec.bitmask(), bitmask);
-+
-+ // set all lanes
-+ let vec = $id::splat($set as _);
-+ let mut bitmask: $ibitmask_ty = 0;
-+ for i in 0..$id::lanes() {
-+ bitmask |= 1 << i;
-+ }
-+ assert_eq!(vec.bitmask(), bitmask);
-+ }
-+ }
-+ }
-+ }
-+ };
-+}
-diff --git third_party/rust/packed_simd/src/api/cast/v128.rs third_party/rust/packed_simd/src/api/cast/v128.rs
-index 78c07f3a5597..ab47ddc006d6 100644
---- third_party/rust/packed_simd/src/api/cast/v128.rs
-+++ third_party/rust/packed_simd/src/api/cast/v128.rs
-@@ -1,5 +1,5 @@
- //! `FromCast` and `IntoCast` implementations for portable 128-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/api/cast/v16.rs third_party/rust/packed_simd/src/api/cast/v16.rs
-index d292936baa41..cf974bb08e70 100644
---- third_party/rust/packed_simd/src/api/cast/v16.rs
-+++ third_party/rust/packed_simd/src/api/cast/v16.rs
-@@ -1,5 +1,5 @@
- //! `FromCast` and `IntoCast` implementations for portable 16-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/api/cast/v256.rs third_party/rust/packed_simd/src/api/cast/v256.rs
-index 0a669e0beebe..9389dcb4c7f7 100644
---- third_party/rust/packed_simd/src/api/cast/v256.rs
-+++ third_party/rust/packed_simd/src/api/cast/v256.rs
-@@ -1,5 +1,5 @@
- //! `FromCast` and `IntoCast` implementations for portable 256-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/api/cast/v32.rs third_party/rust/packed_simd/src/api/cast/v32.rs
-index 65050cdacb4e..2b254ba0cf12 100644
---- third_party/rust/packed_simd/src/api/cast/v32.rs
-+++ third_party/rust/packed_simd/src/api/cast/v32.rs
-@@ -1,5 +1,5 @@
- //! `FromCast` and `IntoCast` implementations for portable 32-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/api/cast/v512.rs third_party/rust/packed_simd/src/api/cast/v512.rs
-index 9ae1caed35e2..5a10ab066677 100644
---- third_party/rust/packed_simd/src/api/cast/v512.rs
-+++ third_party/rust/packed_simd/src/api/cast/v512.rs
-@@ -1,5 +1,5 @@
- //! `FromCast` and `IntoCast` implementations for portable 512-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/api/cast/v64.rs third_party/rust/packed_simd/src/api/cast/v64.rs
-index 0e2f78f7335b..192a4638a362 100644
---- third_party/rust/packed_simd/src/api/cast/v64.rs
-+++ third_party/rust/packed_simd/src/api/cast/v64.rs
-@@ -1,5 +1,5 @@
- //! `FromCast` and `IntoCast` implementations for portable 64-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/api/default.rs third_party/rust/packed_simd/src/api/default.rs
-index 843d51bcc4bb..7af55ea77a85 100644
---- third_party/rust/packed_simd/src/api/default.rs
-+++ third_party/rust/packed_simd/src/api/default.rs
-@@ -12,6 +12,8 @@ macro_rules! impl_default {
- test_if!{
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _default>] {
- use super::*;
- #[cfg_attr(not(target_arch = "wasm32"), test)] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
-diff --git third_party/rust/packed_simd/src/api/from/from_array.rs third_party/rust/packed_simd/src/api/from/from_array.rs
-index 964d1501df6a..b83f93816262 100644
---- third_party/rust/packed_simd/src/api/from/from_array.rs
-+++ third_party/rust/packed_simd/src/api/from/from_array.rs
-@@ -56,6 +56,8 @@ macro_rules! impl_from_array {
- test_if! {
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- mod [<$id _from>] {
- use super::*;
- #[test]
-diff --git third_party/rust/packed_simd/src/api/hash.rs third_party/rust/packed_simd/src/api/hash.rs
-index 08d42496ea8b..ee80eff939c3 100644
---- third_party/rust/packed_simd/src/api/hash.rs
-+++ third_party/rust/packed_simd/src/api/hash.rs
-@@ -36,6 +36,8 @@ macro_rules! impl_hash {
- let mut v_hash = a_hash.clone();
- a.hash(&mut a_hash);
-
-+ // Integer within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- let v = $id::splat(42 as $elem_ty);
- v.hash(&mut v_hash);
- assert_eq!(a_hash.finish(), v_hash.finish());
-diff --git third_party/rust/packed_simd/src/api/into_bits/arch_specific.rs third_party/rust/packed_simd/src/api/into_bits/arch_specific.rs
-index 6cc2fa37b728..fee6140052f9 100644
---- third_party/rust/packed_simd/src/api/into_bits/arch_specific.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/arch_specific.rs
-@@ -1,6 +1,6 @@
- //! `FromBits` and `IntoBits` between portable vector types and the
- //! architecture-specific vector types.
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- // FIXME: MIPS FromBits/IntoBits
-
-@@ -84,7 +84,6 @@ macro_rules! impl_arch {
- // FIXME: 64-bit single element types
- // FIXME: arm/aarch float16x4_t missing
- impl_arch!(
-- [x86["x86"]: __m64], [x86_64["x86_64"]: __m64],
- [arm["arm"]: int8x8_t, uint8x8_t, poly8x8_t, int16x4_t, uint16x4_t,
- poly16x4_t, int32x2_t, uint32x2_t, float32x2_t, int64x1_t,
- uint64x1_t],
-diff --git third_party/rust/packed_simd/src/api/into_bits/v128.rs third_party/rust/packed_simd/src/api/into_bits/v128.rs
-index 804dbf282d53..e32cd7f9f099 100644
---- third_party/rust/packed_simd/src/api/into_bits/v128.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/v128.rs
-@@ -1,5 +1,5 @@
- //! `FromBits` and `IntoBits` implementations for portable 128-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- #[allow(unused)] // wasm_bindgen_test
- use crate::*;
-diff --git third_party/rust/packed_simd/src/api/into_bits/v16.rs third_party/rust/packed_simd/src/api/into_bits/v16.rs
-index 1162a62e5bd1..e44d0e7f9a18 100644
---- third_party/rust/packed_simd/src/api/into_bits/v16.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/v16.rs
-@@ -1,5 +1,5 @@
- //! `FromBits` and `IntoBits` implementations for portable 16-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- #[allow(unused)] // wasm_bindgen_test
- use crate::*;
-diff --git third_party/rust/packed_simd/src/api/into_bits/v256.rs third_party/rust/packed_simd/src/api/into_bits/v256.rs
-index cc7a6646b535..c4c373e0d0b8 100644
---- third_party/rust/packed_simd/src/api/into_bits/v256.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/v256.rs
-@@ -1,5 +1,5 @@
- //! `FromBits` and `IntoBits` implementations for portable 256-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- #[allow(unused)] // wasm_bindgen_test
- use crate::*;
-diff --git third_party/rust/packed_simd/src/api/into_bits/v32.rs third_party/rust/packed_simd/src/api/into_bits/v32.rs
-index 2c183ecf1c77..5dba38a17976 100644
---- third_party/rust/packed_simd/src/api/into_bits/v32.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/v32.rs
-@@ -1,5 +1,5 @@
- //! `FromBits` and `IntoBits` implementations for portable 32-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- #[allow(unused)] // wasm_bindgen_test
- use crate::*;
-diff --git third_party/rust/packed_simd/src/api/into_bits/v512.rs third_party/rust/packed_simd/src/api/into_bits/v512.rs
-index 8dec6a7f63a0..4a771962c348 100644
---- third_party/rust/packed_simd/src/api/into_bits/v512.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/v512.rs
-@@ -1,5 +1,5 @@
- //! `FromBits` and `IntoBits` implementations for portable 512-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- #[allow(unused)] // wasm_bindgen_test
- use crate::*;
-diff --git third_party/rust/packed_simd/src/api/into_bits/v64.rs third_party/rust/packed_simd/src/api/into_bits/v64.rs
-index 8999d98e13f8..5b065f1bd5f7 100644
---- third_party/rust/packed_simd/src/api/into_bits/v64.rs
-+++ third_party/rust/packed_simd/src/api/into_bits/v64.rs
-@@ -1,5 +1,5 @@
- //! `FromBits` and `IntoBits` implementations for portable 64-bit wide vectors
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- #[allow(unused)] // wasm_bindgen_test
- use crate::*;
-diff --git third_party/rust/packed_simd/src/api/minimal/iuf.rs third_party/rust/packed_simd/src/api/minimal/iuf.rs
-index 58ffabab994f..a155ac178a26 100644
---- third_party/rust/packed_simd/src/api/minimal/iuf.rs
-+++ third_party/rust/packed_simd/src/api/minimal/iuf.rs
-@@ -53,7 +53,7 @@ macro_rules! impl_minimal_iuf {
-
- /// Extracts the value at `index`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `index >= Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -80,7 +80,7 @@ macro_rules! impl_minimal_iuf {
-
- /// Returns a new vector where the value at `index` is replaced by `new_value`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `index >= Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -101,6 +101,8 @@ macro_rules! impl_minimal_iuf {
- test_if!{
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _minimal>] {
- use super::*;
- #[cfg_attr(not(target_arch = "wasm32"), test)]
-diff --git third_party/rust/packed_simd/src/api/minimal/mask.rs third_party/rust/packed_simd/src/api/minimal/mask.rs
-index e65be95db12c..a420060b423d 100644
---- third_party/rust/packed_simd/src/api/minimal/mask.rs
-+++ third_party/rust/packed_simd/src/api/minimal/mask.rs
-@@ -58,6 +58,8 @@ macro_rules! impl_minimal_mask {
-
- /// Extracts the value at `index`.
- ///
-+ /// # Safety
-+ ///
- /// If `index >= Self::lanes()` the behavior is undefined.
- #[inline]
- pub unsafe fn extract_unchecked(self, index: usize) -> bool {
-@@ -85,9 +87,9 @@ macro_rules! impl_minimal_mask {
- /// Returns a new vector where the value at `index` is replaced by
- /// `new_value`.
- ///
-- /// # Panics
-+ /// # Safety
- ///
-- /// If `index >= Self::lanes()`.
-+ /// If `index >= Self::lanes()` the behavior is undefined.
- #[inline]
- #[must_use = "replace_unchecked does not modify the original value - \
- it returns a new vector with the value at `index` \
-diff --git third_party/rust/packed_simd/src/api/minimal/ptr.rs third_party/rust/packed_simd/src/api/minimal/ptr.rs
-index 75e5aad5c065..c3d61fbf6d5e 100644
---- third_party/rust/packed_simd/src/api/minimal/ptr.rs
-+++ third_party/rust/packed_simd/src/api/minimal/ptr.rs
-@@ -68,7 +68,7 @@ macro_rules! impl_minimal_p {
-
- /// Extracts the value at `index`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `index >= Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -96,7 +96,7 @@ macro_rules! impl_minimal_p {
-
- /// Returns a new vector where the value at `index` is replaced by `new_value`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `index >= Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -215,7 +215,7 @@ macro_rules! impl_minimal_p {
- f,
- "{}<{}>(",
- stringify!($id),
-- unsafe { crate::intrinsics::type_name::<T>() }
-+ crate::intrinsics::type_name::<T>()
- )?;
- for i in 0..$elem_count {
- if i > 0 {
-@@ -550,11 +550,7 @@ macro_rules! impl_minimal_p {
- ];
-
- for i in 0..$elem_count {
-- let ptr = unsafe {
-- crate::mem::transmute(
-- &values[i] as *const i32
-- )
-- };
-+ let ptr = &values[i] as *const i32 as *mut i32;
- vec = vec.replace(i, ptr);
- array[i] = ptr;
- }
-@@ -611,7 +607,7 @@ macro_rules! impl_minimal_p {
-
- /// Instantiates a new vector with the values of the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` or `&slice[0]` is not aligned
- /// to an `align_of::<Self>()` boundary, the behavior is undefined.
-@@ -624,7 +620,7 @@ macro_rules! impl_minimal_p {
-
- /// Instantiates a new vector with the values of the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -827,7 +823,7 @@ macro_rules! impl_minimal_p {
-
- /// Writes the values of the vector to the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` or `&slice[0]` is not
- /// aligned to an `align_of::<Self>()` boundary, the behavior is
-@@ -843,7 +839,7 @@ macro_rules! impl_minimal_p {
-
- /// Writes the values of the vector to the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -1025,11 +1021,7 @@ macro_rules! impl_minimal_p {
- ];
-
- for i in 0..$elem_count {
-- let ptr = unsafe {
-- crate::mem::transmute(
-- &values[i] as *const i32
-- )
-- };
-+ let ptr = &values[i] as *const i32 as *mut i32;
- vec = vec.replace(i, ptr);
- array[i] = ptr;
- }
-@@ -1151,7 +1143,7 @@ macro_rules! impl_minimal_p {
- /// As such, memory acquired directly from allocators or memory
- /// mapped files may be too large to handle with this function.
- ///
-- /// Consider using wrapping_offset_from instead if these constraints
-+ /// Consider using `wrapping_offset_from` instead if these constraints
- /// are difficult to satisfy. The only advantage of this method is
- /// that it enables more aggressive compiler optimizations.
- #[inline]
-diff --git third_party/rust/packed_simd/src/api/ops/vector_float_min_max.rs third_party/rust/packed_simd/src/api/ops/vector_float_min_max.rs
-index 4126e87042f5..8310667b7a8d 100644
---- third_party/rust/packed_simd/src/api/ops/vector_float_min_max.rs
-+++ third_party/rust/packed_simd/src/api/ops/vector_float_min_max.rs
-@@ -26,6 +26,11 @@ macro_rules! impl_ops_vector_float_min_max {
- test_if!{
- $test_tt:
- paste::item! {
-+ #[cfg(not(any(
-+ // FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/223
-+ all(target_arch = "mips", target_endian = "big"),
-+ target_arch = "mips64",
-+ )))]
- pub mod [<$id _ops_vector_min_max>] {
- use super::*;
- #[cfg_attr(not(target_arch = "wasm32"), test)] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
-diff --git third_party/rust/packed_simd/src/api/ptr/gather_scatter.rs third_party/rust/packed_simd/src/api/ptr/gather_scatter.rs
-index 9d8e113bb44f..430435620939 100644
---- third_party/rust/packed_simd/src/api/ptr/gather_scatter.rs
-+++ third_party/rust/packed_simd/src/api/ptr/gather_scatter.rs
-@@ -49,9 +49,9 @@ macro_rules! impl_ptr_read {
- let mut ptr = $id::<i32>::null();
-
- for i in 0..$elem_count {
-- ptr = ptr.replace(i, unsafe {
-- crate::mem::transmute(&v[i] as *const i32)
-- });
-+ ptr = ptr.replace(i,
-+ &v[i] as *const i32 as *mut i32
-+ );
- }
-
- // all mask elements are true:
-@@ -135,32 +135,8 @@ macro_rules! impl_ptr_write {
- M: sealed::Mask,
- [M; $elem_count]: sealed::SimdArray,
- {
-- // FIXME:
-- // https://github.com/rust-lang-nursery/packed_simd/issues/85
-- #[cfg(not(target_arch = "mips"))]
-- {
-- use crate::llvm::simd_scatter;
-- simd_scatter(value.0, self.0, mask.0)
-- }
-- #[cfg(target_arch = "mips")]
-- {
-- let m_ptr =
-- &mask as *const Simd<[M; $elem_count]> as *const M;
-- for i in 0..$elem_count {
-- let m = ptr::read(m_ptr.add(i));
-- if m.test() {
-- let t_ptr = &self
-- as *const Simd<[*mut T; $elem_count]>
-- as *mut *mut T;
-- let v_ptr = &value as *const Simd<[T; $elem_count]>
-- as *const T;
-- ptr::write(
-- ptr::read(t_ptr.add(i)),
-- ptr::read(v_ptr.add(i)),
-- );
-- }
-- }
-- }
-+ use crate::llvm::simd_scatter;
-+ simd_scatter(value.0, self.0, mask.0)
- }
- }
-
-@@ -185,7 +161,7 @@ macro_rules! impl_ptr_write {
- let mut ptr = $id::<i32>::null();
- for i in 0..$elem_count {
- ptr = ptr.replace(i, unsafe {
-- crate::mem::transmute(arr.as_ptr().add(i))
-+ arr.as_ptr().add(i) as *mut i32
- });
- }
- // ptr = [&arr[0], &arr[1], ...]
-diff --git third_party/rust/packed_simd/src/api/reductions/float_arithmetic.rs third_party/rust/packed_simd/src/api/reductions/float_arithmetic.rs
-index dd722ae25fdd..4a47452e5006 100644
---- third_party/rust/packed_simd/src/api/reductions/float_arithmetic.rs
-+++ third_party/rust/packed_simd/src/api/reductions/float_arithmetic.rs
-@@ -93,6 +93,8 @@ macro_rules! impl_reduction_float_arithmetic {
- test_if! {
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _reduction_float_arith>] {
- use super::*;
- fn alternating(x: usize) -> $id {
-@@ -225,7 +227,7 @@ macro_rules! impl_reduction_float_arithmetic {
- let mut v = $id::splat(0. as $elem_ty);
- for i in 0..$id::lanes() {
- let c = if i % 2 == 0 { 1e3 } else { -1. };
-- start *= 3.14 * c;
-+ start *= ::core::$elem_ty::consts::PI * c;
- scalar_reduction += start;
- v = v.replace(i, start);
- }
-@@ -257,6 +259,7 @@ macro_rules! impl_reduction_float_arithmetic {
- #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
- #[allow(unused, dead_code)]
- fn product_roundoff() {
-+ use ::core::convert::TryInto;
- // Performs a tree-reduction
- fn tree_reduce_product(a: &[$elem_ty]) -> $elem_ty {
- assert!(!a.is_empty());
-@@ -278,7 +281,7 @@ macro_rules! impl_reduction_float_arithmetic {
- let mut v = $id::splat(0. as $elem_ty);
- for i in 0..$id::lanes() {
- let c = if i % 2 == 0 { 1e3 } else { -1. };
-- start *= 3.14 * c;
-+ start *= ::core::$elem_ty::consts::PI * c;
- scalar_reduction *= start;
- v = v.replace(i, start);
- }
-@@ -288,7 +291,9 @@ macro_rules! impl_reduction_float_arithmetic {
- v.write_to_slice_unaligned(&mut a);
- let tree_reduction = tree_reduce_product(&a);
-
-- // tolerate 1 ULP difference:
-+ // FIXME: Too imprecise, even only for product(f32x8).
-+ // Figure out how to narrow this down.
-+ let ulp_limit = $id::lanes() / 2;
- let red_bits = simd_reduction.to_bits();
- let tree_bits = tree_reduction.to_bits();
- assert!(
-@@ -296,7 +301,7 @@ macro_rules! impl_reduction_float_arithmetic {
- red_bits - tree_bits
- } else {
- tree_bits - red_bits
-- } < 2,
-+ } < ulp_limit.try_into().unwrap(),
- "vector: {:?} | simd_reduction: {:?} | \
- tree_reduction: {} | scalar_reduction: {}",
- v,
-diff --git third_party/rust/packed_simd/src/api/reductions/min_max.rs third_party/rust/packed_simd/src/api/reductions/min_max.rs
-index c4d3aa10f15c..c4c1400a8fc4 100644
---- third_party/rust/packed_simd/src/api/reductions/min_max.rs
-+++ third_party/rust/packed_simd/src/api/reductions/min_max.rs
-@@ -76,6 +76,8 @@ macro_rules! impl_reduction_min_max {
- }
- test_if! {$test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _reduction_min_max>] {
- use super::*;
- #[cfg_attr(not(target_arch = "wasm32"), test)]
-@@ -124,6 +126,8 @@ macro_rules! test_reduction_float_min_max {
- test_if!{
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _reduction_min_max_nan>] {
- use super::*;
- #[cfg_attr(not(target_arch = "wasm32"), test)]
-diff --git third_party/rust/packed_simd/src/api/slice/from_slice.rs third_party/rust/packed_simd/src/api/slice/from_slice.rs
-index 109cd1f10b01..25082d1e6800 100644
---- third_party/rust/packed_simd/src/api/slice/from_slice.rs
-+++ third_party/rust/packed_simd/src/api/slice/from_slice.rs
-@@ -38,7 +38,7 @@ macro_rules! impl_slice_from_slice {
-
- /// Instantiates a new vector with the values of the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` or `&slice[0]` is not aligned
- /// to an `align_of::<Self>()` boundary, the behavior is undefined.
-@@ -59,7 +59,7 @@ macro_rules! impl_slice_from_slice {
-
- /// Instantiates a new vector with the values of the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -84,6 +84,8 @@ macro_rules! impl_slice_from_slice {
- test_if! {
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _slice_from_slice>] {
- use super::*;
- use crate::iter::Iterator;
-diff --git third_party/rust/packed_simd/src/api/slice/write_to_slice.rs third_party/rust/packed_simd/src/api/slice/write_to_slice.rs
-index fcb288da70fc..b634d98b9962 100644
---- third_party/rust/packed_simd/src/api/slice/write_to_slice.rs
-+++ third_party/rust/packed_simd/src/api/slice/write_to_slice.rs
-@@ -39,7 +39,7 @@ macro_rules! impl_slice_write_to_slice {
-
- /// Writes the values of the vector to the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` or `&slice[0]` is not
- /// aligned to an `align_of::<Self>()` boundary, the behavior is
-@@ -64,7 +64,7 @@ macro_rules! impl_slice_write_to_slice {
-
- /// Writes the values of the vector to the `slice`.
- ///
-- /// # Precondition
-+ /// # Safety
- ///
- /// If `slice.len() < Self::lanes()` the behavior is undefined.
- #[inline]
-@@ -86,6 +86,8 @@ macro_rules! impl_slice_write_to_slice {
- test_if! {
- $test_tt:
- paste::item! {
-+ // Comparisons use integer casts within mantissa^1 range.
-+ #[allow(clippy::float_cmp)]
- pub mod [<$id _slice_write_to_slice>] {
- use super::*;
- use crate::iter::Iterator;
-diff --git third_party/rust/packed_simd/src/codegen.rs third_party/rust/packed_simd/src/codegen.rs
-index b7ccd838603f..9d1517e203d1 100644
---- third_party/rust/packed_simd/src/codegen.rs
-+++ third_party/rust/packed_simd/src/codegen.rs
-@@ -16,6 +16,8 @@ macro_rules! impl_simd_array {
- pub struct $tuple_id($(crate $elem_tys),*);
- //^^^^^^^ leaked through SimdArray
-
-+ impl crate::sealed::Seal for [$elem_ty; $elem_count] {}
-+
- impl crate::sealed::SimdArray for [$elem_ty; $elem_count] {
- type Tuple = $tuple_id;
- type T = $elem_ty;
-@@ -23,6 +25,7 @@ macro_rules! impl_simd_array {
- type NT = [u32; $elem_count];
- }
-
-+ impl crate::sealed::Seal for $tuple_id {}
- impl crate::sealed::Simd for $tuple_id {
- type Element = $elem_ty;
- const LANES: usize = $elem_count;
-diff --git third_party/rust/packed_simd/src/codegen/bit_manip.rs third_party/rust/packed_simd/src/codegen/bit_manip.rs
-index 947266f5bce8..83c7d1987cac 100644
---- third_party/rust/packed_simd/src/codegen/bit_manip.rs
-+++ third_party/rust/packed_simd/src/codegen/bit_manip.rs
-@@ -1,5 +1,5 @@
- //! LLVM bit manipulation intrinsics.
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/codegen/llvm.rs third_party/rust/packed_simd/src/codegen/llvm.rs
-index 91c2b0758dcf..93c6ce6b77ed 100644
---- third_party/rust/packed_simd/src/codegen/llvm.rs
-+++ third_party/rust/packed_simd/src/codegen/llvm.rs
-@@ -10,31 +10,37 @@ extern "platform-intrinsic" {
- // FIXME: Passing this intrinsics an `idx` array with an index that is
- // out-of-bounds will produce a monomorphization-time error.
- // https://github.com/rust-lang-nursery/packed_simd/issues/21
-+ #[rustc_args_required_const(2)]
- pub fn simd_shuffle2<T, U>(x: T, y: T, idx: [u32; 2]) -> U
- where
- T: Simd,
- <T as Simd>::Element: Shuffle<[u32; 2], Output = U>;
-
-+ #[rustc_args_required_const(2)]
- pub fn simd_shuffle4<T, U>(x: T, y: T, idx: [u32; 4]) -> U
- where
- T: Simd,
- <T as Simd>::Element: Shuffle<[u32; 4], Output = U>;
-
-+ #[rustc_args_required_const(2)]
- pub fn simd_shuffle8<T, U>(x: T, y: T, idx: [u32; 8]) -> U
- where
- T: Simd,
- <T as Simd>::Element: Shuffle<[u32; 8], Output = U>;
-
-+ #[rustc_args_required_const(2)]
- pub fn simd_shuffle16<T, U>(x: T, y: T, idx: [u32; 16]) -> U
- where
- T: Simd,
- <T as Simd>::Element: Shuffle<[u32; 16], Output = U>;
-
-+ #[rustc_args_required_const(2)]
- pub fn simd_shuffle32<T, U>(x: T, y: T, idx: [u32; 32]) -> U
- where
- T: Simd,
- <T as Simd>::Element: Shuffle<[u32; 32], Output = U>;
-
-+ #[rustc_args_required_const(2)]
- pub fn simd_shuffle64<T, U>(x: T, y: T, idx: [u32; 64]) -> U
- where
- T: Simd,
-@@ -96,4 +102,6 @@ extern "platform-intrinsic" {
-
- crate fn simd_gather<T, P, M>(value: T, pointers: P, mask: M) -> T;
- crate fn simd_scatter<T, P, M>(value: T, pointers: P, mask: M);
-+
-+ crate fn simd_bitmask<T, U>(value: T) -> U;
- }
-diff --git third_party/rust/packed_simd/src/codegen/reductions/mask/x86.rs third_party/rust/packed_simd/src/codegen/reductions/mask/x86.rs
-index 2ae4ed81c416..bcfb1a6e1772 100644
---- third_party/rust/packed_simd/src/codegen/reductions/mask/x86.rs
-+++ third_party/rust/packed_simd/src/codegen/reductions/mask/x86.rs
-@@ -19,13 +19,7 @@ mod avx2;
- /// x86 64-bit m8x8 implementation
- macro_rules! x86_m8x8_impl {
- ($id:ident) => {
-- cfg_if! {
-- if #[cfg(all(target_arch = "x86_64", target_feature = "sse"))] {
-- x86_m8x8_sse_impl!($id);
-- } else {
-- fallback_impl!($id);
-- }
-- }
-+ fallback_impl!($id);
- };
- }
-
-diff --git third_party/rust/packed_simd/src/codegen/reductions/mask/x86/sse.rs third_party/rust/packed_simd/src/codegen/reductions/mask/x86/sse.rs
-index 7482f9430a14..eb1ef7fac922 100644
---- third_party/rust/packed_simd/src/codegen/reductions/mask/x86/sse.rs
-+++ third_party/rust/packed_simd/src/codegen/reductions/mask/x86/sse.rs
-@@ -34,35 +34,3 @@ macro_rules! x86_m32x4_sse_impl {
- }
- };
- }
--
--macro_rules! x86_m8x8_sse_impl {
-- ($id:ident) => {
-- impl All for $id {
-- #[inline]
-- #[target_feature(enable = "sse")]
-- unsafe fn all(self) -> bool {
-- #[cfg(target_arch = "x86")]
-- use crate::arch::x86::_mm_movemask_pi8;
-- #[cfg(target_arch = "x86_64")]
-- use crate::arch::x86_64::_mm_movemask_pi8;
-- // _mm_movemask_pi8(a) creates an 8bit mask containing the most
-- // significant bit of each byte of `a`. If all bits are set,
-- // then all 8 lanes of the mask are true.
-- _mm_movemask_pi8(crate::mem::transmute(self))
-- == u8::max_value() as i32
-- }
-- }
-- impl Any for $id {
-- #[inline]
-- #[target_feature(enable = "sse")]
-- unsafe fn any(self) -> bool {
-- #[cfg(target_arch = "x86")]
-- use crate::arch::x86::_mm_movemask_pi8;
-- #[cfg(target_arch = "x86_64")]
-- use crate::arch::x86_64::_mm_movemask_pi8;
--
-- _mm_movemask_pi8(crate::mem::transmute(self)) != 0
-- }
-- }
-- };
--}
-diff --git third_party/rust/packed_simd/src/codegen/shuffle.rs third_party/rust/packed_simd/src/codegen/shuffle.rs
-index 35a9db905339..d92c9ee22427 100644
---- third_party/rust/packed_simd/src/codegen/shuffle.rs
-+++ third_party/rust/packed_simd/src/codegen/shuffle.rs
-@@ -2,301 +2,149 @@
- //! lanes and vector element types.
-
- use crate::masks::*;
--use crate::sealed::Shuffle;
--
--impl Shuffle<[u32; 2]> for i8 {
-- type Output = crate::codegen::i8x2;
--}
--impl Shuffle<[u32; 4]> for i8 {
-- type Output = crate::codegen::i8x4;
--}
--impl Shuffle<[u32; 8]> for i8 {
-- type Output = crate::codegen::i8x8;
--}
--impl Shuffle<[u32; 16]> for i8 {
-- type Output = crate::codegen::i8x16;
--}
--impl Shuffle<[u32; 32]> for i8 {
-- type Output = crate::codegen::i8x32;
--}
--impl Shuffle<[u32; 64]> for i8 {
-- type Output = crate::codegen::i8x64;
--}
--
--impl Shuffle<[u32; 2]> for u8 {
-- type Output = crate::codegen::u8x2;
--}
--impl Shuffle<[u32; 4]> for u8 {
-- type Output = crate::codegen::u8x4;
--}
--impl Shuffle<[u32; 8]> for u8 {
-- type Output = crate::codegen::u8x8;
--}
--impl Shuffle<[u32; 16]> for u8 {
-- type Output = crate::codegen::u8x16;
--}
--impl Shuffle<[u32; 32]> for u8 {
-- type Output = crate::codegen::u8x32;
--}
--impl Shuffle<[u32; 64]> for u8 {
-- type Output = crate::codegen::u8x64;
--}
--
--impl Shuffle<[u32; 2]> for m8 {
-- type Output = crate::codegen::m8x2;
--}
--impl Shuffle<[u32; 4]> for m8 {
-- type Output = crate::codegen::m8x4;
--}
--impl Shuffle<[u32; 8]> for m8 {
-- type Output = crate::codegen::m8x8;
--}
--impl Shuffle<[u32; 16]> for m8 {
-- type Output = crate::codegen::m8x16;
--}
--impl Shuffle<[u32; 32]> for m8 {
-- type Output = crate::codegen::m8x32;
--}
--impl Shuffle<[u32; 64]> for m8 {
-- type Output = crate::codegen::m8x64;
--}
--
--impl Shuffle<[u32; 2]> for i16 {
-- type Output = crate::codegen::i16x2;
--}
--impl Shuffle<[u32; 4]> for i16 {
-- type Output = crate::codegen::i16x4;
--}
--impl Shuffle<[u32; 8]> for i16 {
-- type Output = crate::codegen::i16x8;
--}
--impl Shuffle<[u32; 16]> for i16 {
-- type Output = crate::codegen::i16x16;
--}
--impl Shuffle<[u32; 32]> for i16 {
-- type Output = crate::codegen::i16x32;
--}
--
--impl Shuffle<[u32; 2]> for u16 {
-- type Output = crate::codegen::u16x2;
--}
--impl Shuffle<[u32; 4]> for u16 {
-- type Output = crate::codegen::u16x4;
--}
--impl Shuffle<[u32; 8]> for u16 {
-- type Output = crate::codegen::u16x8;
--}
--impl Shuffle<[u32; 16]> for u16 {
-- type Output = crate::codegen::u16x16;
--}
--impl Shuffle<[u32; 32]> for u16 {
-- type Output = crate::codegen::u16x32;
--}
--
--impl Shuffle<[u32; 2]> for m16 {
-- type Output = crate::codegen::m16x2;
--}
--impl Shuffle<[u32; 4]> for m16 {
-- type Output = crate::codegen::m16x4;
--}
--impl Shuffle<[u32; 8]> for m16 {
-- type Output = crate::codegen::m16x8;
--}
--impl Shuffle<[u32; 16]> for m16 {
-- type Output = crate::codegen::m16x16;
--}
--impl Shuffle<[u32; 32]> for m16 {
-- type Output = crate::codegen::m16x32;
--}
--
--impl Shuffle<[u32; 2]> for i32 {
-- type Output = crate::codegen::i32x2;
--}
--impl Shuffle<[u32; 4]> for i32 {
-- type Output = crate::codegen::i32x4;
--}
--impl Shuffle<[u32; 8]> for i32 {
-- type Output = crate::codegen::i32x8;
--}
--impl Shuffle<[u32; 16]> for i32 {
-- type Output = crate::codegen::i32x16;
--}
--
--impl Shuffle<[u32; 2]> for u32 {
-- type Output = crate::codegen::u32x2;
--}
--impl Shuffle<[u32; 4]> for u32 {
-- type Output = crate::codegen::u32x4;
--}
--impl Shuffle<[u32; 8]> for u32 {
-- type Output = crate::codegen::u32x8;
--}
--impl Shuffle<[u32; 16]> for u32 {
-- type Output = crate::codegen::u32x16;
--}
--
--impl Shuffle<[u32; 2]> for f32 {
-- type Output = crate::codegen::f32x2;
--}
--impl Shuffle<[u32; 4]> for f32 {
-- type Output = crate::codegen::f32x4;
--}
--impl Shuffle<[u32; 8]> for f32 {
-- type Output = crate::codegen::f32x8;
--}
--impl Shuffle<[u32; 16]> for f32 {
-- type Output = crate::codegen::f32x16;
--}
--
--impl Shuffle<[u32; 2]> for m32 {
-- type Output = crate::codegen::m32x2;
--}
--impl Shuffle<[u32; 4]> for m32 {
-- type Output = crate::codegen::m32x4;
--}
--impl Shuffle<[u32; 8]> for m32 {
-- type Output = crate::codegen::m32x8;
--}
--impl Shuffle<[u32; 16]> for m32 {
-- type Output = crate::codegen::m32x16;
--}
-+use crate::sealed::{Shuffle, Seal};
-+
-+macro_rules! impl_shuffle {
-+ ($array:ty, $base:ty, $out:ty) => {
-+ impl Seal<$array> for $base {}
-+ impl Shuffle<$array> for $base {
-+ type Output = $out;
-+ }
-+ }
-+}
-+
-+impl_shuffle! { [u32; 2], i8, crate::codegen::i8x2 }
-+impl_shuffle! { [u32; 4], i8, crate::codegen::i8x4 }
-+impl_shuffle! { [u32; 8], i8, crate::codegen::i8x8 }
-+impl_shuffle! { [u32; 16], i8, crate::codegen::i8x16 }
-+impl_shuffle! { [u32; 32], i8, crate::codegen::i8x32 }
-+impl_shuffle! { [u32; 64], i8, crate::codegen::i8x64 }
-+
-+impl_shuffle! { [u32; 2], u8, crate::codegen::u8x2 }
-+impl_shuffle! { [u32; 4], u8, crate::codegen::u8x4 }
-+impl_shuffle! { [u32; 8], u8, crate::codegen::u8x8 }
-+impl_shuffle! { [u32; 16], u8, crate::codegen::u8x16 }
-+impl_shuffle! { [u32; 32], u8, crate::codegen::u8x32 }
-+impl_shuffle! { [u32; 64], u8, crate::codegen::u8x64 }
-+
-+impl_shuffle! { [u32; 2], m8, crate::codegen::m8x2 }
-+impl_shuffle! { [u32; 4], m8, crate::codegen::m8x4 }
-+impl_shuffle! { [u32; 8], m8, crate::codegen::m8x8 }
-+impl_shuffle! { [u32; 16], m8, crate::codegen::m8x16 }
-+impl_shuffle! { [u32; 32], m8, crate::codegen::m8x32 }
-+impl_shuffle! { [u32; 64], m8, crate::codegen::m8x64 }
-+
-+impl_shuffle! { [u32; 2], i16, crate::codegen::i16x2 }
-+impl_shuffle! { [u32; 4], i16, crate::codegen::i16x4 }
-+impl_shuffle! { [u32; 8], i16, crate::codegen::i16x8 }
-+impl_shuffle! { [u32; 16], i16, crate::codegen::i16x16 }
-+impl_shuffle! { [u32; 32], i16, crate::codegen::i16x32 }
-+
-+impl_shuffle! { [u32; 2], u16, crate::codegen::u16x2 }
-+impl_shuffle! { [u32; 4], u16, crate::codegen::u16x4 }
-+impl_shuffle! { [u32; 8], u16, crate::codegen::u16x8 }
-+impl_shuffle! { [u32; 16], u16, crate::codegen::u16x16 }
-+impl_shuffle! { [u32; 32], u16, crate::codegen::u16x32 }
-+
-+impl_shuffle! { [u32; 2], m16, crate::codegen::m16x2 }
-+impl_shuffle! { [u32; 4], m16, crate::codegen::m16x4 }
-+impl_shuffle! { [u32; 8], m16, crate::codegen::m16x8 }
-+impl_shuffle! { [u32; 16], m16, crate::codegen::m16x16 }
-+
-+impl_shuffle! { [u32; 2], i32, crate::codegen::i32x2 }
-+impl_shuffle! { [u32; 4], i32, crate::codegen::i32x4 }
-+impl_shuffle! { [u32; 8], i32, crate::codegen::i32x8 }
-+impl_shuffle! { [u32; 16], i32, crate::codegen::i32x16 }
-+
-+impl_shuffle! { [u32; 2], u32, crate::codegen::u32x2 }
-+impl_shuffle! { [u32; 4], u32, crate::codegen::u32x4 }
-+impl_shuffle! { [u32; 8], u32, crate::codegen::u32x8 }
-+impl_shuffle! { [u32; 16], u32, crate::codegen::u32x16 }
-+
-+impl_shuffle! { [u32; 2], f32, crate::codegen::f32x2 }
-+impl_shuffle! { [u32; 4], f32, crate::codegen::f32x4 }
-+impl_shuffle! { [u32; 8], f32, crate::codegen::f32x8 }
-+impl_shuffle! { [u32; 16], f32, crate::codegen::f32x16 }
-+
-+impl_shuffle! { [u32; 2], m32, crate::codegen::m32x2 }
-+impl_shuffle! { [u32; 4], m32, crate::codegen::m32x4 }
-+impl_shuffle! { [u32; 8], m32, crate::codegen::m32x8 }
-+impl_shuffle! { [u32; 16], m32, crate::codegen::m32x16 }
-
- /* FIXME: 64-bit single element vector
--impl Shuffle<[u32; 1]> for i64 {
-- type Output = crate::codegen::i64x1;
--}
-+impl_shuffle! { [u32; 1], i64, crate::codegen::i64x1 }
- */
--impl Shuffle<[u32; 2]> for i64 {
-- type Output = crate::codegen::i64x2;
--}
--impl Shuffle<[u32; 4]> for i64 {
-- type Output = crate::codegen::i64x4;
--}
--impl Shuffle<[u32; 8]> for i64 {
-- type Output = crate::codegen::i64x8;
--}
-+impl_shuffle! { [u32; 2], i64, crate::codegen::i64x2 }
-+impl_shuffle! { [u32; 4], i64, crate::codegen::i64x4 }
-+impl_shuffle! { [u32; 8], i64, crate::codegen::i64x8 }
-
- /* FIXME: 64-bit single element vector
--impl Shuffle<[u32; 1]> for u64 {
-- type Output = crate::codegen::u64x1;
--}
-+impl_shuffle! { [u32; 1], i64, crate::codegen::i64x1 }
- */
--impl Shuffle<[u32; 2]> for u64 {
-- type Output = crate::codegen::u64x2;
--}
--impl Shuffle<[u32; 4]> for u64 {
-- type Output = crate::codegen::u64x4;
--}
--impl Shuffle<[u32; 8]> for u64 {
-- type Output = crate::codegen::u64x8;
--}
-+impl_shuffle! { [u32; 2], u64, crate::codegen::u64x2 }
-+impl_shuffle! { [u32; 4], u64, crate::codegen::u64x4 }
-+impl_shuffle! { [u32; 8], u64, crate::codegen::u64x8 }
-
- /* FIXME: 64-bit single element vector
--impl Shuffle<[u32; 1]> for f64 {
-- type Output = crate::codegen::f64x1;
--}
-+impl_shuffle! { [u32; 1], i64, crate::codegen::i64x1 }
- */
--impl Shuffle<[u32; 2]> for f64 {
-- type Output = crate::codegen::f64x2;
--}
--impl Shuffle<[u32; 4]> for f64 {
-- type Output = crate::codegen::f64x4;
--}
--impl Shuffle<[u32; 8]> for f64 {
-- type Output = crate::codegen::f64x8;
--}
-+impl_shuffle! { [u32; 2], f64, crate::codegen::f64x2 }
-+impl_shuffle! { [u32; 4], f64, crate::codegen::f64x4 }
-+impl_shuffle! { [u32; 8], f64, crate::codegen::f64x8 }
-
- /* FIXME: 64-bit single element vector
--impl Shuffle<[u32; 1]> for m64 {
-- type Output = crate::codegen::m64x1;
--}
-+impl_shuffle! { [u32; 1], i64, crate::codegen::i64x1 }
- */
--impl Shuffle<[u32; 2]> for m64 {
-- type Output = crate::codegen::m64x2;
--}
--impl Shuffle<[u32; 4]> for m64 {
-- type Output = crate::codegen::m64x4;
--}
--impl Shuffle<[u32; 8]> for m64 {
-- type Output = crate::codegen::m64x8;
--}
-+impl_shuffle! { [u32; 2], m64, crate::codegen::m64x2 }
-+impl_shuffle! { [u32; 4], m64, crate::codegen::m64x4 }
-+impl_shuffle! { [u32; 8], m64, crate::codegen::m64x8 }
-
--impl Shuffle<[u32; 2]> for isize {
-- type Output = crate::codegen::isizex2;
--}
--impl Shuffle<[u32; 4]> for isize {
-- type Output = crate::codegen::isizex4;
--}
--impl Shuffle<[u32; 8]> for isize {
-- type Output = crate::codegen::isizex8;
--}
-+impl_shuffle! { [u32; 2], isize, crate::codegen::isizex2 }
-+impl_shuffle! { [u32; 4], isize, crate::codegen::isizex4 }
-+impl_shuffle! { [u32; 8], isize, crate::codegen::isizex8 }
-
--impl Shuffle<[u32; 2]> for usize {
-- type Output = crate::codegen::usizex2;
--}
--impl Shuffle<[u32; 4]> for usize {
-- type Output = crate::codegen::usizex4;
--}
--impl Shuffle<[u32; 8]> for usize {
-- type Output = crate::codegen::usizex8;
--}
-+impl_shuffle! { [u32; 2], usize, crate::codegen::usizex2 }
-+impl_shuffle! { [u32; 4], usize, crate::codegen::usizex4 }
-+impl_shuffle! { [u32; 8], usize, crate::codegen::usizex8 }
-
-+impl_shuffle! { [u32; 2], msize, crate::codegen::msizex2 }
-+impl_shuffle! { [u32; 4], msize, crate::codegen::msizex4 }
-+impl_shuffle! { [u32; 8], msize, crate::codegen::msizex8 }
-+
-+impl<T> Seal<[u32; 2]> for *const T {}
- impl<T> Shuffle<[u32; 2]> for *const T {
- type Output = crate::codegen::cptrx2<T>;
- }
-+impl<T> Seal<[u32; 4]> for *const T {}
- impl<T> Shuffle<[u32; 4]> for *const T {
- type Output = crate::codegen::cptrx4<T>;
- }
-+impl<T> Seal<[u32; 8]> for *const T {}
- impl<T> Shuffle<[u32; 8]> for *const T {
- type Output = crate::codegen::cptrx8<T>;
- }
-
-+impl<T> Seal<[u32; 2]> for *mut T {}
- impl<T> Shuffle<[u32; 2]> for *mut T {
- type Output = crate::codegen::mptrx2<T>;
- }
-+impl<T> Seal<[u32; 4]> for *mut T {}
- impl<T> Shuffle<[u32; 4]> for *mut T {
- type Output = crate::codegen::mptrx4<T>;
- }
-+impl<T> Seal<[u32; 8]> for *mut T {}
- impl<T> Shuffle<[u32; 8]> for *mut T {
- type Output = crate::codegen::mptrx8<T>;
- }
-
--impl Shuffle<[u32; 2]> for msize {
-- type Output = crate::codegen::msizex2;
--}
--impl Shuffle<[u32; 4]> for msize {
-- type Output = crate::codegen::msizex4;
--}
--impl Shuffle<[u32; 8]> for msize {
-- type Output = crate::codegen::msizex8;
--}
-+impl_shuffle! { [u32; 1], i128, crate::codegen::i128x1 }
-+impl_shuffle! { [u32; 2], i128, crate::codegen::i128x2 }
-+impl_shuffle! { [u32; 4], i128, crate::codegen::i128x4 }
-
--impl Shuffle<[u32; 1]> for i128 {
-- type Output = crate::codegen::i128x1;
--}
--impl Shuffle<[u32; 2]> for i128 {
-- type Output = crate::codegen::i128x2;
--}
--impl Shuffle<[u32; 4]> for i128 {
-- type Output = crate::codegen::i128x4;
--}
-+impl_shuffle! { [u32; 1], u128, crate::codegen::u128x1 }
-+impl_shuffle! { [u32; 2], u128, crate::codegen::u128x2 }
-+impl_shuffle! { [u32; 4], u128, crate::codegen::u128x4 }
-
--impl Shuffle<[u32; 1]> for u128 {
-- type Output = crate::codegen::u128x1;
--}
--impl Shuffle<[u32; 2]> for u128 {
-- type Output = crate::codegen::u128x2;
--}
--impl Shuffle<[u32; 4]> for u128 {
-- type Output = crate::codegen::u128x4;
--}
--
--impl Shuffle<[u32; 1]> for m128 {
-- type Output = crate::codegen::m128x1;
--}
--impl Shuffle<[u32; 2]> for m128 {
-- type Output = crate::codegen::m128x2;
--}
--impl Shuffle<[u32; 4]> for m128 {
-- type Output = crate::codegen::m128x4;
--}
-+impl_shuffle! { [u32; 1], m128, crate::codegen::m128x1 }
-+impl_shuffle! { [u32; 2], m128, crate::codegen::m128x2 }
-+impl_shuffle! { [u32; 4], m128, crate::codegen::m128x4 }
-diff --git third_party/rust/packed_simd/src/codegen/shuffle1_dyn.rs third_party/rust/packed_simd/src/codegen/shuffle1_dyn.rs
-index 1e9f5816371a..a5403a06bb6e 100644
---- third_party/rust/packed_simd/src/codegen/shuffle1_dyn.rs
-+++ third_party/rust/packed_simd/src/codegen/shuffle1_dyn.rs
-@@ -28,31 +28,10 @@ macro_rules! impl_fallback {
- macro_rules! impl_shuffle1_dyn {
- (u8x8) => {
- cfg_if! {
-- if #[cfg(all(any(target_arch = "x86", target_arch = "x86_64"),
-- target_feature = "ssse3"))] {
-- impl Shuffle1Dyn for u8x8 {
-- type Indices = Self;
-- #[inline]
-- fn shuffle1_dyn(self, indices: Self::Indices) -> Self {
-- #[cfg(target_arch = "x86")]
-- use crate::arch::x86::_mm_shuffle_pi8;
-- #[cfg(target_arch = "x86_64")]
-- use crate::arch::x86_64::_mm_shuffle_pi8;
--
-- unsafe {
-- crate::mem::transmute(
-- _mm_shuffle_pi8(
-- crate::mem::transmute(self.0),
-- crate::mem::transmute(indices.0)
-- )
-- )
-- }
-- }
-- }
-- } else if #[cfg(all(
-+ if #[cfg(all(
- any(
-- all(target_aarch = "aarch64", target_feature = "neon"),
-- all(target_aarch = "arm", target_feature = "v7",
-+ all(target_arch = "aarch64", target_feature = "neon"),
-+ all(target_arch = "doesnotexist", target_feature = "v7",
- target_feature = "neon")
- ),
- any(feature = "core_arch", libcore_neon)
-@@ -62,9 +41,9 @@ macro_rules! impl_shuffle1_dyn {
- type Indices = Self;
- #[inline]
- fn shuffle1_dyn(self, indices: Self::Indices) -> Self {
-- #[cfg(targt_arch = "aarch64")]
-+ #[cfg(target_arch = "aarch64")]
- use crate::arch::aarch64::vtbl1_u8;
-- #[cfg(targt_arch = "arm")]
-+ #[cfg(target_arch = "doesnotexist")]
- use crate::arch::arm::vtbl1_u8;
-
- // This is safe because the binary is compiled with
-@@ -106,7 +85,7 @@ macro_rules! impl_shuffle1_dyn {
- }
- }
- }
-- } else if #[cfg(all(target_aarch = "aarch64", target_feature = "neon",
-+ } else if #[cfg(all(target_arch = "aarch64", target_feature = "neon",
- any(feature = "core_arch", libcore_neon)))] {
- impl Shuffle1Dyn for u8x16 {
- type Indices = Self;
-@@ -125,7 +104,7 @@ macro_rules! impl_shuffle1_dyn {
- }
- }
- }
-- } else if #[cfg(all(target_aarch = "arm", target_feature = "v7",
-+ } else if #[cfg(all(target_arch = "doesnotexist", target_feature = "v7",
- target_feature = "neon",
- any(feature = "core_arch", libcore_neon)))] {
- impl Shuffle1Dyn for u8x16 {
-diff --git third_party/rust/packed_simd/src/codegen/vPtr.rs third_party/rust/packed_simd/src/codegen/vPtr.rs
-index 1f2bc7714dd9..cf4765538178 100644
---- third_party/rust/packed_simd/src/codegen/vPtr.rs
-+++ third_party/rust/packed_simd/src/codegen/vPtr.rs
-@@ -8,6 +8,7 @@ macro_rules! impl_simd_ptr {
- pub struct $tuple_id<$ty>($(crate $tys),*);
- //^^^^^^^ leaked through SimdArray
-
-+ impl<$ty> crate::sealed::Seal for [$ptr_ty; $elem_count] {}
- impl<$ty> crate::sealed::SimdArray for [$ptr_ty; $elem_count] {
- type Tuple = $tuple_id<$ptr_ty>;
- type T = $ptr_ty;
-@@ -15,6 +16,7 @@ macro_rules! impl_simd_ptr {
- type NT = [u32; $elem_count];
- }
-
-+ impl<$ty> crate::sealed::Seal for $tuple_id<$ptr_ty> {}
- impl<$ty> crate::sealed::Simd for $tuple_id<$ptr_ty> {
- type Element = $ptr_ty;
- const LANES: usize = $elem_count;
-diff --git third_party/rust/packed_simd/src/lib.rs third_party/rust/packed_simd/src/lib.rs
-index d73645e72fbe..b0b56d4d7461 100644
---- third_party/rust/packed_simd/src/lib.rs
-+++ third_party/rust/packed_simd/src/lib.rs
-@@ -201,6 +201,7 @@
-
- #![feature(
- repr_simd,
-+ rustc_attrs,
- const_fn,
- platform_intrinsics,
- stdsimd,
-@@ -209,22 +210,26 @@
- link_llvm_intrinsics,
- core_intrinsics,
- stmt_expr_attributes,
-- align_offset,
-- mmx_target_feature,
- crate_visibility_modifier,
- custom_inner_attributes
- )]
- #![allow(non_camel_case_types, non_snake_case,
-- clippy::cast_possible_truncation,
-- clippy::cast_lossless,
-- clippy::cast_possible_wrap,
-- clippy::cast_precision_loss,
-- // This lint is currently broken for generic code
-- // See https://github.com/rust-lang/rust-clippy/issues/3410
-- clippy::use_self
-+ // FIXME: these types are unsound in C FFI already
-+ // See https://github.com/rust-lang/rust/issues/53346
-+ improper_ctypes_definitions,
-+ clippy::cast_possible_truncation,
-+ clippy::cast_lossless,
-+ clippy::cast_possible_wrap,
-+ clippy::cast_precision_loss,
-+ // TODO: manually add the `#[must_use]` attribute where appropriate
-+ clippy::must_use_candidate,
-+ // This lint is currently broken for generic code
-+ // See https://github.com/rust-lang/rust-clippy/issues/3410
-+ clippy::use_self,
-+ clippy::wrong_self_convention,
- )]
- #![cfg_attr(test, feature(hashmap_internals))]
--#![deny(warnings, rust_2018_idioms, clippy::missing_inline_in_public_items)]
-+#![deny(rust_2018_idioms, clippy::missing_inline_in_public_items)]
- #![no_std]
-
- use cfg_if::cfg_if;
-@@ -256,6 +261,8 @@ mod api;
- mod codegen;
- mod sealed;
-
-+pub use crate::sealed::{Simd as SimdVector, Shuffle, SimdArray, Mask};
-+
- /// Packed SIMD vector type.
- ///
- /// # Examples
-@@ -276,6 +283,8 @@ pub struct Simd<A: sealed::SimdArray>(
- #[doc(hidden)] pub <A as sealed::SimdArray>::Tuple,
- );
-
-+impl<A: sealed::SimdArray> sealed::Seal for Simd<A> {}
-+
- /// Wrapper over `T` implementing a lexicoraphical order via the `PartialOrd`
- /// and/or `Ord` traits.
- #[repr(transparent)]
-diff --git third_party/rust/packed_simd/src/masks.rs third_party/rust/packed_simd/src/masks.rs
-index f83c4da95750..aeb36d232804 100644
---- third_party/rust/packed_simd/src/masks.rs
-+++ third_party/rust/packed_simd/src/masks.rs
-@@ -6,7 +6,9 @@ macro_rules! impl_mask_ty {
- #[derive(Copy, Clone)]
- pub struct $id($elem_ty);
-
-+ impl crate::sealed::Seal for $id {}
- impl crate::sealed::Mask for $id {
-+ #[inline]
- fn test(&self) -> bool {
- $id::test(self)
- }
-diff --git third_party/rust/packed_simd/src/sealed.rs third_party/rust/packed_simd/src/sealed.rs
-index 832acd3f1d54..0ec20300fdd4 100644
---- third_party/rust/packed_simd/src/sealed.rs
-+++ third_party/rust/packed_simd/src/sealed.rs
-@@ -1,8 +1,11 @@
- //! Sealed traits
-
-+/// A sealed trait, this is logically private to the crate
-+/// and will prevent implementations from outside the crate
-+pub trait Seal<T = ()> {}
-+
- /// Trait implemented by arrays that can be SIMD types.
--#[doc(hidden)]
--pub trait SimdArray {
-+pub trait SimdArray: Seal {
- /// The type of the #[repr(simd)] type.
- type Tuple: Copy + Clone;
- /// The element type of the vector.
-@@ -16,7 +19,7 @@ pub trait SimdArray {
- /// This traits is used to constraint the arguments
- /// and result type of the portable shuffles.
- #[doc(hidden)]
--pub trait Shuffle<Lanes> {
-+pub trait Shuffle<Lanes>: Seal<Lanes> {
- // Lanes is a `[u32; N]` where `N` is the number of vector lanes
-
- /// The result type of the shuffle.
-@@ -24,8 +27,7 @@ pub trait Shuffle<Lanes> {
- }
-
- /// This trait is implemented by all SIMD vector types.
--#[doc(hidden)]
--pub trait Simd {
-+pub trait Simd: Seal {
- /// Element type of the SIMD vector
- type Element;
- /// The number of elements in the SIMD vector.
-@@ -35,7 +37,6 @@ pub trait Simd {
- }
-
- /// This trait is implemented by all mask types
--#[doc(hidden)]
--pub trait Mask {
-+pub trait Mask: Seal {
- fn test(&self) -> bool;
- }
-diff --git third_party/rust/packed_simd/src/testing/utils.rs third_party/rust/packed_simd/src/testing/utils.rs
-index 7b8f21ac1c55..21f27aae5432 100644
---- third_party/rust/packed_simd/src/testing/utils.rs
-+++ third_party/rust/packed_simd/src/testing/utils.rs
-@@ -1,6 +1,8 @@
- //! Testing utilities
-
- #![allow(dead_code)]
-+// FIXME: Or don't. But it's true this is a problematic comparison.
-+#![allow(clippy::neg_cmp_op_on_partial_ord)]
-
- use crate::{cmp::PartialOrd, fmt::Debug, LexicographicallyOrdered};
-
-@@ -19,14 +21,19 @@ pub fn test_lt<T>(
- assert!(a <= b, "{:?}, {:?}", a, b);
- assert!(b >= a, "{:?}, {:?}", a, b);
-
-- // Irreflexivity
-- assert!(!(a < a), "{:?}, {:?}", a, b);
-- assert!(!(b < b), "{:?}, {:?}", a, b);
-- assert!(!(a > a), "{:?}, {:?}", a, b);
-- assert!(!(b > b), "{:?}, {:?}", a, b);
-+ // The elegance of the mathematical expression of irreflexivity is more
-+ // than clippy can handle.
-+ #[allow(clippy::eq_op)]
-+ {
-+ // Irreflexivity
-+ assert!(!(a < a), "{:?}, {:?}", a, b);
-+ assert!(!(b < b), "{:?}, {:?}", a, b);
-+ assert!(!(a > a), "{:?}, {:?}", a, b);
-+ assert!(!(b > b), "{:?}, {:?}", a, b);
-
-- assert!(a <= a, "{:?}, {:?}", a, b);
-- assert!(b <= b, "{:?}, {:?}", a, b);
-+ assert!(a <= a, "{:?}, {:?}", a, b);
-+ assert!(b <= b, "{:?}, {:?}", a, b);
-+ }
- }
-
- /// Tests PartialOrd for `a` and `b` where `a <= b` is true.
-@@ -38,8 +45,8 @@ pub fn test_le<T>(
- assert!(a <= b, "{:?}, {:?}", a, b);
- assert!(b >= a, "{:?}, {:?}", a, b);
-
-- assert!(a == b || a < b, "{:?}, {:?}", a, b);
-- assert!(a == b || b > a, "{:?}, {:?}", a, b);
-+ assert!(a <= b, "{:?}, {:?}", a, b);
-+ assert!(b >= a, "{:?}, {:?}", a, b);
-
- if a == b {
- assert!(!(a < b), "{:?}, {:?}", a, b);
-diff --git third_party/rust/packed_simd/src/v128.rs third_party/rust/packed_simd/src/v128.rs
-index 1d0282dc4278..7949f6619a4f 100644
---- third_party/rust/packed_simd/src/v128.rs
-+++ third_party/rust/packed_simd/src/v128.rs
-@@ -1,42 +1,42 @@
- //! 128-bit wide vector types
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
--impl_i!([i8; 16]: i8x16, m8x16 | i8 | test_v128 |
-+impl_i!([i8; 16]: i8x16, m8x16 | i8, u16 | test_v128 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: |
- /// A 128-bit vector with 16 `i8` lanes.
- );
--impl_u!([u8; 16]: u8x16, m8x16 | u8 | test_v128 |
-+impl_u!([u8; 16]: u8x16, m8x16 | u8, u16 | test_v128 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: |
- /// A 128-bit vector with 16 `u8` lanes.
- );
--impl_m!([m8; 16]: m8x16 | i8 | test_v128 |
-+impl_m!([m8; 16]: m8x16 | i8, u16 | test_v128 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: m16x16 |
- /// A 128-bit vector mask with 16 `m8` lanes.
- );
-
--impl_i!([i16; 8]: i16x8, m16x8 | i16 | test_v128 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_i!([i16; 8]: i16x8, m16x8 | i16, u8 | test_v128 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: i8x8, u8x8 |
- /// A 128-bit vector with 8 `i16` lanes.
- );
--impl_u!([u16; 8]: u16x8, m16x8 | u16| test_v128 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_u!([u16; 8]: u16x8, m16x8 | u16, u8 | test_v128 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: u8x8 |
- /// A 128-bit vector with 8 `u16` lanes.
- );
--impl_m!([m16; 8]: m16x8 | i16 | test_v128 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_m!([m16; 8]: m16x8 | i16, u8 | test_v128 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: m8x8, m32x8 |
- /// A 128-bit vector mask with 8 `m16` lanes.
- );
-
--impl_i!([i32; 4]: i32x4, m32x4 | i32 | test_v128 | x0, x1, x2, x3 |
-+impl_i!([i32; 4]: i32x4, m32x4 | i32, u8 | test_v128 | x0, x1, x2, x3 |
- From: i8x4, u8x4, i16x4, u16x4 |
- /// A 128-bit vector with 4 `i32` lanes.
- );
--impl_u!([u32; 4]: u32x4, m32x4 | u32| test_v128 | x0, x1, x2, x3 |
-+impl_u!([u32; 4]: u32x4, m32x4 | u32, u8 | test_v128 | x0, x1, x2, x3 |
- From: u8x4, u16x4 |
- /// A 128-bit vector with 4 `u32` lanes.
- );
-@@ -44,16 +44,16 @@ impl_f!([f32; 4]: f32x4, m32x4 | f32 | test_v128 | x0, x1, x2, x3 |
- From: i8x4, u8x4, i16x4, u16x4 |
- /// A 128-bit vector with 4 `f32` lanes.
- );
--impl_m!([m32; 4]: m32x4 | i32 | test_v128 | x0, x1, x2, x3 |
-+impl_m!([m32; 4]: m32x4 | i32, u8 | test_v128 | x0, x1, x2, x3 |
- From: m8x4, m16x4, m64x4 |
- /// A 128-bit vector mask with 4 `m32` lanes.
- );
-
--impl_i!([i64; 2]: i64x2, m64x2 | i64 | test_v128 | x0, x1 |
-+impl_i!([i64; 2]: i64x2, m64x2 | i64, u8 | test_v128 | x0, x1 |
- From: i8x2, u8x2, i16x2, u16x2, i32x2, u32x2 |
- /// A 128-bit vector with 2 `i64` lanes.
- );
--impl_u!([u64; 2]: u64x2, m64x2 | u64 | test_v128 | x0, x1 |
-+impl_u!([u64; 2]: u64x2, m64x2 | u64, u8 | test_v128 | x0, x1 |
- From: u8x2, u16x2, u32x2 |
- /// A 128-bit vector with 2 `u64` lanes.
- );
-@@ -61,20 +61,20 @@ impl_f!([f64; 2]: f64x2, m64x2 | f64 | test_v128 | x0, x1 |
- From: i8x2, u8x2, i16x2, u16x2, i32x2, u32x2, f32x2 |
- /// A 128-bit vector with 2 `f64` lanes.
- );
--impl_m!([m64; 2]: m64x2 | i64 | test_v128 | x0, x1 |
-+impl_m!([m64; 2]: m64x2 | i64, u8 | test_v128 | x0, x1 |
- From: m8x2, m16x2, m32x2, m128x2 |
- /// A 128-bit vector mask with 2 `m64` lanes.
- );
-
--impl_i!([i128; 1]: i128x1, m128x1 | i128 | test_v128 | x0 |
-+impl_i!([i128; 1]: i128x1, m128x1 | i128, u8 | test_v128 | x0 |
- From: /*i8x1, u8x1, i16x1, u16x1, i32x1, u32x1, i64x1, u64x1 */ | // FIXME: unary small vector types
- /// A 128-bit vector with 1 `i128` lane.
- );
--impl_u!([u128; 1]: u128x1, m128x1 | u128 | test_v128 | x0 |
-+impl_u!([u128; 1]: u128x1, m128x1 | u128, u8 | test_v128 | x0 |
- From: /*u8x1, u16x1, u32x1, u64x1 */ | // FIXME: unary small vector types
- /// A 128-bit vector with 1 `u128` lane.
- );
--impl_m!([m128; 1]: m128x1 | i128 | test_v128 | x0 |
-+impl_m!([m128; 1]: m128x1 | i128, u8 | test_v128 | x0 |
- From: /*m8x1, m16x1, m32x1, m64x1 */ | // FIXME: unary small vector types
- /// A 128-bit vector mask with 1 `m128` lane.
- );
-diff --git third_party/rust/packed_simd/src/v16.rs third_party/rust/packed_simd/src/v16.rs
-index 67a3832d2530..4ca5afb2a7d5 100644
---- third_party/rust/packed_simd/src/v16.rs
-+++ third_party/rust/packed_simd/src/v16.rs
-@@ -2,15 +2,15 @@
-
- use crate::*;
-
--impl_i!([i8; 2]: i8x2, m8x2 | i8 | test_v16 | x0, x1 |
-+impl_i!([i8; 2]: i8x2, m8x2 | i8, u8 | test_v16 | x0, x1 |
- From: |
- /// A 16-bit vector with 2 `i8` lanes.
- );
--impl_u!([u8; 2]: u8x2, m8x2 | u8 | test_v16 | x0, x1 |
-+impl_u!([u8; 2]: u8x2, m8x2 | u8, u8 | test_v16 | x0, x1 |
- From: |
- /// A 16-bit vector with 2 `u8` lanes.
- );
--impl_m!([m8; 2]: m8x2 | i8 | test_v16 | x0, x1 |
-+impl_m!([m8; 2]: m8x2 | i8, u8 | test_v16 | x0, x1 |
- From: m16x2, m32x2, m64x2, m128x2 |
- /// A 16-bit vector mask with 2 `m8` lanes.
- );
-diff --git third_party/rust/packed_simd/src/v256.rs third_party/rust/packed_simd/src/v256.rs
-index 6b59336f68b6..f0c3bc281383 100644
---- third_party/rust/packed_simd/src/v256.rs
-+++ third_party/rust/packed_simd/src/v256.rs
-@@ -1,48 +1,48 @@
- //! 256-bit wide vector types
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
--impl_i!([i8; 32]: i8x32, m8x32 | i8 | test_v256 |
-+impl_i!([i8; 32]: i8x32, m8x32 | i8, u32 | test_v256 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31 |
- From: |
- /// A 256-bit vector with 32 `i8` lanes.
- );
--impl_u!([u8; 32]: u8x32, m8x32 | u8 | test_v256 |
-+impl_u!([u8; 32]: u8x32, m8x32 | u8, u32 | test_v256 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31 |
- From: |
- /// A 256-bit vector with 32 `u8` lanes.
- );
--impl_m!([m8; 32]: m8x32 | i8 | test_v256 |
-+impl_m!([m8; 32]: m8x32 | i8, u32 | test_v256 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31 |
- From: |
- /// A 256-bit vector mask with 32 `m8` lanes.
- );
-
--impl_i!([i16; 16]: i16x16, m16x16 | i16 | test_v256 |
-+impl_i!([i16; 16]: i16x16, m16x16 | i16, u16 | test_v256 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: i8x16, u8x16 |
- /// A 256-bit vector with 16 `i16` lanes.
- );
--impl_u!([u16; 16]: u16x16, m16x16 | u16 | test_v256 |
-+impl_u!([u16; 16]: u16x16, m16x16 | u16, u16 | test_v256 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: u8x16 |
- /// A 256-bit vector with 16 `u16` lanes.
- );
--impl_m!([m16; 16]: m16x16 | i16 | test_v256 |
-+impl_m!([m16; 16]: m16x16 | i16, u16 | test_v256 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: m8x16 |
- /// A 256-bit vector mask with 16 `m16` lanes.
- );
-
--impl_i!([i32; 8]: i32x8, m32x8 | i32 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_i!([i32; 8]: i32x8, m32x8 | i32, u8 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: i8x8, u8x8, i16x8, u16x8 |
- /// A 256-bit vector with 8 `i32` lanes.
- );
--impl_u!([u32; 8]: u32x8, m32x8 | u32 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_u!([u32; 8]: u32x8, m32x8 | u32, u8 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: u8x8, u16x8 |
- /// A 256-bit vector with 8 `u32` lanes.
- );
-@@ -50,16 +50,16 @@ impl_f!([f32; 8]: f32x8, m32x8 | f32 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x
- From: i8x8, u8x8, i16x8, u16x8 |
- /// A 256-bit vector with 8 `f32` lanes.
- );
--impl_m!([m32; 8]: m32x8 | i32 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_m!([m32; 8]: m32x8 | i32, u8 | test_v256 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: m8x8, m16x8 |
- /// A 256-bit vector mask with 8 `m32` lanes.
- );
-
--impl_i!([i64; 4]: i64x4, m64x4 | i64 | test_v256 | x0, x1, x2, x3 |
-+impl_i!([i64; 4]: i64x4, m64x4 | i64, u8 | test_v256 | x0, x1, x2, x3 |
- From: i8x4, u8x4, i16x4, u16x4, i32x4, u32x4 |
- /// A 256-bit vector with 4 `i64` lanes.
- );
--impl_u!([u64; 4]: u64x4, m64x4 | u64 | test_v256 | x0, x1, x2, x3 |
-+impl_u!([u64; 4]: u64x4, m64x4 | u64, u8 | test_v256 | x0, x1, x2, x3 |
- From: u8x4, u16x4, u32x4 |
- /// A 256-bit vector with 4 `u64` lanes.
- );
-@@ -67,20 +67,20 @@ impl_f!([f64; 4]: f64x4, m64x4 | f64 | test_v256 | x0, x1, x2, x3 |
- From: i8x4, u8x4, i16x4, u16x4, i32x4, u32x4, f32x4 |
- /// A 256-bit vector with 4 `f64` lanes.
- );
--impl_m!([m64; 4]: m64x4 | i64 | test_v256 | x0, x1, x2, x3 |
-+impl_m!([m64; 4]: m64x4 | i64, u8 | test_v256 | x0, x1, x2, x3 |
- From: m8x4, m16x4, m32x4 |
- /// A 256-bit vector mask with 4 `m64` lanes.
- );
-
--impl_i!([i128; 2]: i128x2, m128x2 | i128 | test_v256 | x0, x1 |
-+impl_i!([i128; 2]: i128x2, m128x2 | i128, u8 | test_v256 | x0, x1 |
- From: i8x2, u8x2, i16x2, u16x2, i32x2, u32x2, i64x2, u64x2 |
- /// A 256-bit vector with 2 `i128` lanes.
- );
--impl_u!([u128; 2]: u128x2, m128x2 | u128 | test_v256 | x0, x1 |
-+impl_u!([u128; 2]: u128x2, m128x2 | u128, u8 | test_v256 | x0, x1 |
- From: u8x2, u16x2, u32x2, u64x2 |
- /// A 256-bit vector with 2 `u128` lanes.
- );
--impl_m!([m128; 2]: m128x2 | i128 | test_v256 | x0, x1 |
-+impl_m!([m128; 2]: m128x2 | i128, u8 | test_v256 | x0, x1 |
- From: m8x2, m16x2, m32x2, m64x2 |
- /// A 256-bit vector mask with 2 `m128` lanes.
- );
-diff --git third_party/rust/packed_simd/src/v32.rs third_party/rust/packed_simd/src/v32.rs
-index 09cef9bdd472..75a1838e5e0e 100644
---- third_party/rust/packed_simd/src/v32.rs
-+++ third_party/rust/packed_simd/src/v32.rs
-@@ -2,28 +2,28 @@
-
- use crate::*;
-
--impl_i!([i8; 4]: i8x4, m8x4 | i8 | test_v32 | x0, x1, x2, x3 |
-+impl_i!([i8; 4]: i8x4, m8x4 | i8, u8 | test_v32 | x0, x1, x2, x3 |
- From: |
- /// A 32-bit vector with 4 `i8` lanes.
- );
--impl_u!([u8; 4]: u8x4, m8x4 | u8 | test_v32 | x0, x1, x2, x3 |
-+impl_u!([u8; 4]: u8x4, m8x4 | u8, u8 | test_v32 | x0, x1, x2, x3 |
- From: |
- /// A 32-bit vector with 4 `u8` lanes.
- );
--impl_m!([m8; 4]: m8x4 | i8 | test_v32 | x0, x1, x2, x3 |
-+impl_m!([m8; 4]: m8x4 | i8, u8 | test_v32 | x0, x1, x2, x3 |
- From: m16x4, m32x4, m64x4 |
- /// A 32-bit vector mask with 4 `m8` lanes.
- );
-
--impl_i!([i16; 2]: i16x2, m16x2 | i16 | test_v32 | x0, x1 |
-+impl_i!([i16; 2]: i16x2, m16x2 | i16, u8 | test_v32 | x0, x1 |
- From: i8x2, u8x2 |
- /// A 32-bit vector with 2 `i16` lanes.
- );
--impl_u!([u16; 2]: u16x2, m16x2 | u16 | test_v32 | x0, x1 |
-+impl_u!([u16; 2]: u16x2, m16x2 | u16, u8 | test_v32 | x0, x1 |
- From: u8x2 |
- /// A 32-bit vector with 2 `u16` lanes.
- );
--impl_m!([m16; 2]: m16x2 | i16 | test_v32 | x0, x1 |
-+impl_m!([m16; 2]: m16x2 | i16, u8 | test_v32 | x0, x1 |
- From: m8x2, m32x2, m64x2, m128x2 |
- /// A 32-bit vector mask with 2 `m16` lanes.
- );
-diff --git third_party/rust/packed_simd/src/v512.rs third_party/rust/packed_simd/src/v512.rs
-index b1714aded369..4c8c71338aca 100644
---- third_party/rust/packed_simd/src/v512.rs
-+++ third_party/rust/packed_simd/src/v512.rs
-@@ -1,9 +1,9 @@
- //! 512-bit wide vector types
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
--impl_i!([i8; 64]: i8x64, m8x64 | i8 | test_v512 |
-+impl_i!([i8; 64]: i8x64, m8x64 | i8, u64 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31,
- x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42, x43, x44, x45, x46, x47,
-@@ -11,7 +11,7 @@ impl_i!([i8; 64]: i8x64, m8x64 | i8 | test_v512 |
- From: |
- /// A 512-bit vector with 64 `i8` lanes.
- );
--impl_u!([u8; 64]: u8x64, m8x64 | u8 | test_v512 |
-+impl_u!([u8; 64]: u8x64, m8x64 | u8, u64 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31,
- x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42, x43, x44, x45, x46, x47,
-@@ -19,7 +19,7 @@ impl_u!([u8; 64]: u8x64, m8x64 | u8 | test_v512 |
- From: |
- /// A 512-bit vector with 64 `u8` lanes.
- );
--impl_m!([m8; 64]: m8x64 | i8 | test_v512 |
-+impl_m!([m8; 64]: m8x64 | i8, u64 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31,
- x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42, x43, x44, x45, x46, x47,
-@@ -28,31 +28,31 @@ impl_m!([m8; 64]: m8x64 | i8 | test_v512 |
- /// A 512-bit vector mask with 64 `m8` lanes.
- );
-
--impl_i!([i16; 32]: i16x32, m16x32 | i16 | test_v512 |
-+impl_i!([i16; 32]: i16x32, m16x32 | i16, u32 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31 |
- From: i8x32, u8x32 |
- /// A 512-bit vector with 32 `i16` lanes.
- );
--impl_u!([u16; 32]: u16x32, m16x32 | u16 | test_v512 |
-+impl_u!([u16; 32]: u16x32, m16x32 | u16, u32 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31 |
- From: u8x32 |
- /// A 512-bit vector with 32 `u16` lanes.
- );
--impl_m!([m16; 32]: m16x32 | i16 | test_v512 |
-+impl_m!([m16; 32]: m16x32 | i16, u32 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15,
- x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31 |
- From: m8x32 |
- /// A 512-bit vector mask with 32 `m16` lanes.
- );
-
--impl_i!([i32; 16]: i32x16, m32x16 | i32 | test_v512 |
-+impl_i!([i32; 16]: i32x16, m32x16 | i32, u16 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: i8x16, u8x16, i16x16, u16x16 |
- /// A 512-bit vector with 16 `i32` lanes.
- );
--impl_u!([u32; 16]: u32x16, m32x16 | u32 | test_v512 |
-+impl_u!([u32; 16]: u32x16, m32x16 | u32, u16 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: u8x16, u16x16 |
- /// A 512-bit vector with 16 `u32` lanes.
-@@ -62,17 +62,17 @@ impl_f!([f32; 16]: f32x16, m32x16 | f32 | test_v512 |
- From: i8x16, u8x16, i16x16, u16x16 |
- /// A 512-bit vector with 16 `f32` lanes.
- );
--impl_m!([m32; 16]: m32x16 | i32 | test_v512 |
-+impl_m!([m32; 16]: m32x16 | i32, u16 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15 |
- From: m8x16, m16x16 |
- /// A 512-bit vector mask with 16 `m32` lanes.
- );
-
--impl_i!([i64; 8]: i64x8, m64x8 | i64 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_i!([i64; 8]: i64x8, m64x8 | i64, u8 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: i8x8, u8x8, i16x8, u16x8, i32x8, u32x8 |
- /// A 512-bit vector with 8 `i64` lanes.
- );
--impl_u!([u64; 8]: u64x8, m64x8 | u64 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_u!([u64; 8]: u64x8, m64x8 | u64, u8 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: u8x8, u16x8, u32x8 |
- /// A 512-bit vector with 8 `u64` lanes.
- );
-@@ -80,20 +80,20 @@ impl_f!([f64; 8]: f64x8, m64x8 | f64 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x
- From: i8x8, u8x8, i16x8, u16x8, i32x8, u32x8, f32x8 |
- /// A 512-bit vector with 8 `f64` lanes.
- );
--impl_m!([m64; 8]: m64x8 | i64 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_m!([m64; 8]: m64x8 | i64, u8 | test_v512 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: m8x8, m16x8, m32x8 |
- /// A 512-bit vector mask with 8 `m64` lanes.
- );
-
--impl_i!([i128; 4]: i128x4, m128x4 | i128 | test_v512 | x0, x1, x2, x3 |
-+impl_i!([i128; 4]: i128x4, m128x4 | i128, u8 | test_v512 | x0, x1, x2, x3 |
- From: i8x4, u8x4, i16x4, u16x4, i32x4, u32x4, i64x4, u64x4 |
- /// A 512-bit vector with 4 `i128` lanes.
- );
--impl_u!([u128; 4]: u128x4, m128x4 | u128 | test_v512 | x0, x1, x2, x3 |
-+impl_u!([u128; 4]: u128x4, m128x4 | u128, u8 | test_v512 | x0, x1, x2, x3 |
- From: u8x4, u16x4, u32x4, u64x4 |
- /// A 512-bit vector with 4 `u128` lanes.
- );
--impl_m!([m128; 4]: m128x4 | i128 | test_v512 | x0, x1, x2, x3 |
-+impl_m!([m128; 4]: m128x4 | i128, u8 | test_v512 | x0, x1, x2, x3 |
- From: m8x4, m16x4, m32x4, m64x4 |
- /// A 512-bit vector mask with 4 `m128` lanes.
- );
-diff --git third_party/rust/packed_simd/src/v64.rs third_party/rust/packed_simd/src/v64.rs
-index 1ee6219c040b..bf6b9de61005 100644
---- third_party/rust/packed_simd/src/v64.rs
-+++ third_party/rust/packed_simd/src/v64.rs
-@@ -1,43 +1,43 @@
- //! 64-bit wide vector types
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use super::*;
-
--impl_i!([i8; 8]: i8x8, m8x8 | i8 | test_v64 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_i!([i8; 8]: i8x8, m8x8 | i8, u8 | test_v64 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: |
- /// A 64-bit vector with 8 `i8` lanes.
- );
--impl_u!([u8; 8]: u8x8, m8x8 | u8 | test_v64 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_u!([u8; 8]: u8x8, m8x8 | u8, u8 | test_v64 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: |
- /// A 64-bit vector with 8 `u8` lanes.
- );
--impl_m!([m8; 8]: m8x8 | i8 | test_v64 | x0, x1, x2, x3, x4, x5, x6, x7 |
-+impl_m!([m8; 8]: m8x8 | i8, u8 | test_v64 | x0, x1, x2, x3, x4, x5, x6, x7 |
- From: m16x8, m32x8 |
- /// A 64-bit vector mask with 8 `m8` lanes.
- );
-
--impl_i!([i16; 4]: i16x4, m16x4 | i16 | test_v64 | x0, x1, x2, x3 |
-+impl_i!([i16; 4]: i16x4, m16x4 | i16, u8 | test_v64 | x0, x1, x2, x3 |
- From: i8x4, u8x4 |
- /// A 64-bit vector with 4 `i16` lanes.
- );
--impl_u!([u16; 4]: u16x4, m16x4 | u16 | test_v64 | x0, x1, x2, x3 |
-+impl_u!([u16; 4]: u16x4, m16x4 | u16, u8 | test_v64 | x0, x1, x2, x3 |
- From: u8x4 |
- /// A 64-bit vector with 4 `u16` lanes.
- );
--impl_m!([m16; 4]: m16x4 | i16 | test_v64 | x0, x1, x2, x3 |
-+impl_m!([m16; 4]: m16x4 | i16, u8 | test_v64 | x0, x1, x2, x3 |
- From: m8x4, m32x4, m64x4 |
- /// A 64-bit vector mask with 4 `m16` lanes.
- );
-
--impl_i!([i32; 2]: i32x2, m32x2 | i32 | test_v64 | x0, x1 |
-+impl_i!([i32; 2]: i32x2, m32x2 | i32, u8 | test_v64 | x0, x1 |
- From: i8x2, u8x2, i16x2, u16x2 |
- /// A 64-bit vector with 2 `i32` lanes.
- );
--impl_u!([u32; 2]: u32x2, m32x2 | u32 | test_v64 | x0, x1 |
-+impl_u!([u32; 2]: u32x2, m32x2 | u32, u8 | test_v64 | x0, x1 |
- From: u8x2, u16x2 |
- /// A 64-bit vector with 2 `u32` lanes.
- );
--impl_m!([m32; 2]: m32x2 | i32 | test_v64 | x0, x1 |
-+impl_m!([m32; 2]: m32x2 | i32, u8 | test_v64 | x0, x1 |
- From: m8x2, m16x2, m64x2, m128x2 |
- /// A 64-bit vector mask with 2 `m32` lanes.
- );
-@@ -47,15 +47,15 @@ impl_f!([f32; 2]: f32x2, m32x2 | f32 | test_v64 | x0, x1 |
- );
-
- /*
--impl_i!([i64; 1]: i64x1, m64x1 | i64 | test_v64 | x0 |
-+impl_i!([i64; 1]: i64x1, m64x1 | i64, u8 | test_v64 | x0 |
- From: /*i8x1, u8x1, i16x1, u16x1, i32x1, u32x1*/ | // FIXME: primitive to vector conversion
- /// A 64-bit vector with 1 `i64` lanes.
- );
--impl_u!([u64; 1]: u64x1, m64x1 | u64 | test_v64 | x0 |
-+impl_u!([u64; 1]: u64x1, m64x1 | u64, u8 | test_v64 | x0 |
- From: /*u8x1, u16x1, u32x1*/ | // FIXME: primitive to vector conversion
- /// A 64-bit vector with 1 `u64` lanes.
- );
--impl_m!([m64; 1]: m64x1 | i64 | test_v64 | x0 |
-+impl_m!([m64; 1]: m64x1 | i64, u8 | test_v64 | x0 |
- From: /*m8x1, m16x1, m32x1, */ m128x1 | // FIXME: unary small vector types
- /// A 64-bit vector mask with 1 `m64` lanes.
- );
-diff --git third_party/rust/packed_simd/src/vPtr.rs third_party/rust/packed_simd/src/vPtr.rs
-index fe9fb28ffa89..e34cb170eb1c 100644
---- third_party/rust/packed_simd/src/vPtr.rs
-+++ third_party/rust/packed_simd/src/vPtr.rs
-@@ -1,5 +1,5 @@
- //! Vectors of pointers
--#![rustfmt::skip]
-+#[rustfmt::skip]
-
- use crate::*;
-
-diff --git third_party/rust/packed_simd/src/vSize.rs third_party/rust/packed_simd/src/vSize.rs
-index 5594323372b4..b5d891006138 100644
---- third_party/rust/packed_simd/src/vSize.rs
-+++ third_party/rust/packed_simd/src/vSize.rs
-@@ -3,50 +3,50 @@
- use crate::codegen::pointer_sized_int::{isize_, usize_};
- use crate::*;
-
--impl_i!([isize; 2]: isizex2, msizex2 | isize_ | test_v128 |
-+impl_i!([isize; 2]: isizex2, msizex2 | isize_, u8 | test_v128 |
- x0, x1|
- From: |
- /// A vector with 2 `isize` lanes.
- );
-
--impl_u!([usize; 2]: usizex2, msizex2 | usize_ | test_v128 |
-+impl_u!([usize; 2]: usizex2, msizex2 | usize_, u8 | test_v128 |
- x0, x1|
- From: |
- /// A vector with 2 `usize` lanes.
- );
--impl_m!([msize; 2]: msizex2 | isize_ | test_v128 |
-+impl_m!([msize; 2]: msizex2 | isize_, u8 | test_v128 |
- x0, x1 |
- From: |
- /// A vector mask with 2 `msize` lanes.
- );
-
--impl_i!([isize; 4]: isizex4, msizex4 | isize_ | test_v256 |
-+impl_i!([isize; 4]: isizex4, msizex4 | isize_, u8 | test_v256 |
- x0, x1, x2, x3 |
- From: |
- /// A vector with 4 `isize` lanes.
- );
--impl_u!([usize; 4]: usizex4, msizex4 | usize_ | test_v256 |
-+impl_u!([usize; 4]: usizex4, msizex4 | usize_, u8 | test_v256 |
- x0, x1, x2, x3|
- From: |
- /// A vector with 4 `usize` lanes.
- );
--impl_m!([msize; 4]: msizex4 | isize_ | test_v256 |
-+impl_m!([msize; 4]: msizex4 | isize_, u8 | test_v256 |
- x0, x1, x2, x3 |
- From: |
- /// A vector mask with 4 `msize` lanes.
- );
-
--impl_i!([isize; 8]: isizex8, msizex8 | isize_ | test_v512 |
-+impl_i!([isize; 8]: isizex8, msizex8 | isize_, u8 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7 |
- From: |
-- /// A vector with 4 `isize` lanes.
-+ /// A vector with 8 `isize` lanes.
- );
--impl_u!([usize; 8]: usizex8, msizex8 | usize_ | test_v512 |
-+impl_u!([usize; 8]: usizex8, msizex8 | usize_, u8 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7 |
- From: |
- /// A vector with 8 `usize` lanes.
- );
--impl_m!([msize; 8]: msizex8 | isize_ | test_v512 |
-+impl_m!([msize; 8]: msizex8 | isize_, u8 | test_v512 |
- x0, x1, x2, x3, x4, x5, x6, x7 |
- From: |
- /// A vector mask with 8 `msize` lanes.
-diff --git third_party/rust/packed_simd/tests/endianness.rs third_party/rust/packed_simd/tests/endianness.rs
-index 1e6b4f354301..31fb7073afb3 100644
---- third_party/rust/packed_simd/tests/endianness.rs
-+++ third_party/rust/packed_simd/tests/endianness.rs
-@@ -17,7 +17,7 @@ fn endian_indexing() {
- #[cfg_attr(not(target_arch = "wasm32"), test)]
- #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
- fn endian_bitcasts() {
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
-@@ -34,13 +34,13 @@ fn endian_bitcasts() {
- #[cfg_attr(not(target_arch = "wasm32"), test)]
- #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
- fn endian_casts() {
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
- );
- let t: i16x16 = x.into(); // simd_cast
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let e = i16x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
-@@ -51,7 +51,7 @@ fn endian_casts() {
- #[cfg_attr(not(target_arch = "wasm32"), test)]
- #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
- fn endian_load_and_stores() {
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
-@@ -82,10 +82,15 @@ fn endian_array_union() {
- vec: f32x4,
- }
- let x: [f32; 4] = unsafe { A { vec: f32x4::new(0., 1., 2., 3.) }.data };
-- assert_eq!(x[0], 0_f32);
-- assert_eq!(x[1], 1_f32);
-- assert_eq!(x[2], 2_f32);
-- assert_eq!(x[3], 3_f32);
-+ // As all of these are integer values within the mantissa^1 range, it
-+ // would be very unusual for them to actually fail to compare.
-+ #[allow(clippy::float_cmp)]
-+ {
-+ assert_eq!(x[0], 0_f32);
-+ assert_eq!(x[1], 1_f32);
-+ assert_eq!(x[2], 2_f32);
-+ assert_eq!(x[3], 3_f32);
-+ }
- let y: f32x4 = unsafe { A { data: [3., 2., 1., 0.] }.vec };
- assert_eq!(y, f32x4::new(3., 2., 1., 0.));
-
-@@ -93,23 +98,23 @@ fn endian_array_union() {
- data: [i8; 16],
- vec: i8x16,
- }
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
- );
- let x: [i8; 16] = unsafe { B { vec: x }.data };
-
-- for i in 0..16 {
-- assert_eq!(x[i], i as i8);
-+ for (i, v) in x.iter().enumerate() {
-+ assert_eq!(i as i8, *v);
- }
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let y = [
- 15, 14, 13, 12, 11, 19, 9, 8,
- 7, 6, 5, 4, 3, 2, 1, 0
- ];
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let e = i8x16::new(
- 15, 14, 13, 12, 11, 19, 9, 8,
- 7, 6, 5, 4, 3, 2, 1, 0
-@@ -121,7 +126,7 @@ fn endian_array_union() {
- data: [i16; 8],
- vec: i8x16,
- }
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
-@@ -145,21 +150,26 @@ fn endian_tuple_access() {
- vec: f32x4,
- }
- let x: F32x4T = unsafe { A { vec: f32x4::new(0., 1., 2., 3.) }.data };
-- assert_eq!(x.0, 0_f32);
-- assert_eq!(x.1, 1_f32);
-- assert_eq!(x.2, 2_f32);
-- assert_eq!(x.3, 3_f32);
-+ // As all of these are integer values within the mantissa^1 range, it
-+ // would be very unusual for them to actually fail to compare.
-+ #[allow(clippy::float_cmp)]
-+ {
-+ assert_eq!(x.0, 0_f32);
-+ assert_eq!(x.1, 1_f32);
-+ assert_eq!(x.2, 2_f32);
-+ assert_eq!(x.3, 3_f32);
-+ }
- let y: f32x4 = unsafe { A { data: (3., 2., 1., 0.) }.vec };
- assert_eq!(y, f32x4::new(3., 2., 1., 0.));
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- type I8x16T = (i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8);
- union B {
- data: I8x16T,
- vec: i8x16,
- }
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
-@@ -183,27 +193,27 @@ fn endian_tuple_access() {
- assert_eq!(x.14, 14);
- assert_eq!(x.15, 15);
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let y = (
- 15, 14, 13, 12, 11, 10, 9, 8,
- 7, 6, 5, 4, 3, 2, 1, 0
- );
- let z: i8x16 = unsafe { B { data: y }.vec };
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let e = i8x16::new(
- 15, 14, 13, 12, 11, 10, 9, 8,
- 7, 6, 5, 4, 3, 2, 1, 0
- );
- assert_eq!(e, z);
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- type I16x8T = (i16, i16, i16, i16, i16, i16, i16, i16);
- union C {
- data: I16x8T,
- vec: i8x16,
- }
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
-@@ -224,7 +234,7 @@ fn endian_tuple_access() {
- assert_eq!(x.6, e[6]);
- assert_eq!(x.7, e[7]);
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- #[repr(C)]
- #[derive(Copy ,Clone)]
- pub struct Tup(pub i8, pub i8, pub i16, pub i8, pub i8, pub i16,
-@@ -235,7 +245,7 @@ fn endian_tuple_access() {
- vec: i8x16,
- }
-
-- #[cfg_attr(rustfmt, rustfmt_skip)]
-+ #[rustfmt::skip]
- let x = i8x16::new(
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
diff --git a/www/firefox/files/patch-bug1670807 b/www/firefox/files/patch-bug1670807
deleted file mode 100644
index 71c71454ab0a..000000000000
--- a/www/firefox/files/patch-bug1670807
+++ /dev/null
@@ -1,15 +0,0 @@
-Look for gm4 in addition to m4
-
-diff --git build/moz.configure/old.configure build/moz.configure/old.configure
-index 8c807c0794fab..5132228960f3d 100644
---- build/moz.configure/old.configure
-+++ build/moz.configure/old.configure
-@@ -5,7 +5,7 @@
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-
--m4 = check_prog('M4', ('m4',))
-+m4 = check_prog('M4', ('gm4', 'm4',))
-
-
- @depends(mozconfig)
diff --git a/www/firefox/files/patch-bug1676134 b/www/firefox/files/patch-bug1676134
new file mode 100644
index 000000000000..9abd1a03c7a4
--- /dev/null
+++ b/www/firefox/files/patch-bug1676134
@@ -0,0 +1,122 @@
+Enable Pipewire on BSDs
+
+diff --git third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
+index a0e116195e0e..cbe27e94108b 100644
+--- third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
++++ third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
+@@ -87,8 +87,13 @@ if CONFIG["OS_TARGET"] == "DragonFly":
+ DEFINES["USE_X11"] = "1"
+ DEFINES["WEBRTC_BSD"] = True
+ DEFINES["WEBRTC_POSIX"] = True
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
+ DEFINES["_FILE_OFFSET_BITS"] = "64"
+
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
+ OS_LIBS += [
+ "X11",
+ "X11-xcb",
+@@ -103,11 +108,14 @@ if CONFIG["OS_TARGET"] == "DragonFly":
+ ]
+
+ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/desktop_device_info_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/mouse_cursor_monitor_x11.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_display.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_util.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_finder_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_list_utils.cc",
+@@ -124,8 +132,13 @@ if CONFIG["OS_TARGET"] == "FreeBSD":
+ DEFINES["USE_X11"] = "1"
+ DEFINES["WEBRTC_BSD"] = True
+ DEFINES["WEBRTC_POSIX"] = True
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
+ DEFINES["_FILE_OFFSET_BITS"] = "64"
+
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
+ OS_LIBS += [
+ "X11",
+ "X11-xcb",
+@@ -140,11 +153,14 @@ if CONFIG["OS_TARGET"] == "FreeBSD":
+ ]
+
+ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/desktop_device_info_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/mouse_cursor_monitor_x11.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_display.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_util.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_finder_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_list_utils.cc",
+@@ -200,8 +216,13 @@ if CONFIG["OS_TARGET"] == "NetBSD":
+ DEFINES["USE_X11"] = "1"
+ DEFINES["WEBRTC_BSD"] = True
+ DEFINES["WEBRTC_POSIX"] = True
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
+ DEFINES["_FILE_OFFSET_BITS"] = "64"
+
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
+ OS_LIBS += [
+ "X11",
+ "X11-xcb",
+@@ -216,11 +237,14 @@ if CONFIG["OS_TARGET"] == "NetBSD":
+ ]
+
+ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/desktop_device_info_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/mouse_cursor_monitor_x11.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_display.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_util.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_finder_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_list_utils.cc",
+@@ -237,8 +261,13 @@ if CONFIG["OS_TARGET"] == "OpenBSD":
+ DEFINES["USE_X11"] = "1"
+ DEFINES["WEBRTC_BSD"] = True
+ DEFINES["WEBRTC_POSIX"] = True
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
+ DEFINES["_FILE_OFFSET_BITS"] = "64"
+
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
+ OS_LIBS += [
+ "X11",
+ "X11-xcb",
+@@ -253,11 +282,14 @@ if CONFIG["OS_TARGET"] == "OpenBSD":
+ ]
+
+ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/desktop_device_info_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/mouse_cursor_monitor_x11.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_display.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/shared_x_util.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_finder_x11.cc",
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_list_utils.cc",
diff --git a/www/firefox/files/patch-bug1677715 b/www/firefox/files/patch-bug1677715
new file mode 100644
index 000000000000..59de649b898e
--- /dev/null
+++ b/www/firefox/files/patch-bug1677715
@@ -0,0 +1,148 @@
+commit 16e7bdc29390
+Author: Dan Minor <dminor@mozilla.com>
+Date: Thu Nov 19 14:14:40 2020 +0000
+
+ Bug 1677715 - Build libpipewire as a dependency of libwebrtc; r=ng
+
+ Differential Revision: https://phabricator.services.mozilla.com/D97431
+---
+ dom/media/webrtc/third_party_build/moz.build | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git dom/media/webrtc/third_party_build/moz.build dom/media/webrtc/third_party_build/moz.build
+index db10dab7ff21..dc0df3ba1b6c 100644
+--- dom/media/webrtc/third_party_build/moz.build
++++ dom/media/webrtc/third_party_build/moz.build
+@@ -56,6 +56,9 @@ webrtc_non_unified_sources = [
+ "../../../../third_party/libwebrtc/webrtc/video/overuse_frame_detector.cc", # Because of name clash with call_stats.cc on kWeightFactor
+ ]
+
++if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
++ DIRS += ["../../../../third_party/pipewire/libpipewire"]
++
+ GN_DIRS += ["../../../../third_party/libwebrtc/webrtc"]
+
+ gn_vars_copy = gn_vars.copy()
+commit 553093ff0fa7
+Author: Dan Minor <dminor@mozilla.com>
+Date: Thu Nov 19 14:14:50 2020 +0000
+
+ Bug 1677715 - Regenerate moz.build files; r=ng
+
+ Differential Revision: https://phabricator.services.mozilla.com/D97433
+---
+ .../desktop_capture_generic_gn/moz.build | 51 +++++++++++++++++-----
+ third_party/libwebrtc/webrtc/moz.build | 3 --
+ 2 files changed, 40 insertions(+), 14 deletions(-)
+
+diff --git third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
+index 8df8b8b993f9..a0e116195e0e 100644
+--- third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
++++ third_party/libwebrtc/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
+@@ -5,6 +5,8 @@
+
+ ### This moz.build was AUTOMATICALLY GENERATED from a GN config, ###
+ ### DO NOT edit it by hand. ###
++if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
++ CXXFLAGS += CONFIG["TK_CFLAGS"]
+
+ COMPILE_FLAGS["OS_INCLUDES"] = []
+ AllowCompilerWarnings()
+@@ -25,8 +27,7 @@ LOCAL_INCLUDES += [
+ "/ipc/chromium/src",
+ "/ipc/glue",
+ "/media/libyuv/libyuv/include/",
+- "/third_party/libwebrtc/webrtc/",
+- "/third_party/pipewire"
++ "/third_party/libwebrtc/webrtc/"
+ ]
+
+ UNIFIED_SOURCES += [
+@@ -162,7 +163,6 @@ if CONFIG["OS_TARGET"] == "Linux":
+ DEFINES["WEBRTC_LINUX"] = True
+ DEFINES["WEBRTC_POSIX"] = True
+ DEFINES["_FILE_OFFSET_BITS"] = "64"
+- DEFINES["WEBRTC_USE_PIPEWIRE"] = "1"
+
+ OS_LIBS += [
+ "rt",
+@@ -195,14 +195,6 @@ if CONFIG["OS_TARGET"] == "Linux":
+ "/third_party/libwebrtc/webrtc/modules/desktop_capture/window_capturer_linux.cc"
+ ]
+
+- CXXFLAGS += CONFIG['TK_CFLAGS']
+-
+- UNIFIED_SOURCES += [
+- "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
+- "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
+- "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc"
+- ]
+-
+ if CONFIG["OS_TARGET"] == "NetBSD":
+
+ DEFINES["USE_X11"] = "1"
+@@ -393,6 +385,17 @@ if CONFIG["CPU_ARCH"] == "aarch64" and CONFIG["OS_TARGET"] == "Linux":
+
+ DEFINES["DISABLE_NACL"] = True
+ DEFINES["NO_TCMALLOC"] = True
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
++
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
++ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc"
++ ]
+
+ if CONFIG["CPU_ARCH"] == "x86" and CONFIG["OS_TARGET"] == "Linux":
+
+@@ -400,6 +403,32 @@ if CONFIG["CPU_ARCH"] == "x86" and CONFIG["OS_TARGET"] == "Linux":
+ "-msse2"
+ ]
+
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
++
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
++ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc"
++ ]
++
++if CONFIG["CPU_ARCH"] == "x86_64" and CONFIG["OS_TARGET"] == "Linux":
++
++ DEFINES["WEBRTC_USE_PIPEWIRE"] = True
++
++ LOCAL_INCLUDES += [
++ "/third_party/pipewire/"
++ ]
++
++ UNIFIED_SOURCES += [
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
++ "/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc"
++ ]
++
+ if CONFIG["CPU_ARCH"] == "x86" and CONFIG["OS_TARGET"] == "NetBSD":
+
+ CXXFLAGS += [
+diff --git third_party/libwebrtc/webrtc/moz.build third_party/libwebrtc/webrtc/moz.build
+index 53af3e5786bf..295247899372 100644
+--- third_party/libwebrtc/webrtc/moz.build
++++ third_party/libwebrtc/webrtc/moz.build
+@@ -186,9 +186,6 @@ if CONFIG["OS_TARGET"] == "Linux":
+ "/third_party/libwebrtc/webrtc/modules/video_capture/video_capture_internal_impl_gn",
+ "/third_party/libwebrtc/webrtc/system_wrappers/cpu_features_linux_gn"
+ ]
+- DIRS += [
+- "/third_party/pipewire/libpipewire"
+- ]
+
+ if CONFIG["OS_TARGET"] == "NetBSD":
+
diff --git a/www/firefox/files/patch-bug847568 b/www/firefox/files/patch-bug847568
index b24638761af6..f1a005b360b6 100644
--- a/www/firefox/files/patch-bug847568
+++ b/www/firefox/files/patch-bug847568
@@ -4,7 +4,7 @@ diff --git config/system-headers.mozbuild config/system-headers.mozbuild
index 7620b4d00623..09d3db5ca8c0 100644
--- config/system-headers.mozbuild
+++ config/system-headers.mozbuild
-@@ -1299,6 +1299,19 @@ if CONFIG['MOZ_ENABLE_LIBPROXY']:
+@@ -1292,6 +1292,19 @@ if CONFIG['MOZ_ENABLE_LIBPROXY']:
'proxy.h',
]
@@ -28,16 +28,16 @@ diff --git dom/base/moz.build dom/base/moz.build
index 8e19020315ae..2fcdbb6f7b42 100644
--- dom/base/moz.build
+++ dom/base/moz.build
-@@ -543,6 +543,9 @@ if CONFIG['MOZ_BUILD_APP'] in ['browser', 'mobile/android', 'xulrunner']:
- if CONFIG['MOZ_X11']:
- CXXFLAGS += CONFIG['TK_CFLAGS']
+@@ -546,6 +546,9 @@ if CONFIG["MOZ_BUILD_APP"] in ["browser", "mobile/android", "xulrunner"]:
+ if CONFIG["MOZ_X11"]:
+ CXXFLAGS += CONFIG["TK_CFLAGS"]
-+if CONFIG['MOZ_SYSTEM_HARFBUZZ']:
-+ CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++if CONFIG["MOZ_SYSTEM_HARFBUZZ"]:
++ CXXFLAGS += CONFIG["MOZ_HARFBUZZ_CFLAGS"]
+
- GeneratedFile('UseCounterList.h', script='gen-usecounters.py',
- entry_point='use_counter_list', inputs=['UseCounters.conf'])
-
+ GeneratedFile(
+ "UseCounterList.h",
+ script="gen-usecounters.py",
diff --git gfx/graphite2/geckoextra/moz.build gfx/graphite2/geckoextra/moz.build
new file mode 100644
index 0000000000000..24e8d7a03274a
@@ -112,35 +112,35 @@ diff --git gfx/moz.build gfx/moz.build
index 771f652e837a..3b358d84e384 100644
--- gfx/moz.build
+++ gfx/moz.build
-@@ -13,6 +13,14 @@ with Files('wr/**'):
- if CONFIG['MOZ_TREE_CAIRO']:
- DIRS += ['cairo']
+@@ -13,6 +13,14 @@ with Files("wr/**"):
+ if CONFIG["MOZ_TREE_CAIRO"]:
+ DIRS += ["cairo"]
-+if CONFIG['MOZ_SYSTEM_GRAPHITE2']:
-+ DIRS += ['graphite2/geckoextra']
++if CONFIG["MOZ_SYSTEM_GRAPHITE2"]:
++ DIRS += ["graphite2/geckoextra"]
+else:
-+ DIRS += ['graphite2/src' ]
++ DIRS += ["graphite2/src" ]
+
-+if not CONFIG['MOZ_SYSTEM_HARFBUZZ']:
-+ DIRS += ['harfbuzz/src']
++if not CONFIG["MOZ_SYSTEM_HARFBUZZ"]:
++ DIRS += ["harfbuzz/src"]
+
DIRS += [
- '2d',
- 'ycbcr',
+ "2d",
+ "ycbcr",
@@ -21,8 +29,6 @@ DIRS += [
- 'qcms',
- 'gl',
- 'layers',
-- 'graphite2/src',
-- 'harfbuzz/src',
- 'ots/src',
- 'thebes',
- 'ipc',
+ "qcms",
+ "gl",
+ "layers",
+- "graphite2/src",
+- "harfbuzz/src",
+ "ots/src",
+ "thebes",
+ "ipc",
diff --git gfx/skia/generate_mozbuild.py gfx/skia/generate_mozbuild.py
index e06ae3457a47..93faa61594a3 100755
--- gfx/skia/generate_mozbuild.py
+++ gfx/skia/generate_mozbuild.py
-@@ -117,6 +117,9 @@ if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'):
+@@ -98,6 +98,9 @@ if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'):
'-Wno-unused-private-field',
]
@@ -154,7 +154,7 @@ diff --git gfx/skia/moz.build gfx/skia/moz.build
index 2118677ca3a8..e4978b413784 100644
--- gfx/skia/moz.build
+++ gfx/skia/moz.build
-@@ -493,6 +493,9 @@ if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'):
+@@ -490,6 +490,9 @@ if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'):
'-Wno-unused-private-field',
]
@@ -168,49 +168,49 @@ diff --git gfx/thebes/moz.build gfx/thebes/moz.build
index 56f1b9fe3f4b..0ac1100b0df3 100644
--- gfx/thebes/moz.build
+++ gfx/thebes/moz.build
-@@ -284,7 +284,13 @@ if CONFIG['MOZ_WAYLAND']:
+@@ -287,7 +287,13 @@ if CONFIG["MOZ_WAYLAND"]:
- LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES']
+ LOCAL_INCLUDES += CONFIG["SKIA_INCLUDES"]
--DEFINES['GRAPHITE2_STATIC'] = True
-+if CONFIG['MOZ_SYSTEM_GRAPHITE2']:
-+ CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS']
+-DEFINES["GRAPHITE2_STATIC"] = True
++if CONFIG["MOZ_SYSTEM_GRAPHITE2"]:
++ CXXFLAGS += CONFIG["MOZ_GRAPHITE2_CFLAGS"]
+else:
-+ DEFINES['GRAPHITE2_STATIC'] = True
++ DEFINES["GRAPHITE2_STATIC"] = True
+
-+if CONFIG['MOZ_SYSTEM_HARFBUZZ']:
-+ CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++if CONFIG["MOZ_SYSTEM_HARFBUZZ"]:
++ CXXFLAGS += CONFIG["MOZ_HARFBUZZ_CFLAGS"]
- if CONFIG['CC_TYPE'] == 'clang':
+ if CONFIG["CC_TYPE"] == "clang":
# Suppress warnings from Skia header files.
diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build
index cb1233c56d7e..06fb1f9f174b 100644
--- intl/unicharutil/util/moz.build
+++ intl/unicharutil/util/moz.build
@@ -25,4 +25,7 @@ UNIFIED_SOURCES += [
- 'nsUnicodeProperties.cpp',
+ "nsUnicodeProperties.cpp",
]
-+if CONFIG['MOZ_SYSTEM_HARFBUZZ']:
-+ CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++if CONFIG["MOZ_SYSTEM_HARFBUZZ"]:
++ CXXFLAGS += CONFIG["MOZ_HARFBUZZ_CFLAGS"]
+
- FINAL_LIBRARY = 'xul'
+ FINAL_LIBRARY = "xul"
diff --git netwerk/dns/moz.build netwerk/dns/moz.build
index 79c26e3e7001..c4d93bc5f7dc 100644
--- netwerk/dns/moz.build
+++ netwerk/dns/moz.build
-@@ -86,3 +86,6 @@ USE_LIBS += ['icu']
+@@ -105,3 +105,6 @@ USE_LIBS += ["icu"]
- if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
- CXXFLAGS += ['-Wno-error=shadow']
+ if CONFIG["CC_TYPE"] in ("clang", "gcc"):
+ CXXFLAGS += ["-Wno-error=shadow"]
+
-+if CONFIG['MOZ_SYSTEM_HARFBUZZ']:
-+ CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS']
++if CONFIG["MOZ_SYSTEM_HARFBUZZ"]:
++ CXXFLAGS += CONFIG["MOZ_HARFBUZZ_CFLAGS"]
diff --git old-configure.in old-configure.in
index 95a58b634593..b614eef85c89 100644
--- old-configure.in
+++ old-configure.in
-@@ -2639,6 +2639,27 @@ dnl ========================================================
+@@ -2303,6 +2303,27 @@ dnl ========================================================
AC_SUBST(MOZ_LINUX_32_SSE2_STARTUP_ERROR)
@@ -242,46 +242,46 @@ diff --git toolkit/library/moz.build toolkit/library/moz.build
index 24f940e1ed7e..079a575adec3 100644
--- toolkit/library/moz.build
+++ toolkit/library/moz.build
-@@ -248,6 +248,12 @@ if CONFIG['MOZ_SYSTEM_PNG']:
- if CONFIG['MOZ_SYSTEM_WEBP']:
- OS_LIBS += CONFIG['MOZ_WEBP_LIBS']
+@@ -247,6 +247,12 @@ if CONFIG["MOZ_SYSTEM_PNG"]:
+ if CONFIG["MOZ_SYSTEM_WEBP"]:
+ OS_LIBS += CONFIG["MOZ_WEBP_LIBS"]
-+if CONFIG['MOZ_SYSTEM_GRAPHITE2']:
-+ OS_LIBS += CONFIG['MOZ_GRAPHITE2_LIBS']
++if CONFIG["MOZ_SYSTEM_GRAPHITE2"]:
++ OS_LIBS += CONFIG["MOZ_GRAPHITE2_LIBS"]
+
-+if CONFIG['MOZ_SYSTEM_HARFBUZZ']:
-+ OS_LIBS += CONFIG['MOZ_HARFBUZZ_LIBS']
++if CONFIG["MOZ_SYSTEM_HARFBUZZ"]:
++ OS_LIBS += CONFIG["MOZ_HARFBUZZ_LIBS"]
+
- if CONFIG['MOZ_SYSTEM_LIBEVENT']:
- OS_LIBS += CONFIG['MOZ_LIBEVENT_LIBS']
+ if CONFIG["MOZ_SYSTEM_LIBEVENT"]:
+ OS_LIBS += CONFIG["MOZ_LIBEVENT_LIBS"]
diff --git toolkit/moz.configure toolkit/moz.configure
index 9297e4d6f501..d8e273887e4b 100644
--- toolkit/moz.configure
+++ toolkit/moz.configure
-@@ -937,6 +937,25 @@ add_old_configure_assignment('FT2_LIBS',
- add_old_configure_assignment('FT2_CFLAGS',
- ft2_info.cflags)
+@@ -1055,6 +1055,25 @@ set_config("FT2_LIBS", ft2_info.libs)
+ add_old_configure_assignment("FT2_LIBS", ft2_info.libs)
+ add_old_configure_assignment("FT2_CFLAGS", ft2_info.cflags)
+# Graphite2
+# ==============================================================
-+option('--with-system-graphite2',
++option("--with-system-graphite2",
+ help="Use system graphite2 (located with pkgconfig)")
+
-+system_graphite2 = pkg_check_modules('MOZ_GRAPHITE2', 'graphite2',
-+ when='--with-system-graphite2')
++system_graphite2 = pkg_check_modules("MOZ_GRAPHITE2", "graphite2",
++ when="--with-system-graphite2")
+
-+set_config('MOZ_SYSTEM_GRAPHITE2', depends_if(system_graphite2)(lambda _: True))
++set_config("MOZ_SYSTEM_GRAPHITE2", depends_if(system_graphite2)(lambda _: True))
+
+# HarfBuzz
+# ==============================================================
-+option('--with-system-harfbuzz',
++option("--with-system-harfbuzz",
+ help="Use system harfbuzz (located with pkgconfig)")
+
-+system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 2.6.8',
-+ when='--with-system-harfbuzz')
++system_harfbuzz = pkg_check_modules("MOZ_HARFBUZZ", "harfbuzz >= 2.6.8",
++ when="--with-system-harfbuzz")
+
-+set_config('MOZ_SYSTEM_HARFBUZZ', depends_if(system_harfbuzz)(lambda _: True))
++set_config("MOZ_SYSTEM_HARFBUZZ", depends_if(system_harfbuzz)(lambda _: True))
- # Remote agent (part of CDP based remote protocol)
- # ==============================================================
+ # Remote agent
+ # (partial implementation of Chromium Remote Debugging Protocol)
diff --git a/www/firefox/files/patch-cubeb-oss b/www/firefox/files/patch-cubeb-oss
deleted file mode 100644
index 2b151a07fb20..000000000000
--- a/www/firefox/files/patch-cubeb-oss
+++ /dev/null
@@ -1,1327 +0,0 @@
-https://github.com/kinetiknz/cubeb/pull/600
-
---- dom/media/CubebUtils.cpp.orig 2020-08-19 02:08:51 UTC
-+++ dom/media/CubebUtils.cpp
-@@ -126,7 +126,7 @@ const char kBrandBundleURL[] = "chrome://branding/locale/brand.properties";
-
- const char* AUDIOSTREAM_BACKEND_ID_STR[] = {
- "jack", "pulse", "alsa", "audiounit", "audioqueue", "wasapi",
-- "winmm", "directsound", "sndio", "opensl", "audiotrack", "kai"};
-+ "winmm", "directsound", "sndio", "opensl", "oss", "audiotrack", "kai"};
- /* Index for failures to create an audio stream the first time. */
- const int CUBEB_BACKEND_INIT_FAILURE_FIRST =
- ArrayLength(AUDIOSTREAM_BACKEND_ID_STR);
---- media/libcubeb/src/moz.build.orig 2020-08-19 02:09:19 UTC
-+++ media/libcubeb/src/moz.build
-@@ -40,6 +40,12 @@ if CONFIG['MOZ_JACK']:
- ]
- DEFINES['USE_JACK'] = True
-
-+if CONFIG['OS_ARCH'] in ('DragonFly', 'FreeBSD', 'SunOS'):
-+ SOURCES += [
-+ 'cubeb_oss.c',
-+ ]
-+ DEFINES['USE_OSS'] = True
-+
- if CONFIG['OS_ARCH'] == 'OpenBSD':
- SOURCES += [
- 'cubeb_sndio.c',
---- media/libcubeb/src/cubeb.c.orig 2020-08-19 02:09:26 UTC
-+++ media/libcubeb/src/cubeb.c
-@@ -60,6 +60,9 @@ int sun_init(cubeb ** context, char const * context_name);
- #if defined(USE_OPENSL)
- int opensl_init(cubeb ** context, char const * context_name);
- #endif
-+#if defined(USE_OSS)
-+int oss_init(cubeb ** context, char const * context_name);
-+#endif
- #if defined(USE_AUDIOTRACK)
- int audiotrack_init(cubeb ** context, char const * context_name);
- #endif
-@@ -165,6 +168,10 @@ cubeb_init(cubeb ** context, char const * context_name, char const * backend_nam
- #if defined(USE_OPENSL)
- init_oneshot = opensl_init;
- #endif
-+ } else if (!strcmp(backend_name, "oss")) {
-+#if defined(USE_OSS)
-+ init_oneshot = oss_init;
-+#endif
- } else if (!strcmp(backend_name, "audiotrack")) {
- #if defined(USE_AUDIOTRACK)
- init_oneshot = audiotrack_init;
-@@ -200,6 +207,9 @@ cubeb_init(cubeb ** context, char const * context_name, char const * backend_nam
- #if defined(USE_ALSA)
- alsa_init,
- #endif
-+#if defined (USE_OSS)
-+ oss_init,
-+#endif
- #if defined(USE_AUDIOUNIT_RUST)
- audiounit_rust_init,
- #endif
---- /dev/null
-+++ media/libcubeb/src/cubeb_oss.c
-@@ -0,0 +1,1263 @@
-+/*
-+ * Copyright © 2019-2020 Nia Alarie <nia@NetBSD.org>
-+ * Copyright © 2020 Ka Ho Ng <khng300@gmail.com>
-+ * Copyright © 2020 The FreeBSD Foundation
-+ *
-+ * Portions of this software were developed by Ka Ho Ng
-+ * under sponsorship from the FreeBSD Foundation.
-+ *
-+ * This program is made available under an ISC-style license. See the
-+ * accompanying file LICENSE for details.
-+ */
-+
-+#if defined(__FreeBSD__) && __FreeBSD__ < 12
-+#define _WITH_GETLINE
-+#endif
-+#include <assert.h>
-+#include <ctype.h>
-+#include <limits.h>
-+#include <errno.h>
-+#include <sys/types.h>
-+#include <sys/soundcard.h>
-+#include <sys/ioctl.h>
-+#include <fcntl.h>
-+#include <unistd.h>
-+#include <pthread.h>
-+#include <stdbool.h>
-+#include <stdlib.h>
-+#include <stdio.h>
-+#include <string.h>
-+#include <poll.h>
-+#include "cubeb/cubeb.h"
-+#include "cubeb_mixer.h"
-+#include "cubeb_strings.h"
-+#include "cubeb-internal.h"
-+
-+/* Supported well by most hardware. */
-+#ifndef OSS_PREFER_RATE
-+#define OSS_PREFER_RATE (48000)
-+#endif
-+
-+/* Standard acceptable minimum. */
-+#ifndef OSS_LATENCY_MS
-+#define OSS_LATENCY_MS (8)
-+#endif
-+
-+#ifndef OSS_NFRAGS
-+#define OSS_NFRAGS (4)
-+#endif
-+
-+#ifndef OSS_DEFAULT_DEVICE
-+#define OSS_DEFAULT_DEVICE "/dev/dsp"
-+#endif
-+
-+#ifndef OSS_DEFAULT_MIXER
-+#define OSS_DEFAULT_MIXER "/dev/mixer"
-+#endif
-+
-+#define ENV_AUDIO_DEVICE "AUDIO_DEVICE"
-+
-+#ifndef OSS_MAX_CHANNELS
-+# if defined(__FreeBSD__) || defined(__DragonFly__)
-+/*
-+ * The current maximum number of channels supported
-+ * on FreeBSD is 8.
-+ *
-+ * Reference: FreeBSD 12.1-RELEASE
-+ */
-+# define OSS_MAX_CHANNELS (8)
-+# elif defined(__sun__)
-+/*
-+ * The current maximum number of channels supported
-+ * on Illumos is 16.
-+ *
-+ * Reference: PSARC 2008/318
-+ */
-+# define OSS_MAX_CHANNELS (16)
-+# else
-+# define OSS_MAX_CHANNELS (2)
-+# endif
-+#endif
-+
-+#if defined(__FreeBSD__) || defined(__DragonFly__)
-+#define SNDSTAT_BEGIN_STR "Installed devices:"
-+#define SNDSTAT_USER_BEGIN_STR "Installed devices from userspace:"
-+#define SNDSTAT_FV_BEGIN_STR "File Versions:"
-+#endif
-+
-+static struct cubeb_ops const oss_ops;
-+
-+struct cubeb {
-+ struct cubeb_ops const * ops;
-+
-+ /* Our intern string store */
-+ pthread_mutex_t mutex; /* protects devid_strs */
-+ cubeb_strings *devid_strs;
-+};
-+
-+struct oss_stream {
-+ oss_devnode_t name;
-+ int fd;
-+ void * buf;
-+
-+ struct stream_info {
-+ int channels;
-+ int sample_rate;
-+ int fmt;
-+ int precision;
-+ } info;
-+
-+ unsigned int frame_size; /* precision in bytes * channels */
-+ bool floating;
-+};
-+
-+struct cubeb_stream {
-+ struct cubeb * context;
-+ void * user_ptr;
-+ pthread_t thread;
-+ bool doorbell; /* (m) */
-+ pthread_cond_t doorbell_cv; /* (m) */
-+ pthread_cond_t stopped_cv; /* (m) */
-+ pthread_mutex_t mtx; /* Members protected by this should be marked (m) */
-+ bool thread_created; /* (m) */
-+ bool running; /* (m) */
-+ bool destroying; /* (m) */
-+ cubeb_state state; /* (m) */
-+ float volume /* (m) */;
-+ struct oss_stream play;
-+ struct oss_stream record;
-+ cubeb_data_callback data_cb;
-+ cubeb_state_callback state_cb;
-+ uint64_t frames_written /* (m) */;
-+ unsigned int nfr; /* Number of frames allocated */
-+ unsigned int nfrags;
-+ unsigned int bufframes;
-+};
-+
-+static char const *
-+oss_cubeb_devid_intern(cubeb *context, char const * devid)
-+{
-+ char const *is;
-+ pthread_mutex_lock(&context->mutex);
-+ is = cubeb_strings_intern(context->devid_strs, devid);
-+ pthread_mutex_unlock(&context->mutex);
-+ return is;
-+}
-+
-+int
-+oss_init(cubeb **context, char const *context_name) {
-+ cubeb * c;
-+
-+ (void)context_name;
-+ if ((c = calloc(1, sizeof(cubeb))) == NULL) {
-+ return CUBEB_ERROR;
-+ }
-+
-+ if (cubeb_strings_init(&c->devid_strs) == CUBEB_ERROR) {
-+ goto fail;
-+ }
-+
-+ if (pthread_mutex_init(&c->mutex, NULL) != 0) {
-+ goto fail;
-+ }
-+
-+ c->ops = &oss_ops;
-+ *context = c;
-+ return CUBEB_OK;
-+
-+fail:
-+ cubeb_strings_destroy(c->devid_strs);
-+ free(c);
-+ return CUBEB_ERROR;
-+}
-+
-+static void
-+oss_destroy(cubeb * context)
-+{
-+ pthread_mutex_destroy(&context->mutex);
-+ cubeb_strings_destroy(context->devid_strs);
-+ free(context);
-+}
-+
-+static char const *
-+oss_get_backend_id(cubeb * context)
-+{
-+ return "oss";
-+}
-+
-+static int
-+oss_get_preferred_sample_rate(cubeb * context, uint32_t * rate)
-+{
-+ (void)context;
-+
-+ *rate = OSS_PREFER_RATE;
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_get_max_channel_count(cubeb * context, uint32_t * max_channels)
-+{
-+ (void)context;
-+
-+ *max_channels = OSS_MAX_CHANNELS;
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_get_min_latency(cubeb * context, cubeb_stream_params params,
-+ uint32_t * latency_frames)
-+{
-+ (void)context;
-+
-+ *latency_frames = (OSS_LATENCY_MS * params.rate) / 1000;
-+ return CUBEB_OK;
-+}
-+
-+static void
-+oss_free_cubeb_device_info_strings(cubeb_device_info *cdi)
-+{
-+ free((char *)cdi->device_id);
-+ free((char *)cdi->friendly_name);
-+ free((char *)cdi->group_id);
-+ cdi->device_id = NULL;
-+ cdi->friendly_name = NULL;
-+ cdi->group_id = NULL;
-+}
-+
-+#if defined(__FreeBSD__) || defined(__DragonFly__)
-+/*
-+ * Check if the specified DSP is okay for the purpose specified
-+ * in type. Here type can only specify one operation each time
-+ * this helper is called.
-+ *
-+ * Return 0 if OK, otherwise 1.
-+ */
-+static int
-+oss_probe_open(const char *dsppath, cubeb_device_type type,
-+ int *fdp, oss_audioinfo *resai)
-+{
-+ oss_audioinfo ai;
-+ int error;
-+ int oflags = (type == CUBEB_DEVICE_TYPE_INPUT) ? O_RDONLY : O_WRONLY;
-+ int dspfd = open(dsppath, oflags);
-+ if (dspfd == -1)
-+ return 1;
-+
-+ ai.dev = -1;
-+ error = ioctl(dspfd, SNDCTL_AUDIOINFO, &ai);
-+ if (error < 0) {
-+ close(dspfd);
-+ return 1;
-+ }
-+
-+ if (resai)
-+ *resai = ai;
-+ if (fdp)
-+ *fdp = dspfd;
-+ else
-+ close(dspfd);
-+ return 0;
-+}
-+
-+struct sndstat_info {
-+ oss_devnode_t devname;
-+ const char *desc;
-+ cubeb_device_type type;
-+ int preferred;
-+};
-+
-+static int
-+oss_sndstat_line_parse(char *line, int is_ud, struct sndstat_info *sinfo)
-+{
-+ char *matchptr = line, *n = NULL;
-+ struct sndstat_info res;
-+
-+ memset(&res, 0, sizeof(res));
-+
-+ n = strchr(matchptr, ':');
-+ if (n == NULL)
-+ goto fail;
-+ if (is_ud == 0) {
-+ unsigned int devunit;
-+
-+ if (sscanf(matchptr, "pcm%u: ", &devunit) < 1)
-+ goto fail;
-+
-+ if (snprintf(res.devname, sizeof(res.devname), "/dev/dsp%u", devunit) < 1)
-+ goto fail;
-+ } else {
-+ if (n - matchptr >= (ssize_t)(sizeof(res.devname) - strlen("/dev/")))
-+ goto fail;
-+
-+ strlcpy(res.devname, "/dev/", sizeof(res.devname));
-+ strncat(res.devname, matchptr, n - matchptr);
-+ }
-+ matchptr = n + 1;
-+
-+ n = strchr(matchptr, '<');
-+ if (n == NULL)
-+ goto fail;
-+ matchptr = n + 1;
-+ n = strrchr(matchptr, '>');
-+ if (n == NULL)
-+ goto fail;
-+ *n = 0;
-+ res.desc = matchptr;
-+ matchptr = n + 1;
-+
-+ n = strchr(matchptr, '(');
-+ if (n == NULL)
-+ goto fail;
-+ matchptr = n + 1;
-+ n = strrchr(matchptr, ')');
-+ if (n == NULL)
-+ goto fail;
-+ *n = 0;
-+ if (!isdigit(matchptr[0])) {
-+ if (strstr(matchptr, "play") != NULL)
-+ res.type |= CUBEB_DEVICE_TYPE_OUTPUT;
-+ if (strstr(matchptr, "rec") != NULL)
-+ res.type |= CUBEB_DEVICE_TYPE_INPUT;
-+ } else {
-+ int p, r;
-+ if (sscanf(matchptr, "%dp:%*dv/%dr:%*dv", &p, &r) != 2)
-+ goto fail;
-+ if (p > 0)
-+ res.type |= CUBEB_DEVICE_TYPE_OUTPUT;
-+ if (r > 0)
-+ res.type |= CUBEB_DEVICE_TYPE_INPUT;
-+ }
-+ matchptr = n + 1;
-+ if (strstr(matchptr, "default") != NULL)
-+ res.preferred = 1;
-+
-+ *sinfo = res;
-+ return 0;
-+
-+fail:
-+ return 1;
-+}
-+
-+/*
-+ * XXX: On FreeBSD we have to rely on SNDCTL_CARDINFO to get all
-+ * the usable audio devices currently, as SNDCTL_AUDIOINFO will
-+ * never return directly usable audio device nodes.
-+ */
-+static int
-+oss_enumerate_devices(cubeb * context, cubeb_device_type type,
-+ cubeb_device_collection * collection)
-+{
-+ cubeb_device_info *devinfop = NULL;
-+ char *line = NULL;
-+ size_t linecap = 0;
-+ FILE *sndstatfp = NULL;
-+ int collection_cnt = 0;
-+ int is_ud = 0;
-+ int skipall = 0;
-+
-+ devinfop = calloc(1, sizeof(cubeb_device_info));
-+ if (devinfop == NULL)
-+ goto fail;
-+
-+ sndstatfp = fopen("/dev/sndstat", "r");
-+ if (sndstatfp == NULL)
-+ goto fail;
-+ while (getline(&line, &linecap, sndstatfp) > 0) {
-+ const char *devid = NULL;
-+ struct sndstat_info sinfo;
-+ oss_audioinfo ai;
-+
-+ if (!strncmp(line, SNDSTAT_FV_BEGIN_STR, strlen(SNDSTAT_FV_BEGIN_STR))) {
-+ skipall = 1;
-+ continue;
-+ }
-+ if (!strncmp(line, SNDSTAT_BEGIN_STR, strlen(SNDSTAT_BEGIN_STR))) {
-+ is_ud = 0;
-+ skipall = 0;
-+ continue;
-+ }
-+ if (!strncmp(line, SNDSTAT_USER_BEGIN_STR, strlen(SNDSTAT_USER_BEGIN_STR))) {
-+ is_ud = 1;
-+ skipall = 0;
-+ continue;
-+ }
-+ if (skipall || isblank(line[0]))
-+ continue;
-+
-+ if (oss_sndstat_line_parse(line, is_ud, &sinfo))
-+ continue;
-+
-+ devinfop[collection_cnt].type = 0;
-+ switch (sinfo.type) {
-+ case CUBEB_DEVICE_TYPE_INPUT:
-+ if (type & CUBEB_DEVICE_TYPE_OUTPUT)
-+ continue;
-+ break;
-+ case CUBEB_DEVICE_TYPE_OUTPUT:
-+ if (type & CUBEB_DEVICE_TYPE_INPUT)
-+ continue;
-+ break;
-+ case 0:
-+ continue;
-+ }
-+
-+ if (oss_probe_open(sinfo.devname, type, NULL, &ai))
-+ continue;
-+
-+ devid = oss_cubeb_devid_intern(context, sinfo.devname);
-+ if (devid == NULL)
-+ continue;
-+
-+ devinfop[collection_cnt].device_id = strdup(sinfo.devname);
-+ asprintf((char **)&devinfop[collection_cnt].friendly_name, "%s: %s",
-+ sinfo.devname, sinfo.desc);
-+ devinfop[collection_cnt].group_id = strdup(sinfo.devname);
-+ devinfop[collection_cnt].vendor_name = NULL;
-+ if (devinfop[collection_cnt].device_id == NULL ||
-+ devinfop[collection_cnt].friendly_name == NULL ||
-+ devinfop[collection_cnt].group_id == NULL) {
-+ oss_free_cubeb_device_info_strings(&devinfop[collection_cnt]);
-+ continue;
-+ }
-+
-+ devinfop[collection_cnt].type = type;
-+ devinfop[collection_cnt].devid = devid;
-+ devinfop[collection_cnt].state = CUBEB_DEVICE_STATE_ENABLED;
-+ devinfop[collection_cnt].preferred =
-+ (sinfo.preferred) ? CUBEB_DEVICE_PREF_ALL : CUBEB_DEVICE_PREF_NONE;
-+ devinfop[collection_cnt].format = CUBEB_DEVICE_FMT_S16NE;
-+ devinfop[collection_cnt].default_format = CUBEB_DEVICE_FMT_S16NE;
-+ devinfop[collection_cnt].max_channels = ai.max_channels;
-+ devinfop[collection_cnt].default_rate = OSS_PREFER_RATE;
-+ devinfop[collection_cnt].max_rate = ai.max_rate;
-+ devinfop[collection_cnt].min_rate = ai.min_rate;
-+ devinfop[collection_cnt].latency_lo = 0;
-+ devinfop[collection_cnt].latency_hi = 0;
-+
-+ collection_cnt++;
-+
-+ void *newp = reallocarray(devinfop, collection_cnt + 1,
-+ sizeof(cubeb_device_info));
-+ if (newp == NULL)
-+ goto fail;
-+ devinfop = newp;
-+ }
-+
-+ free(line);
-+ fclose(sndstatfp);
-+
-+ collection->count = collection_cnt;
-+ collection->device = devinfop;
-+
-+ return CUBEB_OK;
-+
-+fail:
-+ free(line);
-+ if (sndstatfp)
-+ fclose(sndstatfp);
-+ free(devinfop);
-+ return CUBEB_ERROR;
-+}
-+
-+#else
-+
-+static int
-+oss_enumerate_devices(cubeb * context, cubeb_device_type type,
-+ cubeb_device_collection * collection)
-+{
-+ oss_sysinfo si;
-+ int error, i;
-+ cubeb_device_info *devinfop = NULL;
-+ int collection_cnt = 0;
-+ int mixer_fd = -1;
-+
-+ mixer_fd = open(OSS_DEFAULT_MIXER, O_RDWR);
-+ if (mixer_fd == -1) {
-+ LOG("Failed to open mixer %s. errno: %d", OSS_DEFAULT_MIXER, errno);
-+ return CUBEB_ERROR;
-+ }
-+
-+ error = ioctl(mixer_fd, SNDCTL_SYSINFO, &si);
-+ if (error) {
-+ LOG("Failed to run SNDCTL_SYSINFO on mixer %s. errno: %d", OSS_DEFAULT_MIXER, errno);
-+ goto fail;
-+ }
-+
-+ devinfop = calloc(si.numaudios, sizeof(cubeb_device_info));
-+ if (devinfop == NULL)
-+ goto fail;
-+
-+ collection->count = 0;
-+ for (i = 0; i < si.numaudios; i++) {
-+ oss_audioinfo ai;
-+ cubeb_device_info cdi = { 0 };
-+ const char *devid = NULL;
-+
-+ ai.dev = i;
-+ error = ioctl(mixer_fd, SNDCTL_AUDIOINFO, &ai);
-+ if (error)
-+ goto fail;
-+
-+ assert(ai.dev < si.numaudios);
-+ if (!ai.enabled)
-+ continue;
-+
-+ cdi.type = 0;
-+ switch (ai.caps & DSP_CAP_DUPLEX) {
-+ case DSP_CAP_INPUT:
-+ if (type & CUBEB_DEVICE_TYPE_OUTPUT)
-+ continue;
-+ break;
-+ case DSP_CAP_OUTPUT:
-+ if (type & CUBEB_DEVICE_TYPE_INPUT)
-+ continue;
-+ break;
-+ case 0:
-+ continue;
-+ }
-+ cdi.type = type;
-+
-+ devid = oss_cubeb_devid_intern(context, ai.devnode);
-+ cdi.device_id = strdup(ai.name);
-+ cdi.friendly_name = strdup(ai.name);
-+ cdi.group_id = strdup(ai.name);
-+ if (devid == NULL || cdi.device_id == NULL || cdi.friendly_name == NULL ||
-+ cdi.group_id == NULL) {
-+ oss_free_cubeb_device_info_strings(&cdi);
-+ continue;
-+ }
-+
-+ cdi.devid = devid;
-+ cdi.vendor_name = NULL;
-+ cdi.state = CUBEB_DEVICE_STATE_ENABLED;
-+ cdi.preferred = CUBEB_DEVICE_PREF_NONE;
-+ cdi.format = CUBEB_DEVICE_FMT_S16NE;
-+ cdi.default_format = CUBEB_DEVICE_FMT_S16NE;
-+ cdi.max_channels = ai.max_channels;
-+ cdi.default_rate = OSS_PREFER_RATE;
-+ cdi.max_rate = ai.max_rate;
-+ cdi.min_rate = ai.min_rate;
-+ cdi.latency_lo = 0;
-+ cdi.latency_hi = 0;
-+
-+ devinfop[collection_cnt++] = cdi;
-+ }
-+
-+ collection->count = collection_cnt;
-+ collection->device = devinfop;
-+
-+ if (mixer_fd != -1)
-+ close(mixer_fd);
-+ return CUBEB_OK;
-+
-+fail:
-+ if (mixer_fd != -1)
-+ close(mixer_fd);
-+ free(devinfop);
-+ return CUBEB_ERROR;
-+}
-+
-+#endif
-+
-+static int
-+oss_device_collection_destroy(cubeb * context,
-+ cubeb_device_collection * collection)
-+{
-+ size_t i;
-+ for (i = 0; i < collection->count; i++) {
-+ oss_free_cubeb_device_info_strings(&collection->device[i]);
-+ }
-+ free(collection->device);
-+ collection->device = NULL;
-+ collection->count = 0;
-+ return 0;
-+}
-+
-+static unsigned int
-+oss_chn_from_cubeb(cubeb_channel chn)
-+{
-+ switch (chn) {
-+ case CHANNEL_FRONT_LEFT:
-+ return CHID_L;
-+ case CHANNEL_FRONT_RIGHT:
-+ return CHID_R;
-+ case CHANNEL_FRONT_CENTER:
-+ return CHID_C;
-+ case CHANNEL_LOW_FREQUENCY:
-+ return CHID_LFE;
-+ case CHANNEL_BACK_LEFT:
-+ return CHID_LR;
-+ case CHANNEL_BACK_RIGHT:
-+ return CHID_RR;
-+ case CHANNEL_SIDE_LEFT:
-+ return CHID_LS;
-+ case CHANNEL_SIDE_RIGHT:
-+ return CHID_RS;
-+ default:
-+ return CHID_UNDEF;
-+ }
-+}
-+
-+static unsigned long long
-+oss_cubeb_layout_to_chnorder(cubeb_channel_layout layout)
-+{
-+ unsigned int i, nchns = 0;
-+ unsigned long long chnorder = 0;
-+
-+ for (i = 0; layout; i++, layout >>= 1) {
-+ unsigned long long chid = oss_chn_from_cubeb((layout & 1) << i);
-+ if (chid == CHID_UNDEF)
-+ continue;
-+
-+ chnorder |= (chid & 0xf) << nchns * 4;
-+ nchns++;
-+ }
-+
-+ return chnorder;
-+}
-+
-+static int
-+oss_copy_params(int fd, cubeb_stream * stream, cubeb_stream_params * params,
-+ struct stream_info * sinfo)
-+{
-+ unsigned long long chnorder;
-+
-+ sinfo->channels = params->channels;
-+ sinfo->sample_rate = params->rate;
-+ switch (params->format) {
-+ case CUBEB_SAMPLE_S16LE:
-+ sinfo->fmt = AFMT_S16_LE;
-+ sinfo->precision = 16;
-+ break;
-+ case CUBEB_SAMPLE_S16BE:
-+ sinfo->fmt = AFMT_S16_BE;
-+ sinfo->precision = 16;
-+ break;
-+ case CUBEB_SAMPLE_FLOAT32NE:
-+ sinfo->fmt = AFMT_S32_NE;
-+ sinfo->precision = 32;
-+ break;
-+ default:
-+ LOG("Unsupported format");
-+ return CUBEB_ERROR_INVALID_FORMAT;
-+ }
-+ if (ioctl(fd, SNDCTL_DSP_CHANNELS, &sinfo->channels) == -1) {
-+ return CUBEB_ERROR;
-+ }
-+ if (ioctl(fd, SNDCTL_DSP_SETFMT, &sinfo->fmt) == -1) {
-+ return CUBEB_ERROR;
-+ }
-+ if (ioctl(fd, SNDCTL_DSP_SPEED, &sinfo->sample_rate) == -1) {
-+ return CUBEB_ERROR;
-+ }
-+ /* Mono layout is an exception */
-+ if (params->layout != CUBEB_LAYOUT_UNDEFINED && params->layout != CUBEB_LAYOUT_MONO) {
-+ chnorder = oss_cubeb_layout_to_chnorder(params->layout);
-+ if (ioctl(fd, SNDCTL_DSP_SET_CHNORDER, &chnorder) == -1)
-+ LOG("Non-fatal error %d occured when setting channel order.", errno);
-+ }
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_stream_stop(cubeb_stream * s)
-+{
-+ pthread_mutex_lock(&s->mtx);
-+ if (s->thread_created && s->running) {
-+ s->running = false;
-+ s->doorbell = false;
-+ pthread_cond_wait(&s->stopped_cv, &s->mtx);
-+ }
-+ if (s->state != CUBEB_STATE_STOPPED) {
-+ s->state = CUBEB_STATE_STOPPED;
-+ pthread_mutex_unlock(&s->mtx);
-+ s->state_cb(s, s->user_ptr, CUBEB_STATE_STOPPED);
-+ } else {
-+ pthread_mutex_unlock(&s->mtx);
-+ }
-+ return CUBEB_OK;
-+}
-+
-+static void
-+oss_stream_destroy(cubeb_stream * s)
-+{
-+ pthread_mutex_lock(&s->mtx);
-+ if (s->thread_created) {
-+ s->destroying = true;
-+ s->doorbell = true;
-+ pthread_cond_signal(&s->doorbell_cv);
-+ }
-+ pthread_mutex_unlock(&s->mtx);
-+ pthread_join(s->thread, NULL);
-+
-+ pthread_cond_destroy(&s->doorbell_cv);
-+ pthread_cond_destroy(&s->stopped_cv);
-+ pthread_mutex_destroy(&s->mtx);
-+ if (s->play.fd != -1) {
-+ close(s->play.fd);
-+ }
-+ if (s->record.fd != -1) {
-+ close(s->record.fd);
-+ }
-+ free(s->play.buf);
-+ free(s->record.buf);
-+ free(s);
-+}
-+
-+static void
-+oss_float_to_linear32(void * buf, unsigned sample_count, float vol)
-+{
-+ float * in = buf;
-+ int32_t * out = buf;
-+ int32_t * tail = out + sample_count;
-+
-+ while (out < tail) {
-+ int64_t f = *(in++) * vol * 0x80000000LL;
-+ if (f < -INT32_MAX)
-+ f = -INT32_MAX;
-+ else if (f > INT32_MAX)
-+ f = INT32_MAX;
-+ *(out++) = f;
-+ }
-+}
-+
-+static void
-+oss_linear32_to_float(void * buf, unsigned sample_count)
-+{
-+ int32_t * in = buf;
-+ float * out = buf;
-+ float * tail = out + sample_count;
-+
-+ while (out < tail) {
-+ *(out++) = (1.0 / 0x80000000LL) * *(in++);
-+ }
-+}
-+
-+static void
-+oss_linear16_set_vol(int16_t * buf, unsigned sample_count, float vol)
-+{
-+ unsigned i;
-+ int32_t multiplier = vol * 0x8000;
-+
-+ for (i = 0; i < sample_count; ++i) {
-+ buf[i] = (buf[i] * multiplier) >> 15;
-+ }
-+}
-+
-+/* 1 - Stopped by cubeb_stream_stop, otherwise 0 */
-+static int
-+oss_audio_loop(cubeb_stream * s, cubeb_state *new_state)
-+{
-+ cubeb_state state = CUBEB_STATE_STOPPED;
-+ int trig = 0;
-+ int drain = 0;
-+ struct pollfd pfds[2];
-+ unsigned int ppending, rpending;
-+
-+ pfds[0].fd = s->play.fd;
-+ pfds[0].events = POLLOUT;
-+ pfds[1].fd = s->record.fd;
-+ pfds[1].events = POLLIN;
-+
-+ ppending = 0;
-+ rpending = s->bufframes;
-+
-+ if (s->record.fd != -1) {
-+ if (ioctl(s->record.fd, SNDCTL_DSP_SETTRIGGER, &trig)) {
-+ LOG("Error %d occured when setting trigger on record fd", errno);
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ }
-+ trig |= PCM_ENABLE_INPUT;
-+ if (ioctl(s->record.fd, SNDCTL_DSP_SETTRIGGER, &trig)) {
-+ LOG("Error %d occured when setting trigger on record fd", errno);
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ }
-+ memset(s->record.buf, 0, s->bufframes * s->record.frame_size);
-+ }
-+
-+ while (1) {
-+ long nfr = 0;
-+
-+ pthread_mutex_lock(&s->mtx);
-+ if (!s->running || s->destroying) {
-+ pthread_mutex_unlock(&s->mtx);
-+ break;
-+ }
-+ pthread_mutex_unlock(&s->mtx);
-+ if (s->play.fd == -1 && s->record.fd == -1) {
-+ /*
-+ * Stop here if the stream is not play & record stream,
-+ * play-only stream or record-only stream
-+ */
-+
-+ goto breakdown;
-+ }
-+
-+ while ((s->bufframes - ppending) >= s->nfr && rpending >= s->nfr) {
-+ long n = ((s->bufframes - ppending) < rpending) ? s->bufframes - ppending : rpending;
-+ char *rptr = NULL, *pptr = NULL;
-+ if (s->record.fd != -1)
-+ rptr = (char *)s->record.buf;
-+ if (s->play.fd != -1)
-+ pptr = (char *)s->play.buf + ppending * s->play.frame_size;
-+ if (s->record.fd != -1 && s->record.floating) {
-+ oss_linear32_to_float(s->record.buf, s->record.info.channels * n);
-+ }
-+ nfr = s->data_cb(s, s->user_ptr, rptr, pptr, n);
-+ if (nfr == CUBEB_ERROR) {
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ }
-+ if (pptr) {
-+ float vol;
-+
-+ pthread_mutex_lock(&s->mtx);
-+ vol = s->volume;
-+ pthread_mutex_unlock(&s->mtx);
-+
-+ if (s->play.floating) {
-+ oss_float_to_linear32(pptr, s->play.info.channels * nfr, vol);
-+ } else {
-+ oss_linear16_set_vol((int16_t *)pptr, s->play.info.channels * nfr, vol);
-+ }
-+ }
-+ if (pptr) {
-+ ppending += nfr;
-+ assert(ppending <= s->bufframes);
-+ }
-+ if (rptr) {
-+ assert(rpending >= nfr);
-+ rpending -= nfr;
-+ memmove(rptr, rptr + nfr * s->record.frame_size,
-+ (s->bufframes - nfr) * s->record.frame_size);
-+ }
-+ if (nfr < n) {
-+ if (s->play.fd != -1) {
-+ drain = 1;
-+ break;
-+ } else {
-+ /*
-+ * This is a record-only stream and number of frames
-+ * returned from data_cb() is smaller than number
-+ * of frames required to read. Stop here.
-+ */
-+
-+ state = CUBEB_STATE_STOPPED;
-+ goto breakdown;
-+ }
-+ }
-+ }
-+
-+ ssize_t n, frames;
-+ int nfds;
-+
-+ pfds[0].revents = 0;
-+ pfds[1].revents = 0;
-+
-+ nfds = poll(pfds, 2, 1000);
-+ if (nfds == -1) {
-+ if (errno == EINTR)
-+ continue;
-+ LOG("Error %d occured when polling playback and record fd", errno);
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ } else if (nfds == 0)
-+ continue;
-+
-+ if ((pfds[0].revents & (POLLERR | POLLHUP)) ||
-+ (pfds[1].revents & (POLLERR | POLLHUP))) {
-+ LOG("Error occured on playback, record fds");
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ }
-+
-+ if (pfds[0].revents) {
-+ while (ppending > 0) {
-+ size_t bytes = ppending * s->play.frame_size;
-+ if ((n = write(s->play.fd, (uint8_t *)s->play.buf, bytes)) < 0) {
-+ if (errno == EINTR)
-+ continue;
-+ if (errno == EAGAIN) {
-+ if (drain)
-+ continue;
-+ break;
-+ }
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ }
-+ frames = n / s->play.frame_size;
-+ pthread_mutex_lock(&s->mtx);
-+ s->frames_written += frames;
-+ pthread_mutex_unlock(&s->mtx);
-+ ppending -= frames;
-+ memmove(s->play.buf, (uint8_t *)s->play.buf + n,
-+ (s->bufframes - frames) * s->play.frame_size);
-+ }
-+ }
-+ if (pfds[1].revents) {
-+ while (s->bufframes - rpending > 0) {
-+ size_t bytes = (s->bufframes - rpending) * s->record.frame_size;
-+ size_t read_ofs = rpending * s->record.frame_size;
-+ if ((n = read(s->record.fd, (uint8_t *)s->record.buf + read_ofs, bytes)) < 0) {
-+ if (errno == EINTR)
-+ continue;
-+ if (errno == EAGAIN)
-+ break;
-+ state = CUBEB_STATE_ERROR;
-+ goto breakdown;
-+ }
-+ frames = n / s->record.frame_size;
-+ rpending += frames;
-+ }
-+ }
-+ if (drain) {
-+ state = CUBEB_STATE_DRAINED;
-+ goto breakdown;
-+ }
-+ }
-+
-+ return 1;
-+
-+breakdown:
-+ pthread_mutex_lock(&s->mtx);
-+ *new_state = s->state = state;
-+ s->running = false;
-+ pthread_mutex_unlock(&s->mtx);
-+ return 0;
-+}
-+
-+static void *
-+oss_io_routine(void *arg)
-+{
-+ cubeb_stream *s = arg;
-+ cubeb_state new_state;
-+ int stopped;
-+
-+ do {
-+ pthread_mutex_lock(&s->mtx);
-+ if (s->destroying) {
-+ pthread_mutex_unlock(&s->mtx);
-+ break;
-+ }
-+ pthread_mutex_unlock(&s->mtx);
-+
-+ stopped = oss_audio_loop(s, &new_state);
-+ if (s->record.fd != -1)
-+ ioctl(s->record.fd, SNDCTL_DSP_HALT_INPUT, NULL);
-+ if (!stopped)
-+ s->state_cb(s, s->user_ptr, new_state);
-+
-+ pthread_mutex_lock(&s->mtx);
-+ pthread_cond_signal(&s->stopped_cv);
-+ if (s->destroying) {
-+ pthread_mutex_unlock(&s->mtx);
-+ break;
-+ }
-+ while (!s->doorbell) {
-+ pthread_cond_wait(&s->doorbell_cv, &s->mtx);
-+ }
-+ s->doorbell = false;
-+ pthread_mutex_unlock(&s->mtx);
-+ } while (1);
-+
-+ pthread_mutex_lock(&s->mtx);
-+ s->thread_created = false;
-+ pthread_mutex_unlock(&s->mtx);
-+ return NULL;
-+}
-+
-+static inline int
-+oss_calc_frag_shift(unsigned int frames, unsigned int frame_size)
-+{
-+ int n = 4;
-+ int blksize = (frames * frame_size + OSS_NFRAGS - 1) / OSS_NFRAGS;
-+ while ((1 << n) < blksize)
-+ n++;
-+ return n;
-+}
-+
-+static inline int
-+oss_get_frag_params(unsigned int shift)
-+{
-+ return (OSS_NFRAGS << 16) | shift;
-+}
-+
-+static int
-+oss_stream_init(cubeb * context,
-+ cubeb_stream ** stream,
-+ char const * stream_name,
-+ cubeb_devid input_device,
-+ cubeb_stream_params * input_stream_params,
-+ cubeb_devid output_device,
-+ cubeb_stream_params * output_stream_params,
-+ unsigned int latency_frames,
-+ cubeb_data_callback data_callback,
-+ cubeb_state_callback state_callback,
-+ void * user_ptr)
-+{
-+ int ret = CUBEB_OK;
-+ unsigned int playnfr = 0, recnfr = 0;
-+ cubeb_stream *s = NULL;
-+ const char *defdsp;
-+
-+ if (!(defdsp = getenv(ENV_AUDIO_DEVICE)) || *defdsp == '\0')
-+ defdsp = OSS_DEFAULT_DEVICE;
-+
-+ (void)stream_name;
-+ if ((s = calloc(1, sizeof(cubeb_stream))) == NULL) {
-+ ret = CUBEB_ERROR;
-+ goto error;
-+ }
-+ s->state = CUBEB_STATE_STOPPED;
-+ s->record.fd = s->play.fd = -1;
-+ s->nfr = latency_frames;
-+ if (input_device != NULL) {
-+ strlcpy(s->record.name, input_device, sizeof(s->record.name));
-+ } else {
-+ strlcpy(s->record.name, defdsp, sizeof(s->record.name));
-+ }
-+ if (output_device != NULL) {
-+ strlcpy(s->play.name, output_device, sizeof(s->play.name));
-+ } else {
-+ strlcpy(s->play.name, defdsp, sizeof(s->play.name));
-+ }
-+ if (input_stream_params != NULL) {
-+ unsigned int nb_channels;
-+ if (input_stream_params->prefs & CUBEB_STREAM_PREF_LOOPBACK) {
-+ LOG("Loopback not supported");
-+ ret = CUBEB_ERROR_NOT_SUPPORTED;
-+ goto error;
-+ }
-+ nb_channels = cubeb_channel_layout_nb_channels(input_stream_params->layout);
-+ if (input_stream_params->layout != CUBEB_LAYOUT_UNDEFINED &&
-+ nb_channels != input_stream_params->channels) {
-+ LOG("input_stream_params->layout does not match input_stream_params->channels");
-+ ret = CUBEB_ERROR_INVALID_PARAMETER;
-+ goto error;
-+ }
-+ if (s->record.fd == -1) {
-+ if ((s->record.fd = open(s->record.name, O_RDONLY | O_NONBLOCK)) == -1) {
-+ LOG("Audio device \"%s\" could not be opened as read-only",
-+ s->record.name);
-+ ret = CUBEB_ERROR_DEVICE_UNAVAILABLE;
-+ goto error;
-+ }
-+ }
-+ if ((ret = oss_copy_params(s->record.fd, s, input_stream_params,
-+ &s->record.info)) != CUBEB_OK) {
-+ LOG("Setting record params failed");
-+ goto error;
-+ }
-+ s->record.floating = (input_stream_params->format == CUBEB_SAMPLE_FLOAT32NE);
-+ s->record.frame_size = s->record.info.channels * (s->record.info.precision / 8);
-+ recnfr = (1 << oss_calc_frag_shift(s->nfr, s->record.frame_size)) / s->record.frame_size;
-+ }
-+ if (output_stream_params != NULL) {
-+ unsigned int nb_channels;
-+ if (output_stream_params->prefs & CUBEB_STREAM_PREF_LOOPBACK) {
-+ LOG("Loopback not supported");
-+ ret = CUBEB_ERROR_NOT_SUPPORTED;
-+ goto error;
-+ }
-+ nb_channels = cubeb_channel_layout_nb_channels(output_stream_params->layout);
-+ if (output_stream_params->layout != CUBEB_LAYOUT_UNDEFINED &&
-+ nb_channels != output_stream_params->channels) {
-+ LOG("output_stream_params->layout does not match output_stream_params->channels");
-+ ret = CUBEB_ERROR_INVALID_PARAMETER;
-+ goto error;
-+ }
-+ if (s->play.fd == -1) {
-+ if ((s->play.fd = open(s->play.name, O_WRONLY | O_NONBLOCK)) == -1) {
-+ LOG("Audio device \"%s\" could not be opened as write-only",
-+ s->play.name);
-+ ret = CUBEB_ERROR_DEVICE_UNAVAILABLE;
-+ goto error;
-+ }
-+ }
-+ if ((ret = oss_copy_params(s->play.fd, s, output_stream_params,
-+ &s->play.info)) != CUBEB_OK) {
-+ LOG("Setting play params failed");
-+ goto error;
-+ }
-+ s->play.floating = (output_stream_params->format == CUBEB_SAMPLE_FLOAT32NE);
-+ s->play.frame_size = s->play.info.channels * (s->play.info.precision / 8);
-+ playnfr = (1 << oss_calc_frag_shift(s->nfr, s->play.frame_size)) / s->play.frame_size;
-+ }
-+ /* Use the largest nframes among playing and recording streams */
-+ s->nfr = (playnfr > recnfr) ? playnfr : recnfr;
-+ s->nfrags = OSS_NFRAGS;
-+ s->bufframes = s->nfr * s->nfrags;
-+ if (s->play.fd != -1) {
-+ int frag = oss_get_frag_params(oss_calc_frag_shift(s->nfr, s->play.frame_size));
-+ if (ioctl(s->record.fd, SNDCTL_DSP_SETFRAGMENT, &frag))
-+ LOG("Failed to set record fd with SNDCTL_DSP_SETFRAGMENT. frag: 0x%x",
-+ frag);
-+ }
-+ if (s->record.fd != -1) {
-+ int frag = oss_get_frag_params(oss_calc_frag_shift(s->nfr, s->record.frame_size));
-+ if (ioctl(s->record.fd, SNDCTL_DSP_SETFRAGMENT, &frag))
-+ LOG("Failed to set record fd with SNDCTL_DSP_SETFRAGMENT. frag: 0x%x",
-+ frag);
-+ }
-+ s->context = context;
-+ s->volume = 1.0;
-+ s->state_cb = state_callback;
-+ s->data_cb = data_callback;
-+ s->user_ptr = user_ptr;
-+
-+ if (pthread_mutex_init(&s->mtx, NULL) != 0) {
-+ LOG("Failed to create mutex");
-+ goto error;
-+ }
-+ if (pthread_cond_init(&s->doorbell_cv, NULL) != 0) {
-+ LOG("Failed to create cv");
-+ goto error;
-+ }
-+ if (pthread_cond_init(&s->stopped_cv, NULL) != 0) {
-+ LOG("Failed to create cv");
-+ goto error;
-+ }
-+ s->doorbell = false;
-+
-+ if (s->play.fd != -1) {
-+ if ((s->play.buf = calloc(s->bufframes, s->play.frame_size)) == NULL) {
-+ ret = CUBEB_ERROR;
-+ goto error;
-+ }
-+ }
-+ if (s->record.fd != -1) {
-+ if ((s->record.buf = calloc(s->bufframes, s->record.frame_size)) == NULL) {
-+ ret = CUBEB_ERROR;
-+ goto error;
-+ }
-+ }
-+
-+ *stream = s;
-+ return CUBEB_OK;
-+error:
-+ if (s != NULL) {
-+ oss_stream_destroy(s);
-+ }
-+ return ret;
-+}
-+
-+static int
-+oss_stream_thr_create(cubeb_stream * s)
-+{
-+ if (s->thread_created) {
-+ s->doorbell = true;
-+ pthread_cond_signal(&s->doorbell_cv);
-+ return CUBEB_OK;
-+ }
-+
-+ if (pthread_create(&s->thread, NULL, oss_io_routine, s) != 0) {
-+ LOG("Couldn't create thread");
-+ return CUBEB_ERROR;
-+ }
-+
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_stream_start(cubeb_stream * s)
-+{
-+ s->state_cb(s, s->user_ptr, CUBEB_STATE_STARTED);
-+ pthread_mutex_lock(&s->mtx);
-+ /* Disallow starting an already started stream */
-+ assert(!s->running && s->state != CUBEB_STATE_STARTED);
-+ if (oss_stream_thr_create(s) != CUBEB_OK) {
-+ pthread_mutex_unlock(&s->mtx);
-+ s->state_cb(s, s->user_ptr, CUBEB_STATE_ERROR);
-+ return CUBEB_ERROR;
-+ }
-+ s->state = CUBEB_STATE_STARTED;
-+ s->thread_created = true;
-+ s->running = true;
-+ pthread_mutex_unlock(&s->mtx);
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_stream_get_position(cubeb_stream * s, uint64_t * position)
-+{
-+ pthread_mutex_lock(&s->mtx);
-+ *position = s->frames_written;
-+ pthread_mutex_unlock(&s->mtx);
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_stream_get_latency(cubeb_stream * s, uint32_t * latency)
-+{
-+ int delay;
-+
-+ if (ioctl(s->play.fd, SNDCTL_DSP_GETODELAY, &delay) == -1) {
-+ return CUBEB_ERROR;
-+ }
-+
-+ /* Return number of frames there */
-+ *latency = delay / s->play.frame_size;
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_stream_set_volume(cubeb_stream * stream, float volume)
-+{
-+ if (volume < 0.0)
-+ volume = 0.0;
-+ else if (volume > 1.0)
-+ volume = 1.0;
-+ pthread_mutex_lock(&stream->mtx);
-+ stream->volume = volume;
-+ pthread_mutex_unlock(&stream->mtx);
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_get_current_device(cubeb_stream * stream, cubeb_device ** const device)
-+{
-+ *device = calloc(1, sizeof(cubeb_device));
-+ if (*device == NULL) {
-+ return CUBEB_ERROR;
-+ }
-+ (*device)->input_name = stream->record.fd != -1 ?
-+ strdup(stream->record.name) : NULL;
-+ (*device)->output_name = stream->play.fd != -1 ?
-+ strdup(stream->play.name) : NULL;
-+ return CUBEB_OK;
-+}
-+
-+static int
-+oss_stream_device_destroy(cubeb_stream * stream, cubeb_device * device)
-+{
-+ (void)stream;
-+ free(device->input_name);
-+ free(device->output_name);
-+ free(device);
-+ return CUBEB_OK;
-+}
-+
-+static struct cubeb_ops const oss_ops = {
-+ .init = oss_init,
-+ .get_backend_id = oss_get_backend_id,
-+ .get_max_channel_count = oss_get_max_channel_count,
-+ .get_min_latency = oss_get_min_latency,
-+ .get_preferred_sample_rate = oss_get_preferred_sample_rate,
-+ .enumerate_devices = oss_enumerate_devices,
-+ .device_collection_destroy = oss_device_collection_destroy,
-+ .destroy = oss_destroy,
-+ .stream_init = oss_stream_init,
-+ .stream_destroy = oss_stream_destroy,
-+ .stream_start = oss_stream_start,
-+ .stream_stop = oss_stream_stop,
-+ .stream_reset_default_device = NULL,
-+ .stream_get_position = oss_stream_get_position,
-+ .stream_get_latency = oss_stream_get_latency,
-+ .stream_get_input_latency = NULL,
-+ .stream_set_volume = oss_stream_set_volume,
-+ .stream_get_current_device = oss_get_current_device,
-+ .stream_device_destroy = oss_stream_device_destroy,
-+ .stream_register_device_changed_callback = NULL,
-+ .register_device_collection_changed = NULL};
diff --git a/www/firefox/files/patch-env-api-keys b/www/firefox/files/patch-env-api-keys
index e20b012f27cf..a97a99d6b54a 100644
--- a/www/firefox/files/patch-env-api-keys
+++ b/www/firefox/files/patch-env-api-keys
@@ -2,20 +2,20 @@
--- build/moz.configure/keyfiles.configure
+++ build/moz.configure/keyfiles.configure
-@@ -18,6 +18,7 @@ def keyfile(desc, help=None, callback=lambda x: x):
- @checking('for the %s key' % desc, lambda x: x and x is not no_key)
- @imports(_from='__builtin__', _import='open')
- @imports(_from='__builtin__', _import='IOError')
-+ @imports(_from='os', _import='environ')
+@@ -19,6 +19,7 @@ def keyfile(desc, default=None, help=None, callback=lambda x: x):
+ @checking("for the %s key" % desc, lambda x: x and x is not no_key)
+ @imports(_from="__builtin__", _import="open")
+ @imports(_from="__builtin__", _import="IOError")
++ @imports(_from="os", _import="environ")
def keyfile(value):
if value:
try:
-@@ -28,7 +29,7 @@ def keyfile(desc, help=None, callback=lambda x: x):
+@@ -29,7 +30,7 @@ def keyfile(desc, default=None, help=None, callback=lambda x: x):
raise FatalCheckError("'%s' is empty." % value[0])
except IOError as e:
raise FatalCheckError("'%s': %s." % (value[0], e.strerror))
- return no_key
-+ return environ.get('MOZ_%s_KEY' % desc.upper().replace(' ', '_')) or no_key
++ return environ.get("MOZ_%s_KEY" % desc.upper().replace(" ", "_")) or no_key
return keyfile
diff --git a/www/firefox/files/patch-freebsd11 b/www/firefox/files/patch-freebsd11
new file mode 100644
index 000000000000..5478a3f12a3c
--- /dev/null
+++ b/www/firefox/files/patch-freebsd11
@@ -0,0 +1,21 @@
+Drop after FreeBSD 11 EOL, see https://svnweb.freebsd.org/changeset/base/303524
+
+media/libcubeb/src/cubeb_oss.c:362:10: error: implicit declaration of function 'getline' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
+ while (getline(&line, &linecap, sndstatfp) > 0) {
+ ^
+media/libcubeb/src/cubeb_oss.c:850:13: warning: comparison of integers of different signs: 'long' and 'unsigned int' [-Wsign-compare]
+ if (nfr > s->bufframes) {
+ ~~~ ^ ~~~~~~~~~~~~
+
+--- media/libcubeb/src/cubeb_oss.c.orig 2020-12-07 23:35:05 UTC
++++ media/libcubeb/src/cubeb_oss.c
+@@ -10,6 +10,9 @@
+ * accompanying file LICENSE for details.
+ */
+
++#if defined(__FreeBSD__) && __FreeBSD__ < 12
++#define _WITH_GETLINE
++#endif
+ #include <assert.h>
+ #include <ctype.h>
+ #include <limits.h>