1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-27 17:28:38 +00:00
miniflux-v2/vendor/golang.org/x/crypto/blake2s/blake2s_amd64.go

38 lines
909 B
Go
Raw Normal View History

2017-11-19 21:10:04 -08: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.
// +build amd64,!gccgo,!appengine
package blake2s
2018-07-06 21:18:14 -07:00
import "golang.org/x/sys/cpu"
2017-11-19 21:10:04 -08:00
var (
2018-07-06 21:18:14 -07:00
useSSE4 = cpu.X86.HasSSE41
useSSSE3 = cpu.X86.HasSSSE3
useSSE2 = cpu.X86.HasSSE2
2017-11-19 21:10:04 -08: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) {
2018-07-06 21:18:14 -07:00
switch {
case useSSE4:
2017-11-19 21:10:04 -08:00
hashBlocksSSE4(h, c, flag, blocks)
2018-07-06 21:18:14 -07:00
case useSSSE3:
2017-11-19 21:10:04 -08:00
hashBlocksSSSE3(h, c, flag, blocks)
2018-07-06 21:18:14 -07:00
case useSSE2:
2017-11-19 21:10:04 -08:00
hashBlocksSSE2(h, c, flag, blocks)
2018-07-06 21:18:14 -07:00
default:
2017-11-19 21:10:04 -08:00
hashBlocksGeneric(h, c, flag, blocks)
}
}