You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
garble/testdata/script
Daniel Martí 0ec363d9c8 avoid breaking intrinsics when obfuscating names
We obfuscate import paths as well as their declared names.
The compiler treats some packages and APIs in special ways,
and the way it detects those is by looking at import paths and names.

In the past, we have avoided obfuscating some names like embed.FS or
reflect.Value.MethodByName for this reason. Otherwise,
go:embed or the linker's deadcode elimination might be broken.

This matching by path and name also happens with compiler intrinsics.
Intrinsics allow the compiler to rewrite some standard library calls
with small and efficient assembly, depending on the target GOARCH.
For example, math/bits.TrailingZeros32 gets replaced with ssa.OpCtz32,
which on amd64 may result in using the TZCNTL instruction.

We never noticed that we were breaking many of these intrinsics.
The intrinsics for funcs declared in the runtime and its dependencies
still worked properly, as we do not obfuscate those packages yet.
However, for other packages like math/bits and sync/atomic,
the intrinsics were being entirely disabled due to obfuscated names.

Skipping intrinsics is particularly bad for performance,
and it also leads to slightly larger binaries:

			 │      old      │                 new                 │
			 │     bin-B     │     bin-B      vs base              │
	Build-16   5.450Mi ± ∞ ¹   5.333Mi ± ∞ ¹  -2.15% (p=0.029 n=4)

Finally, the main reason we noticed that intrinsics were broken
is that apparently GOARCH=mips fails to link without them,
as some symbols end up being not defined at all.
This patch fixes builds for the MIPS family of architectures.

Rather than building and linking all of std for every GOARCH,
test that intrinsics work by asking the compiler to print which
intrinsics are being applied, and checking that math/bits gets them.

This fix is relatively unfortunate, as it means we stop obfuscating
about 120 function names and a handful of package paths.
However, fixing builds and intrinsics is much more important.
We can figure out better ways to deal with intrinsics in the future.

Fixes #646.
3 years ago
..
asm.txtar support assembly references to package names 3 years ago
basic.txtar drop support for Go 1.18.x 3 years ago
cgo.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
crossbuild.txtar avoid breaking intrinsics when obfuscating names 3 years ago
debugdir.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
embed.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
goenv.txtar drop support for Go 1.18.x 3 years ago
gogarble.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
goversion.txtar drop support for Go 1.18.x 3 years ago
help.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
implement.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
imports.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
init.txtar drop support for Go 1.18.x 3 years ago
ldflags.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
linker.txtar patch and rebuild cmd/link to modify the magic value in pclntab 3 years ago
linkname.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
literals.txtar add support for obfuscation of dot-imported string constants 3 years ago
modinfo.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
plugin.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
position.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
reflect.txtar avoid reflect method call panics with GOGARBLE=* 3 years ago
reverse.txtar CI: bump gotip to December 2022 3 years ago
seed-cache.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
seed.txtar make seed.txtar less likely to flake 3 years ago
syntax.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago
test.txtar support `garble test` in main packages 3 years ago
tiny.txtar remove all unexported func names with -tiny via the linker 3 years ago
typeparams.txtar default to GOGARBLE=*, stop using GOPRIVATE 3 years ago