| // Copyright 2015 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. |
| // Issue 10303. Pointers passed to C were not marked as escaping (bug in cgo). |
| void setintstar(int *x) { |
| void setintptr(intptr x) { |
| void setvoidptr(void *x) { |
| typedef struct Struct Struct; |
| void setstruct(Struct s) { |
| func test10303(t *testing.T, n int) { |
| // Run at a few different stack depths just to avoid an unlucky pass |
| // due to variables ending up on different pages. |
| C.setvoidptr(unsafe.Pointer(&v)) |
| if uintptr(unsafe.Pointer(&x))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff { |
| t.Error("C int* argument on stack") |
| if uintptr(unsafe.Pointer(&y))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff { |
| t.Error("C intptr argument on stack") |
| if uintptr(unsafe.Pointer(&v))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff { |
| t.Error("C void* argument on stack") |
| if uintptr(unsafe.Pointer(&si))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff { |
| t.Error("C struct field pointer on stack") |