blake2b_amd64.go 603 B

12345678910111213141516171819202122232425
  1. // Copyright 2016 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build !go1.7 && amd64 && gc && !purego
  5. // +build !go1.7,amd64,gc,!purego
  6. package blake2b
  7. import "golang.org/x/sys/cpu"
  8. func init() {
  9. useSSE4 = cpu.X86.HasSSE41
  10. }
  11. //go:noescape
  12. func hashBlocksSSE4(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte)
  13. func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) {
  14. if useSSE4 {
  15. hashBlocksSSE4(h, c, flag, blocks)
  16. } else {
  17. hashBlocksGeneric(h, c, flag, blocks)
  18. }
  19. }