This page lists optimizations done by the compilers. Note that these are not guaranteed by the language specification.
Putting a zero-width type in an interface value doesn't allocate.
Putting a word-sized-or-less non-pointer type in an interface value doesn't allocate.
For a map m of type map[string]T and []byte b, m[string(b)] doesn‘t allocate. (the temporary string copy of the byte slice isn’t made)
TODO
For a slice or array s, loops of the form
for i := range s {
a[i] = <zero value for element of s>
}
are converted into efficient runtime memclr calls. Issue and commit.