2016-10-10 11:12:30 +02: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 !appengine
|
|
|
|
// +build gc
|
2016-10-26 05:52:36 +02:00
|
|
|
// +build go1.6
|
2016-10-10 11:12:30 +02:00
|
|
|
// +build !noasm
|
|
|
|
|
|
|
|
#include "textflag.h"
|
|
|
|
|
|
|
|
// fl is short for floating point math. fx is short for fixed point math.
|
|
|
|
|
2016-10-11 14:27:44 +02:00
|
|
|
DATA flAlmost65536<>+0x00(SB)/8, $0x477fffff477fffff
|
|
|
|
DATA flAlmost65536<>+0x08(SB)/8, $0x477fffff477fffff
|
2016-10-10 11:12:30 +02:00
|
|
|
DATA flOne<>+0x00(SB)/8, $0x3f8000003f800000
|
|
|
|
DATA flOne<>+0x08(SB)/8, $0x3f8000003f800000
|
|
|
|
DATA flSignMask<>+0x00(SB)/8, $0x7fffffff7fffffff
|
|
|
|
DATA flSignMask<>+0x08(SB)/8, $0x7fffffff7fffffff
|
2016-10-11 14:27:44 +02:00
|
|
|
|
|
|
|
// scatterAndMulBy0x101 is a PSHUFB mask that brings the low four bytes of an
|
|
|
|
// XMM register to the low byte of that register's four uint32 values. It
|
|
|
|
// duplicates those bytes, effectively multiplying each uint32 by 0x101.
|
|
|
|
//
|
|
|
|
// It transforms a little-endian 16-byte XMM value from
|
|
|
|
// ijkl????????????
|
|
|
|
// to
|
|
|
|
// ii00jj00kk00ll00
|
|
|
|
DATA scatterAndMulBy0x101<>+0x00(SB)/8, $0x8080010180800000
|
|
|
|
DATA scatterAndMulBy0x101<>+0x08(SB)/8, $0x8080030380800202
|
|
|
|
|
2016-10-20 06:15:53 +02:00
|
|
|
// gather is a PSHUFB mask that brings the second-lowest byte of the XMM
|
|
|
|
// register's four uint32 values to the low four bytes of that register.
|
2016-10-11 14:27:44 +02:00
|
|
|
//
|
|
|
|
// It transforms a little-endian 16-byte XMM value from
|
2016-10-20 06:15:53 +02:00
|
|
|
// ?i???j???k???l??
|
2016-10-11 14:27:44 +02:00
|
|
|
// to
|
|
|
|
// ijkl000000000000
|
2016-10-20 06:15:53 +02:00
|
|
|
DATA gather<>+0x00(SB)/8, $0x808080800d090501
|
2016-10-11 14:27:44 +02:00
|
|
|
DATA gather<>+0x08(SB)/8, $0x8080808080808080
|
|
|
|
|
|
|
|
DATA fxAlmost65536<>+0x00(SB)/8, $0x0000ffff0000ffff
|
|
|
|
DATA fxAlmost65536<>+0x08(SB)/8, $0x0000ffff0000ffff
|
|
|
|
DATA inverseFFFF<>+0x00(SB)/8, $0x8000800180008001
|
|
|
|
DATA inverseFFFF<>+0x08(SB)/8, $0x8000800180008001
|
2016-10-10 11:12:30 +02:00
|
|
|
|
2016-10-11 14:27:44 +02:00
|
|
|
GLOBL flAlmost65536<>(SB), (NOPTR+RODATA), $16
|
2016-10-10 11:12:30 +02:00
|
|
|
GLOBL flOne<>(SB), (NOPTR+RODATA), $16
|
|
|
|
GLOBL flSignMask<>(SB), (NOPTR+RODATA), $16
|
2016-10-11 14:27:44 +02:00
|
|
|
GLOBL scatterAndMulBy0x101<>(SB), (NOPTR+RODATA), $16
|
|
|
|
GLOBL gather<>(SB), (NOPTR+RODATA), $16
|
|
|
|
GLOBL fxAlmost65536<>(SB), (NOPTR+RODATA), $16
|
|
|
|
GLOBL inverseFFFF<>(SB), (NOPTR+RODATA), $16
|
2016-10-10 11:12:30 +02:00
|
|
|
|
|
|
|
// func haveSSE4_1() bool
|
|
|
|
TEXT ·haveSSE4_1(SB), NOSPLIT, $0
|
|
|
|
MOVQ $1, AX
|
|
|
|
CPUID
|
|
|
|
SHRQ $19, CX
|
|
|
|
ANDQ $1, CX
|
|
|
|
MOVB CX, ret+0(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2016-10-13 05:50:52 +02:00
|
|
|
// func {{.LongName}}SIMD({{.Args}})
|
2016-10-10 11:12:30 +02:00
|
|
|
//
|
|
|
|
// XMM registers. Variable names are per
|
|
|
|
// https://github.com/google/font-rs/blob/master/src/accumulate.c
|
|
|
|
//
|
|
|
|
// xmm0 scratch
|
|
|
|
// xmm1 x
|
|
|
|
// xmm2 y, z
|
|
|
|
// xmm3 {{.XMM3}}
|
|
|
|
// xmm4 {{.XMM4}}
|
|
|
|
// xmm5 {{.XMM5}}
|
2016-10-13 05:50:52 +02:00
|
|
|
// xmm6 {{.XMM6}}
|
2016-10-10 11:12:30 +02:00
|
|
|
// xmm7 offset
|
2016-10-11 14:27:44 +02:00
|
|
|
// xmm8 {{.XMM8}}
|
|
|
|
// xmm9 {{.XMM9}}
|
|
|
|
// xmm10 {{.XMM10}}
|
2016-10-13 05:50:52 +02:00
|
|
|
TEXT ·{{.LongName}}SIMD(SB), NOSPLIT, ${{.FrameSize}}-{{.ArgsSize}}
|
|
|
|
{{.LoadArgs}}
|
2016-10-10 11:12:30 +02:00
|
|
|
|
2016-10-11 14:27:44 +02:00
|
|
|
// R10 = len(src) &^ 3
|
|
|
|
// R11 = len(src)
|
|
|
|
MOVQ R10, R11
|
|
|
|
ANDQ $-4, R10
|
2016-10-10 11:12:30 +02:00
|
|
|
|
|
|
|
{{.Setup}}
|
|
|
|
|
2016-10-11 14:27:44 +02:00
|
|
|
{{.LoadXMMRegs}}
|
|
|
|
|
|
|
|
// offset := XMM(0x00000000 repeated four times) // Cumulative sum.
|
2016-10-10 11:12:30 +02:00
|
|
|
XORPS X7, X7
|
|
|
|
|
|
|
|
// i := 0
|
2016-10-11 14:27:44 +02:00
|
|
|
MOVQ $0, R9
|
2016-10-10 11:12:30 +02:00
|
|
|
|
|
|
|
{{.ShortName}}Loop4:
|
|
|
|
// for i < (len(src) &^ 3)
|
2016-10-11 14:27:44 +02:00
|
|
|
CMPQ R9, R10
|
2016-10-10 11:12:30 +02:00
|
|
|
JAE {{.ShortName}}Loop1
|
|
|
|
|
|
|
|
// x = XMM(s0, s1, s2, s3)
|
|
|
|
//
|
|
|
|
// Where s0 is src[i+0], s1 is src[i+1], etc.
|
|
|
|
MOVOU (SI), X1
|
|
|
|
|
|
|
|
// scratch = XMM(0, s0, s1, s2)
|
|
|
|
// x += scratch // yields x == XMM(s0, s0+s1, s1+s2, s2+s3)
|
|
|
|
MOVOU X1, X0
|
|
|
|
PSLLO $4, X0
|
|
|
|
{{.Add}} X0, X1
|
|
|
|
|
|
|
|
// scratch = XMM(0, 0, 0, 0)
|
|
|
|
// scratch = XMM(scratch@0, scratch@0, x@0, x@1) // yields scratch == XMM(0, 0, s0, s0+s1)
|
|
|
|
// x += scratch // yields x == XMM(s0, s0+s1, s0+s1+s2, s0+s1+s2+s3)
|
|
|
|
XORPS X0, X0
|
|
|
|
SHUFPS $0x40, X1, X0
|
|
|
|
{{.Add}} X0, X1
|
|
|
|
|
|
|
|
// x += offset
|
|
|
|
{{.Add}} X7, X1
|
|
|
|
|
|
|
|
{{.ClampAndScale}}
|
|
|
|
|
|
|
|
{{.ConvertToInt32}}
|
|
|
|
|
2016-10-11 14:27:44 +02:00
|
|
|
{{.Store4}}
|
2016-10-10 11:12:30 +02:00
|
|
|
|
|
|
|
// offset = XMM(x@3, x@3, x@3, x@3)
|
|
|
|
MOVOU X1, X7
|
|
|
|
SHUFPS $0xff, X1, X7
|
|
|
|
|
|
|
|
// i += 4
|
|
|
|
// dst = dst[4:]
|
|
|
|
// src = src[4:]
|
2016-10-11 14:27:44 +02:00
|
|
|
ADDQ $4, R9
|
2016-10-13 05:50:52 +02:00
|
|
|
ADDQ ${{.DstElemSize4}}, DI
|
2016-10-10 11:12:30 +02:00
|
|
|
ADDQ $16, SI
|
|
|
|
JMP {{.ShortName}}Loop4
|
|
|
|
|
|
|
|
{{.ShortName}}Loop1:
|
|
|
|
// for i < len(src)
|
2016-10-11 14:27:44 +02:00
|
|
|
CMPQ R9, R11
|
2016-10-13 05:50:52 +02:00
|
|
|
JAE {{.ShortName}}End
|
2016-10-10 11:12:30 +02:00
|
|
|
|
|
|
|
// x = src[i] + offset
|
|
|
|
MOVL (SI), X1
|
|
|
|
{{.Add}} X7, X1
|
|
|
|
|
|
|
|
{{.ClampAndScale}}
|
|
|
|
|
|
|
|
{{.ConvertToInt32}}
|
|
|
|
|
2016-10-11 14:27:44 +02:00
|
|
|
{{.Store1}}
|
2016-10-10 11:12:30 +02:00
|
|
|
|
|
|
|
// offset = x
|
|
|
|
MOVOU X1, X7
|
|
|
|
|
|
|
|
// i += 1
|
|
|
|
// dst = dst[1:]
|
|
|
|
// src = src[1:]
|
2016-10-11 14:27:44 +02:00
|
|
|
ADDQ $1, R9
|
2016-10-13 05:50:52 +02:00
|
|
|
ADDQ ${{.DstElemSize1}}, DI
|
2016-10-10 11:12:30 +02:00
|
|
|
ADDQ $4, SI
|
|
|
|
JMP {{.ShortName}}Loop1
|
|
|
|
|
|
|
|
{{.ShortName}}End:
|
|
|
|
RET
|