39 lines
936 B
Go
Raw Normal View History

2021-11-22 16:05:02 +00:00
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2021-12-01 15:43:13 +00:00
//go:build amd64 && gc && !purego
// +build amd64,gc,!purego
2021-11-22 16:05:02 +00:00
package blake2s
2021-12-01 15:43:13 +00:00
import "golang.org/x/sys/cpu"
2021-11-22 16:05:02 +00:00
var (
2021-12-01 15:43:13 +00:00
useSSE4 = cpu.X86.HasSSE41
useSSSE3 = cpu.X86.HasSSSE3
useSSE2 = cpu.X86.HasSSE2
2021-11-22 16:05:02 +00:00
)
//go:noescape
func hashBlocksSSE2(h *[8]uint32, c *[2]uint32, flag uint32, blocks []byte)
//go:noescape
func hashBlocksSSSE3(h *[8]uint32, c *[2]uint32, flag uint32, blocks []byte)
//go:noescape
func hashBlocksSSE4(h *[8]uint32, c *[2]uint32, flag uint32, blocks []byte)
func hashBlocks(h *[8]uint32, c *[2]uint32, flag uint32, blocks []byte) {
2021-12-01 15:43:13 +00:00
switch {
case useSSE4:
2021-11-22 16:05:02 +00:00
hashBlocksSSE4(h, c, flag, blocks)
2021-12-01 15:43:13 +00:00
case useSSSE3:
2021-11-22 16:05:02 +00:00
hashBlocksSSSE3(h, c, flag, blocks)
2021-12-01 15:43:13 +00:00
case useSSE2:
2021-11-22 16:05:02 +00:00
hashBlocksSSE2(h, c, flag, blocks)
2021-12-01 15:43:13 +00:00
default:
2021-11-22 16:05:02 +00:00
hashBlocksGeneric(h, c, flag, blocks)
}
}