blob: 57c21edbcedda7b52a4137b174f1e9d17553aad8 [file] [log] [blame]
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -07001// errorcheck -0 -m -live
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
9package p
10
11import (
12 "unsafe"
13)
14
15//go:uintptrescapes
16//go:noinline
17func F1(a uintptr) {} // ERROR "escaping uintptr"
18
19//go:uintptrescapes
20//go:noinline
Keith Randallca4089a2016-08-31 15:17:02 -070021func F2(a ...uintptr) {} // ERROR "escaping ...uintptr" "a does not escape"
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070022
23func G() {
Keith Randallca4089a2016-08-31 15:17:02 -070024 var t int // ERROR "moved to heap"
David Chase9c066ba2016-10-28 13:33:57 -040025 F1(uintptr(unsafe.Pointer(&t))) // ERROR "live at call to F1: .?autotmp" "&t escapes to heap"
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070026}
27
28func H() {
Keith Randallca4089a2016-08-31 15:17:02 -070029 var v int // ERROR "moved to heap"
David Chase9c066ba2016-10-28 13:33:57 -040030 F2(0, 1, uintptr(unsafe.Pointer(&v)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to F2: .?autotmp" "escapes to heap"
Ian Lance Taylorbbe5da42016-06-28 14:19:27 -070031}