|
|
|
module mvdan.cc/garble
|
|
|
|
|
|
|
|
// Before the .5 bugfix release, alias tracking via go/types
|
|
|
|
// was broken; see https://go.dev/issue/70517.
|
|
|
|
go 1.23.5
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/bluekeyes/go-gitdiff v0.8.1
|
|
|
|
github.com/go-quicktest/qt v1.101.0
|
|
|
|
github.com/google/go-cmp v0.7.0
|
|
|
|
github.com/rogpeppe/go-internal v1.14.1
|
|
|
|
golang.org/x/mod v0.24.0
|
|
|
|
golang.org/x/tools v0.31.0
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/kr/pretty v0.3.1 // indirect
|
redesign benchmark to be more useful and realistic
First, join the two benchmarks into one.
The previous "cached" benchmark was borderline pointless,
as it built the same package with the existing output binary,
so it would quickly realise it had nothing to do and take ~100ms.
The previous "noncached" benchmark input had no dependencies,
so it was only really benchmarking the non-obfuscation of the runtime.
All in all, neither benchmark measured obfuscating multiple packages.
The new benchmark reuses the "cached" input, but with GOCACHE="*",
meaning that we now obfuscate dozens of standard library packages.
Each iteration first does a built from scratch, the worst case scenario,
and then does an incremental rebuild of just the main package,
which is the closest to a best case scenario without being a no-op.
Since each iteration now performs both kinds of builds,
we include a new "cached-time" metric to report what portion of the
"time" metric corresponds to the incremental build.
Thus, we can see a clean build takes ~11s, and a cached takes ~0.3s:
name time/op
Build-16 11.6s ± 1%
name bin-B
Build-16 5.34M ± 0%
name cached-time/op
Build-16 326ms ± 5%
name sys-time/op
Build-16 184ms ±13%
name user-time/op
Build-16 611ms ± 5%
The benchmark is also no logner parallel; see the docs.
Note that the old benchmark also reported bin-B incorrectly,
as it looked at the binary size of garble itself, not the input program.
3 years ago
|
|
|
github.com/kr/text v0.2.0 // indirect
|
|
|
|
golang.org/x/sync v0.12.0 // indirect
|
|
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
|
|
)
|