aboutsummaryrefslogtreecommitdiff
path: root/test/reflectmethod6.go
diff options
context:
space:
mode:
authorCherry Zhang <cherryyz@google.com>2020-04-18 17:47:54 -0400
committerCherry Zhang <cherryyz@google.com>2020-04-19 03:12:32 +0000
commita32262d4625e6f54cedd765e4807c215d1deb992 (patch)
tree789bc89d5ce656548b8efd0d904babf290947a99 /test/reflectmethod6.go
parentde2318e3c68530cd3ff6d3a1d378239598301fb0 (diff)
downloadgo-a32262d4625e6f54cedd765e4807c215d1deb992.tar.gz
go-a32262d4625e6f54cedd765e4807c215d1deb992.zip
cmd/compile: when marking REFLECTMETHOD, check for reflect package itself
reflect.Type.Method (and MethodByName) can be used to obtain a reference of a method by reflection. The linker needs to know if reflect.Type.Method is called, and retain all exported methods accordingly. This is handled by the compiler, which marks the caller of reflect.Type.Method with REFLECTMETHOD attribute. The current code failed to handle the reflect package itself, so the method wrapper reflect.Type.Method is not marked. This CL fixes it. Fixes #38515. Change-Id: I12904d23eda664cf1794bc3676152f3218fb762b Reviewed-on: https://go-review.googlesource.com/c/go/+/228880 Run-TryBot: Cherry Zhang <cherryyz@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'test/reflectmethod6.go')
-rw-r--r--test/reflectmethod6.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/reflectmethod6.go b/test/reflectmethod6.go
new file mode 100644
index 0000000000..004ea303e6
--- /dev/null
+++ b/test/reflectmethod6.go
@@ -0,0 +1,32 @@
+// 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.
+
+// Similar to reflectmethod5.go, but for reflect.Type.MethodByName.
+
+package main
+
+import "reflect"
+
+var called bool
+
+type foo struct{}
+
+func (foo) X() { called = true }
+
+var h = reflect.Type.MethodByName
+
+func main() {
+ v := reflect.ValueOf(foo{})
+ m, ok := h(v.Type(), "X")
+ if !ok {
+ panic("FAIL")
+ }
+ f := m.Func.Interface().(func(foo))
+ f(foo{})
+ if !called {
+ panic("FAIL")
+ }
+}