From: Michael Pratt Date: Wed, 24 Apr 2024 15:19:17 +0000 (-0400) Subject: [release-branch.go1.22] cmd/compile: bail PGO method lookup on interface types X-Git-Tag: go1.22.3~6 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a7ff78d5854b410f9126c7f807f4bc2fa4234bfd;p=gostls13.git [release-branch.go1.22] cmd/compile: bail PGO method lookup on interface types Interface types don't have concrete method implementations, so it does not make sense to attempt a lookup. An interface method would not normally appear in a PGO profile as it has no symbol in the final binary. However it can appear if the method was concrete when the profile was collected and it has since been refactored to an interface method in the code being compiled. The guards here (OTYPE, !Alias, !IsInterface) now match noder.linker.relocObj, which does a similar iteration of all methods. For #67016. Fixes #67017. Change-Id: I858c58929c890ac0b2019fbd7c99f683ab63f8bb Reviewed-on: https://go-review.googlesource.com/c/go/+/581436 LUCI-TryBot-Result: Go LUCI Reviewed-by: Cherry Mui (cherry picked from commit 508e76197842792f87504d9f031ce4f7bf453c4f) Reviewed-on: https://go-review.googlesource.com/c/go/+/581438 --- diff --git a/src/cmd/compile/internal/noder/unified.go b/src/cmd/compile/internal/noder/unified.go index 492b00d256..562b2e6314 100644 --- a/src/cmd/compile/internal/noder/unified.go +++ b/src/cmd/compile/internal/noder/unified.go @@ -120,6 +120,9 @@ func lookupMethod(pkg *types.Pkg, symName string) (*ir.Func, error) { if name.Alias() { return nil, fmt.Errorf("type sym %v refers to alias", typ) } + if name.Type().IsInterface() { + return nil, fmt.Errorf("type sym %v refers to interface type", typ) + } for _, m := range name.Type().Methods() { if m.Sym == meth {