blob: 92be5d1eef4239d63b4830ec711100b9907fb3da (
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
53
54
55
56
57
58
59
60
61
62
63
|
// 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.
// Test that //go:uintptrescapes works for methods.
package main
import (
"fmt"
"runtime"
"unsafe"
)
var callback func()
//go:noinline
//go:uintptrescapes
func F(ptr uintptr) { callback() }
//go:noinline
//go:uintptrescapes
func Fv(ptrs ...uintptr) { callback() }
type T struct{}
//go:noinline
//go:uintptrescapes
func (T) M(ptr uintptr) { callback() }
//go:noinline
//go:uintptrescapes
func (T) Mv(ptrs ...uintptr) { callback() }
// Each test should pass uintptr(ptr) as an argument to a function call,
// which in turn should call callback. The callback checks that ptr is kept alive.
var tests = []func(ptr unsafe.Pointer){
func(ptr unsafe.Pointer) { F(uintptr(ptr)) },
func(ptr unsafe.Pointer) { Fv(uintptr(ptr)) },
func(ptr unsafe.Pointer) { T{}.M(uintptr(ptr)) },
func(ptr unsafe.Pointer) { T{}.Mv(uintptr(ptr)) },
}
func main() {
for i, test := range tests {
finalized := false
ptr := new([64]byte)
runtime.SetFinalizer(ptr, func(*[64]byte) {
finalized = true
})
callback = func() {
runtime.GC()
if finalized {
fmt.Printf("test #%d failed\n", i)
}
}
test(unsafe.Pointer(ptr))
}
}
|