]> Cypherpunks repositories - gostls13.git/commit
[dev.typeparams] cmd/compile: allow inlining in instantiated functions
authorDan Scales <danscales@google.com>
Tue, 1 Jun 2021 17:49:14 +0000 (10:49 -0700)
committerDan Scales <danscales@google.com>
Fri, 4 Jun 2021 17:48:10 +0000 (17:48 +0000)
commitde614651561c6d5bfe1e68bddaf0dedab9a0ecb0
treea39ef75b81e36091467f1e09765ed4022475c1d0
parent4cf7f5f6947c1e3200d669ae7b8016f7431d718c
[dev.typeparams] cmd/compile: allow inlining in instantiated functions

Change markType to scan generic types and methods, so that inlineable
functions inside generic functions/methods will be properly marked for
export, which means inlining inside instantiated functions will work
correctly.

Also, fix handling of closures for instantiated functions. Some code
needs to be adjusted, since instantiated functions/methods are compiled
as if in the package of the source generic function/type, rather than in
the local package. When we create the closure struct, we want to make
sure that the .F field has the same package as the other fields for the
closure variables. Also, we need to disable a check in tcCompLit() when
being done for an instantiated function, since fields of the closure
struct will be from the source package, not the local package.

Re-enabled part of the orderedmapsimp test that was disabled because of
these issues.

Change-Id: Ic4dba8917da0a36b17c0bdb69d6d6edfdf14104a
Reviewed-on: https://go-review.googlesource.com/c/go/+/324331
Trust: Dan Scales <danscales@google.com>
Run-TryBot: Dan Scales <danscales@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
src/cmd/compile/internal/gc/export.go
src/cmd/compile/internal/noder/decl.go
src/cmd/compile/internal/noder/stencil.go
src/cmd/compile/internal/reflectdata/reflect.go
src/cmd/compile/internal/typecheck/expr.go
src/cmd/compile/internal/typecheck/func.go
src/cmd/compile/internal/typecheck/iexport.go
src/cmd/compile/internal/types/type.go
test/typeparam/orderedmapsimp.dir/a.go
test/typeparam/orderedmapsimp.dir/main.go