Go 根据架构优化实施

示例

我们可以优化只支持不对齐的读/创建定义函数的两个文件,并构建约束(对于XOR代码的实际例子是范围在这里为前缀来写架构一个简单的XOR功能,看到crypto/cipher/xor.go的标准库):

// +建立386 amd64 s390x

package cipher

func xorBytes(dst, a, b []byte) int { /* This function uses unaligned reads / writes to optimize the operation */ }

对于其他架构:

// + build!386,!amd64,!s390x

package cipher

func xorBytes(dst, a, b []byte) int { /* This version of the function just loops and xors */ }