File: uintptrescapes3.go

package info (click to toggle)
golang-1.24 1.24.4-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid
  • size: 167,820 kB
  • sloc: asm: 154,901; ansic: 7,009; sh: 2,267; javascript: 1,705; perl: 1,052; python: 421; makefile: 110; cpp: 39; f90: 8; awk: 7; objc: 4
file content (63 lines) | stat: -rw-r--r-- 1,306 bytes parent folder | download | duplicates (23)
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))
	}
}