2019-09-04 22:15:59 -06:00
|
|
|
// errorcheck -0 -m -l
|
|
|
|
|
|
|
|
// 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 escape analysis for goto statements.
|
|
|
|
|
|
|
|
package escape
|
|
|
|
|
|
|
|
var x bool
|
|
|
|
|
2021-07-28 13:59:14 -06:00
|
|
|
func f1() {
|
2019-09-04 22:15:59 -06:00
|
|
|
var p *int
|
|
|
|
loop:
|
|
|
|
if x {
|
|
|
|
goto loop
|
|
|
|
}
|
|
|
|
// BAD: We should be able to recognize that there
|
|
|
|
// aren't any more "goto loop" after here.
|
|
|
|
p = new(int) // ERROR "escapes to heap"
|
|
|
|
_ = p
|
|
|
|
}
|
|
|
|
|
2021-07-28 13:59:14 -06:00
|
|
|
func f2() {
|
2019-09-04 22:15:59 -06:00
|
|
|
var p *int
|
|
|
|
if x {
|
|
|
|
loop:
|
|
|
|
goto loop
|
|
|
|
} else {
|
|
|
|
p = new(int) // ERROR "does not escape"
|
|
|
|
}
|
|
|
|
_ = p
|
|
|
|
}
|
|
|
|
|
2021-07-28 13:59:14 -06:00
|
|
|
func f3() {
|
2019-09-04 22:15:59 -06:00
|
|
|
var p *int
|
|
|
|
if x {
|
|
|
|
loop:
|
|
|
|
goto loop
|
|
|
|
}
|
|
|
|
p = new(int) // ERROR "does not escape"
|
|
|
|
_ = p
|
|
|
|
}
|