blob: 2ca040d79a1c78ffb69245275c6bdd881efb59e6 (
plain)
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
|
// run
// Copyright 2019 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.
// Issue 30977: write barrier call clobbers volatile
// value when there are multiple uses of the value.
package main
import "runtime"
type T struct {
a, b, c, d, e string
}
//go:noinline
func g() T {
return T{"a", "b", "c", "d", "e"}
}
//go:noinline
func f() {
// The compiler optimizes this to direct copying
// the call result to both globals, with write
// barriers. The first write barrier call clobbers
// the result of g on stack.
X = g()
Y = X
}
var X, Y T
const N = 1000
func main() {
// Keep GC running so the write barrier is on.
go func() {
for {
runtime.GC()
}
}()
for i := 0; i < N; i++ {
runtime.Gosched()
f()
if X != Y {
panic("FAIL")
}
}
}
|