1
0
mirror of https://github.com/golang/go synced 2024-09-24 19:40:12 -06:00
go/test/fixedbugs/issue24491b.go
Cuong Manh Le 1f45216694 cmd/compile: attach OVARLIVE nodes to OCALLxxx
So we can insert theses OVARLIVE nodes right after OpStaticCall in SSA.

This helps fixing issue that unsafe-uintptr arguments are not kept alive
during return statement, or can be kept alive longer than expected.

Fixes #24491

Change-Id: Ic04a5d1bbb5c90dcfae65bd95cdd1da393a66800
Reviewed-on: https://go-review.googlesource.com/c/go/+/254397
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
2020-09-13 04:35:22 +00:00

47 lines
797 B
Go

// run
// Copyright 2020 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.
// This test makes sure unsafe-uintptr arguments are not
// kept alive longer than expected.
package main
import (
"runtime"
"sync/atomic"
"unsafe"
)
var done uint32
func setup() unsafe.Pointer {
s := "ok"
runtime.SetFinalizer(&s, func(p *string) { atomic.StoreUint32(&done, 1) })
return unsafe.Pointer(&s)
}
//go:noinline
//go:uintptrescapes
func before(p uintptr) int {
runtime.GC()
if atomic.LoadUint32(&done) != 0 {
panic("GC early")
}
return 0
}
func after() int {
runtime.GC()
if atomic.LoadUint32(&done) == 0 {
panic("GC late")
}
return 0
}
func main() {
_ = before(uintptr(setup())) + after()
}