tailscale/tool/wasm-opt
Mihai Parparita d60f7fe33f cmd/tsconnect: run wasm-opt on the generated wasm file
Saves about 1.4MB from the generated wasm file. The Brotli size is
basically unchanged (it's actually slightly larger, by 40K), suggesting
that most of the size delta is due to not inlining and other changes
that were easily compressible.

However, it still seems worthwhile to have a smaller final binary, to
reduce parse time and increase likelihood that we fit in the browser's
disk cache. Actual performance appears to be unchanged.

Updates #5142

Signed-off-by: Mihai Parparita <mihai@tailscale.com>
2022-10-25 13:16:37 -07:00

75 lines
2.0 KiB
Bash
Executable File

#!/bin/sh
#
# This script acts like the "wasm-opt" command from the Binaryen toolchain, but
# uses Tailscale's currently-desired version, downloading it first if necessary.
set -eu
BINARYEN_DIR="$HOME/.cache/tailscale-binaryen"
read -r BINARYEN_REV < "$(dirname "$0")/binaryen.rev"
# This works for Linux and Darwin, which is sufficient
# (we do not build for other targets).
OS=$(uname -s | tr A-Z a-z)
if [ "$OS" = "darwin" ]; then
# Binaryen uses the name "macos".
OS="macos"
fi
ARCH="$(uname -m)"
if [ "$ARCH" = "aarch64" ]; then
# Binaryen uses the name "arm64".
ARCH="arm64"
fi
install_binaryen() {
BINARYEN_URL="https://github.com/WebAssembly/binaryen/releases/download/version_${BINARYEN_REV}/binaryen-version_${BINARYEN_REV}-${ARCH}-${OS}.tar.gz"
install_tool "wasm-opt" $BINARYEN_REV $BINARYEN_DIR $BINARYEN_URL
}
install_tool() {
TOOL=$1
REV=$2
TOOLCHAIN=$3
URL=$4
archive="$TOOLCHAIN-$REV.tar.gz"
mark="$TOOLCHAIN.extracted"
extracted=
[ ! -e "$mark" ] || read -r extracted junk <$mark
if [ "$extracted" = "$REV" ] && [ -e "$TOOLCHAIN/bin/$TOOL" ]; then
# Already extracted, continue silently
return 0
fi
echo ""
rm -f "$archive.new" "$TOOLCHAIN.extracted"
if [ ! -e "$archive" ]; then
log "Need to download $TOOL '$REV' from $URL."
curl -f -L -o "$archive.new" $URL
rm -f "$archive"
mv "$archive.new" "$archive"
fi
log "Extracting $TOOL '$REV' into '$TOOLCHAIN'." >&2
rm -rf "$TOOLCHAIN"
mkdir -p "$TOOLCHAIN"
(cd "$TOOLCHAIN" && tar --strip-components=1 -xf "$archive")
echo "$REV" >$mark
}
log() {
echo "$@" >&2
}
if [ "${BINARYEN_DIR}" = "SKIP" ] ||
[ "${OS}" != "macos" -a "${OS}" != "linux" ] ||
[ "${ARCH}" != "x86_64" -a "${ARCH}" != "arm64" ]; then
log "Unsupported OS (${OS}) and architecture (${ARCH}) combination."
log "Using existing wasm-opt (`which wasm-opt`)."
exec wasm-opt "$@"
fi
install_binaryen
"$BINARYEN_DIR/bin/wasm-opt" "$@"