-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
drawfillover_avx.go
89 lines (76 loc) · 1.79 KB
/
drawfillover_avx.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//+build amd64,go1.10
package nucular
import (
"fmt"
"image"
)
func drawFillOver_SIMD_internal(base *uint8, i0, i1 int, stride, n int, adivm, sr, sg, sb, sa uint32)
func getCPUID1() (edx, ecx uint32)
func getCPUID70() (ebx, ecx uint32)
const debugUseSIMD = false
var useSIMD = func() bool {
dbgnosimd := func(reason string) {
if !debugUseSIMD {
return
}
fmt.Printf("can not use SIMD, %s\n", reason)
}
if debugUseSIMD {
fmt.Printf("useSIMD check\n")
}
edx, ecx := getCPUID1()
if debugUseSIMD {
fmt.Printf("EAX = 0x01 -> EDX = %#04x ECX = %#04x\n", edx, ecx)
}
if edx&(1<<25) == 0 {
dbgnosimd("no SSE")
return false
}
if edx&(1<<26) == 0 {
dbgnosimd("no SSE2")
return false
}
if ecx&(1<<28) == 0 {
dbgnosimd("no AVX1")
return false
}
ebx, ecx := getCPUID70()
if debugUseSIMD {
fmt.Printf("EAX = 0x07 ECX = 0x00 -> EBX = %#04x ECX = %#04x\n", ebx, ecx)
}
if ebx&(1<<5) == 0 {
dbgnosimd("no AVX2")
return false
}
if debugUseSIMD {
fmt.Printf("can use SIMD for drawFillOver\n")
}
return true
}()
func drawFillOver(dst *image.RGBA, r image.Rectangle, sr, sg, sb, sa uint32) {
const m = 1<<16 - 1
a := (m - sa) * 0x101
if useSIMD {
adivm := a / m
i0 := dst.PixOffset(r.Min.X, r.Min.Y)
i1 := i0 + r.Dx()*4
drawFillOver_SIMD_internal(&dst.Pix[0], i0, i1, dst.Stride, r.Max.Y-r.Min.Y, adivm, sr, sg, sb, sa)
return
}
i0 := dst.PixOffset(r.Min.X, r.Min.Y)
i1 := i0 + r.Dx()*4
for y := r.Min.Y; y != r.Max.Y; y++ {
for i := i0; i < i1; i += 4 {
dr := &dst.Pix[i+0]
dg := &dst.Pix[i+1]
db := &dst.Pix[i+2]
da := &dst.Pix[i+3]
*dr = uint8((uint32(*dr)*a/m + sr) >> 8)
*dg = uint8((uint32(*dg)*a/m + sg) >> 8)
*db = uint8((uint32(*db)*a/m + sb) >> 8)
*da = uint8((uint32(*da)*a/m + sa) >> 8)
}
i0 += dst.Stride
i1 += dst.Stride
}
}