2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-06 02:50:50 +00:00
restic/vendor/golang.org/x/crypto/blake2s/blake2s_amd64.go

38 lines
909 B
Go
Raw Normal View History

2017-07-23 12:24:45 +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.
// +build amd64,!gccgo,!appengine
package blake2s
2018-05-07 20:47:39 +00:00
import "golang.org/x/sys/cpu"
2017-07-23 12:24:45 +00:00
var (
2018-05-07 20:47:39 +00:00
useSSE4 = cpu.X86.HasSSE41
useSSSE3 = cpu.X86.HasSSSE3
useSSE2 = cpu.X86.HasSSE2
2017-07-23 12:24:45 +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) {
2018-05-07 20:47:39 +00:00
switch {
case useSSE4:
2017-07-23 12:24:45 +00:00
hashBlocksSSE4(h, c, flag, blocks)
2018-05-07 20:47:39 +00:00
case useSSSE3:
2017-07-23 12:24:45 +00:00
hashBlocksSSSE3(h, c, flag, blocks)
2018-05-07 20:47:39 +00:00
case useSSE2:
2017-07-23 12:24:45 +00:00
hashBlocksSSE2(h, c, flag, blocks)
2018-05-07 20:47:39 +00:00
default:
2017-07-23 12:24:45 +00:00
hashBlocksGeneric(h, c, flag, blocks)
}
}