2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 00:20:48 +00:00
restic/vendor/golang.org/x/crypto/blake2s/blake2s_386.go

33 lines
753 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 386,!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 (
useSSE4 = false
2018-05-07 20:47:39 +00:00
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)
func hashBlocks(h *[8]uint32, c *[2]uint32, flag uint32, blocks []byte) {
2018-05-07 20:47:39 +00:00
switch {
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)
}
}