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
|
// 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.
// This test makes sure that we don't split a single
// load up into two separate loads.
package main
import "testing"
//go:noinline
func read1(b []byte) (uint16, uint16) {
// There is only a single read of b[0]. The two
// returned values must have the same low byte.
v := b[0]
return uint16(v), uint16(v) | uint16(b[1])<<8
}
func main1(t *testing.T) {
const N = 100000
done := make(chan bool, 2)
b := make([]byte, 2)
go func() {
for i := 0; i < N; i++ {
b[0] = byte(i)
b[1] = byte(i)
}
done <- true
}()
go func() {
for i := 0; i < N; i++ {
x, y := read1(b)
if byte(x) != byte(y) {
t.Errorf("x=%x y=%x\n", x, y)
done <- false
return
}
}
done <- true
}()
<-done
<-done
}
//go:noinline
func read2(b []byte) (uint16, uint16) {
// There is only a single read of b[1]. The two
// returned values must have the same high byte.
v := uint16(b[1]) << 8
return v, uint16(b[0]) | v
}
func main2(t *testing.T) {
const N = 100000
done := make(chan bool, 2)
b := make([]byte, 2)
go func() {
for i := 0; i < N; i++ {
b[0] = byte(i)
b[1] = byte(i)
}
done <- true
}()
go func() {
for i := 0; i < N; i++ {
x, y := read2(b)
if x&0xff00 != y&0xff00 {
t.Errorf("x=%x y=%x\n", x, y)
done <- false
return
}
}
done <- true
}()
<-done
<-done
}
func TestDupLoad(t *testing.T) {
main1(t)
main2(t)
}
|