only list missing packages when obfuscating the runtime
We were listing all of std, which certainly worked, but was quite slow at over 200 packages. In practice, we can only be missing up to 20-30 packages. It was a good change as it fixed a severe bug, but it also introduced a fairly noticeable slow-down. The numbers are clear; this change shaves off multiple seconds when obfuscating the runtime with a cold cache: name old time/op new time/op delta Build/NoCache-16 5.06s ± 1% 1.94s ± 1% -61.64% (p=0.008 n=5+5) name old bin-B new bin-B delta Build/NoCache-16 6.70M ± 0% 6.71M ± 0% +0.05% (p=0.008 n=5+5) name old sys-time/op new sys-time/op delta Build/NoCache-16 13.4s ± 2% 5.0s ± 2% -62.45% (p=0.008 n=5+5) name old user-time/op new user-time/op delta Build/NoCache-16 60.6s ± 1% 19.8s ± 1% -67.34% (p=0.008 n=5+5) Since we only want to call "go list" one extra time, instead of once for every package we find out we're missing, we want to know what packages we could be missing in advance. Resurrect a smarter version of the runtime-related script. Finally, remove the runtime-related.txt test script, as it has now been superseeded by the sanity checks in listPackage. That is, obfuscating the runtime package will now panic if we are missing any necessary package information. To double check that we get the runtime's linkname edge case right, make gogarble.txt use runtime/debug.WriteHeapDump, which is implemented via a direct runtime linkname. This ensures we don't lose test coverage from runtime-related.txt.pull/452/head
parent
ff09a7c672
commit
34cbd1b841
@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
# The list of all packages the runtime source linknames to.
|
||||
linked="$(sed -rn 's@//go:linkname .* ([^.]*)\.[^.]*@\1@p' $(go env GOROOT)/src/runtime/*.go | grep -vE '^main|^runtime\.' | sort -u)"
|
||||
|
||||
# The list of all implied dependencies of the packages above,
|
||||
# across all main GOOS targets.
|
||||
implied="$(for GOOS in linux darwin windows js; do
|
||||
for pkg in $linked; do
|
||||
GOOS=$GOOS GOARCH=$GOARCH go list -e -deps $pkg | grep -v '^'$pkg'$'
|
||||
done
|
||||
done | sort -u)"
|
||||
|
||||
# All packages in linked, except those implied by others already.
|
||||
# This resulting list is what we need to "go list" when obfuscating the runtime,
|
||||
# as they are the packages that we may be missing.
|
||||
comm -23 <(
|
||||
echo "$linked"
|
||||
) <(
|
||||
echo "$implied"
|
||||
)
|
@ -1,55 +0,0 @@
|
||||
# test that we used all necessary dependencies
|
||||
[linux] exec bash runtime-related-tested.sh
|
||||
|
||||
env GOPRIVATE=*
|
||||
garble build
|
||||
|
||||
-- runtime-related.sh --
|
||||
for GOOS in linux darwin windows; do
|
||||
skip="|macos"
|
||||
if [[ $GOOS == "darwin" ]]; then
|
||||
skip=""
|
||||
fi
|
||||
|
||||
GOOS=$GOOS go list -deps $(sed -rn 's@//go:linkname .* ([^.]*)\.[^.]*@\1@p' $(go env GOROOT)/src/runtime/*.go | grep -vE '^main|^runtime\.|js'$skip) runtime || exit 1
|
||||
done | sort -u
|
||||
|
||||
-- runtime-related-tested.sh --
|
||||
# get all runtime-related deps
|
||||
related=$(bash runtime-related.sh) || exit 1
|
||||
|
||||
# get all tested deps
|
||||
tested=$(for GOOS in linux darwin windows; do GOOS=$GOOS go list -deps || exit 1; done | sort -u)
|
||||
|
||||
# remove all tested deps from the runtime-related deps
|
||||
output=$(echo "$related" | grep -Fvx -e "$tested")
|
||||
|
||||
# output should be empty if all runtime-related deps are tested
|
||||
[[ -z "$output" ]] || (echo "$output" && exit 1)
|
||||
|
||||
-- go.mod --
|
||||
module test/main
|
||||
|
||||
go 1.17
|
||||
|
||||
-- main.go --
|
||||
package main
|
||||
|
||||
import (
|
||||
"net/http/pprof"
|
||||
"os/signal"
|
||||
"plugin"
|
||||
"runtime/debug"
|
||||
"runtime/metrics"
|
||||
"text/tabwriter"
|
||||
)
|
||||
|
||||
// This program imports all runtime-related dependencies (proven by runtime-related-tested.sh)
|
||||
func main() {
|
||||
_ = tabwriter.AlignRight
|
||||
signal.Ignore()
|
||||
_ = plugin.Plugin{}
|
||||
_ = pprof.Handler("")
|
||||
_ = debug.GCStats{}
|
||||
metrics.All()
|
||||
}
|
Loading…
Reference in New Issue