Go compiler intrinsics
https://dave.cheney.net/2019/08/20/go-compiler-intrinsics [dave.cheney.net]
2019-08-22 05:33
Over the years there have been various proposals for an inline assembly syntax similar to gcc’s asm(...) directive. None have been accepted by the Go team. Instead, Go has added intrinsic functions1.
An intrinsic function is Go code written in regular Go. These functions are known the the Go compiler which contains replacements which it can substitute during compilation.