Matthew Dempsky | b3bd7ab | 2019-10-01 11:22:07 -0700 | [diff] [blame] | 1 | // errorcheck -0 -l -m -live |
Ian Lance Taylor | bbe5da4 | 2016-06-28 14:19:27 -0700 | [diff] [blame] | 2 | |
| 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 | |
| 9 | package p |
| 10 | |
| 11 | import ( |
| 12 | "unsafe" |
| 13 | ) |
| 14 | |
| 15 | //go:uintptrescapes |
Ian Lance Taylor | bbe5da4 | 2016-06-28 14:19:27 -0700 | [diff] [blame] | 16 | func F1(a uintptr) {} // ERROR "escaping uintptr" |
| 17 | |
| 18 | //go:uintptrescapes |
Matthew Dempsky | b970487 | 2019-09-04 15:16:25 -0700 | [diff] [blame] | 19 | func F2(a ...uintptr) {} // ERROR "escaping ...uintptr" |
Ian Lance Taylor | bbe5da4 | 2016-06-28 14:19:27 -0700 | [diff] [blame] | 20 | |
Cherry Zhang | beeab6a | 2017-12-07 22:01:42 -0500 | [diff] [blame] | 21 | //go:uintptrescapes |
Cherry Zhang | beeab6a | 2017-12-07 22:01:42 -0500 | [diff] [blame] | 22 | func F3(uintptr) {} // ERROR "escaping uintptr" |
| 23 | |
| 24 | //go:uintptrescapes |
Cherry Zhang | beeab6a | 2017-12-07 22:01:42 -0500 | [diff] [blame] | 25 | func F4(...uintptr) {} // ERROR "escaping ...uintptr" |
| 26 | |
Matthew Dempsky | b3bd7ab | 2019-10-01 11:22:07 -0700 | [diff] [blame] | 27 | type T struct{} |
| 28 | |
| 29 | //go:uintptrescapes |
| 30 | func (T) M1(a uintptr) {} // ERROR "escaping uintptr" |
| 31 | |
| 32 | //go:uintptrescapes |
Matthew Dempsky | df00abc | 2021-06-24 09:07:52 -0700 | [diff] [blame] | 33 | func (T) M2(a ...uintptr) {} // ERROR "escaping ...uintptr" |
Matthew Dempsky | b3bd7ab | 2019-10-01 11:22:07 -0700 | [diff] [blame] | 34 | |
| 35 | func TestF1() { |
Cherry Zhang | beeab6a | 2017-12-07 22:01:42 -0500 | [diff] [blame] | 36 | var t int // ERROR "moved to heap" |
Matthew Dempsky | abefcac | 2019-04-01 11:58:33 -0700 | [diff] [blame] | 37 | F1(uintptr(unsafe.Pointer(&t))) // ERROR "live at call to F1: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$" |
Ian Lance Taylor | bbe5da4 | 2016-06-28 14:19:27 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Matthew Dempsky | b3bd7ab | 2019-10-01 11:22:07 -0700 | [diff] [blame] | 40 | func 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 | |
| 45 | func 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 | |
| 51 | func TestF2() { |
Cherry Zhang | beeab6a | 2017-12-07 22:01:42 -0500 | [diff] [blame] | 52 | var v int // ERROR "moved to heap" |
Keith Randall | 9a8372f | 2018-09-07 14:55:09 -0700 | [diff] [blame] | 53 | 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 Dempsky | b3bd7ab | 2019-10-01 11:22:07 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | func TestF4() { |
Cherry Zhang | beeab6a | 2017-12-07 22:01:42 -0500 | [diff] [blame] | 57 | var v2 int // ERROR "moved to heap" |
Matthew Dempsky | b3bd7ab | 2019-10-01 11:22:07 -0700 | [diff] [blame] | 58 | 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 | |
| 61 | func 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 Taylor | bbe5da4 | 2016-06-28 14:19:27 -0700 | [diff] [blame] | 65 | } |