]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: bail PGO method lookup on interface types
authorMichael Pratt <mpratt@google.com>
Wed, 24 Apr 2024 15:19:17 +0000 (11:19 -0400)
committerMichael Pratt <mpratt@google.com>
Wed, 24 Apr 2024 15:55:11 +0000 (15:55 +0000)
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.

Fixes #67016.

Change-Id: I858c58929c890ac0b2019fbd7c99f683ab63f8bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/581436
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
src/cmd/compile/internal/noder/unified.go

index bbc58ee340be710ed557a209b27eae83412b288b..2391b2f34d328c99f5daef4d77dc282e0155cc08 100644 (file)
@@ -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 {