blob: 656286c0ff2bd72e7580bd7592a533d4a346d1df [file] [log] [blame]
Matthew Dempskyb3bd7ab2019-10-01 11:22:07 -07001// errorcheck -0 -l -m -live
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -07002
3// Copyright 2016 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Test escape analysis and liveness inferred for uintptrescapes functions.
8
9package p
10
11import (
12 "unsafe"
13)
14
15//go:uintptrescapes
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070016func F1(a uintptr) {} // ERROR "escaping uintptr"
17
18//go:uintptrescapes
Matthew Dempskyb9704872019-09-04 15:16:25 -070019func F2(a ...uintptr) {} // ERROR "escaping ...uintptr"
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070020
Cherry Zhangbeeab6a2017-12-07 22:01:42 -050021//go:uintptrescapes
Cherry Zhangbeeab6a2017-12-07 22:01:42 -050022func F3(uintptr) {} // ERROR "escaping uintptr"
23
24//go:uintptrescapes
Cherry Zhangbeeab6a2017-12-07 22:01:42 -050025func F4(...uintptr) {} // ERROR "escaping ...uintptr"
26
Matthew Dempskyb3bd7ab2019-10-01 11:22:07 -070027type T struct{}
28
29//go:uintptrescapes
30func (T) M1(a uintptr) {} // ERROR "escaping uintptr"
31
32//go:uintptrescapes
Matthew Dempskydf00abc2021-06-24 09:07:52 -070033func (T) M2(a ...uintptr) {} // ERROR "escaping ...uintptr"
Matthew Dempskyb3bd7ab2019-10-01 11:22:07 -070034
35func TestF1() {
Cherry Zhangbeeab6a2017-12-07 22:01:42 -050036 var t int // ERROR "moved to heap"
Matthew Dempskyabefcac2019-04-01 11:58:33 -070037 F1(uintptr(unsafe.Pointer(&t))) // ERROR "live at call to F1: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070038}
39
Matthew Dempskyb3bd7ab2019-10-01 11:22:07 -070040func TestF3() {
41 var t2 int // ERROR "moved to heap"
42 F3(uintptr(unsafe.Pointer(&t2))) // ERROR "live at call to F3: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
43}
44
45func TestM1() {
46 var t T
47 var v int // ERROR "moved to heap"
48 t.M1(uintptr(unsafe.Pointer(&v))) // ERROR "live at call to T.M1: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
49}
50
51func TestF2() {
Cherry Zhangbeeab6a2017-12-07 22:01:42 -050052 var v int // ERROR "moved to heap"
Keith Randall9a8372f2018-09-07 14:55:09 -070053 F2(0, 1, uintptr(unsafe.Pointer(&v)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to F2: .?autotmp" "escapes to heap" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
Matthew Dempskyb3bd7ab2019-10-01 11:22:07 -070054}
55
56func TestF4() {
Cherry Zhangbeeab6a2017-12-07 22:01:42 -050057 var v2 int // ERROR "moved to heap"
Matthew Dempskyb3bd7ab2019-10-01 11:22:07 -070058 F4(0, 1, uintptr(unsafe.Pointer(&v2)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to F4: .?autotmp" "escapes to heap" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
59}
60
61func TestM2() {
62 var t T
63 var v int // ERROR "moved to heap"
64 t.M2(0, 1, uintptr(unsafe.Pointer(&v)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to T.M2: .?autotmp" "escapes to heap" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070065}