]> Cypherpunks.ru repositories - gostls13.git/commitdiff
cmd/compile: simplify code from CL 398474
authorMatthew Dempsky <mdempsky@google.com>
Fri, 29 Apr 2022 18:58:03 +0000 (11:58 -0700)
committerGopher Robot <gobot@golang.org>
Mon, 2 May 2022 18:50:03 +0000 (18:50 +0000)
This CL:

1. extracts typecheck.LookupNum into a method on *types.Pkg, so that
it can be used with any package, not just types.LocalPkg,

2. adds a new helper function closureSym to generate symbols in the
appropriate package as needed within stencil.go, and

3. updates the existing typecheck.LookupNum+Name.SetSym code to call
closureSym instead.

No functional change (so no need to backport to Go 1.18), but a little
cleaner, and avoids polluting types.LocalPkg.Syms with symbols that we
won't end up using.

Updates #52117.

Change-Id: Ifc8a3b76a37c830125e9d494530d1f5b2e3e3e2a
Reviewed-on: https://go-review.googlesource.com/c/go/+/403197
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>

src/cmd/compile/internal/noder/stencil.go
src/cmd/compile/internal/typecheck/subr.go
src/cmd/compile/internal/types/pkg.go

index 92a5945da6c6b254e9832aefdc97fc881578cc9d..51ef6b1ff1b3b6d87d376d0f38d0064ee1cbd8ca 100644 (file)
@@ -416,8 +416,7 @@ func (g *genInst) buildClosure(outer *ir.Func, x ir.Node) ir.Node {
        var dictVar *ir.Name
        var dictAssign *ir.AssignStmt
        if outer != nil {
-               dictVar = ir.NewNameAt(pos, typecheck.LookupNum(typecheck.LocalDictName, g.dnum))
-               dictVar.SetSym(outer.Sym().Pkg.Lookup(dictVar.Sym().Name))
+               dictVar = ir.NewNameAt(pos, closureSym(outer, typecheck.LocalDictName, g.dnum))
                g.dnum++
                dictVar.Class = ir.PAUTO
                typed(types.Types[types.TUINTPTR], dictVar)
@@ -431,10 +430,7 @@ func (g *genInst) buildClosure(outer *ir.Func, x ir.Node) ir.Node {
        var rcvrVar *ir.Name
        var rcvrAssign ir.Node
        if rcvrValue != nil {
-               rcvrVar = ir.NewNameAt(pos, typecheck.LookupNum(".rcvr", g.dnum))
-               if outer != nil {
-                       rcvrVar.SetSym(outer.Sym().Pkg.Lookup(rcvrVar.Sym().Name))
-               }
+               rcvrVar = ir.NewNameAt(pos, closureSym(outer, ".rcvr", g.dnum))
                g.dnum++
                typed(rcvrValue.Type(), rcvrVar)
                rcvrAssign = ir.NewAssignStmt(pos, rcvrVar, rcvrValue)
@@ -2225,10 +2221,7 @@ func startClosure(pos src.XPos, outer *ir.Func, typ *types.Type) (*ir.Func, []*t
        var formalResults []*types.Field // returns of closure
        for i := 0; i < typ.NumParams(); i++ {
                t := typ.Params().Field(i).Type
-               arg := ir.NewNameAt(pos, typecheck.LookupNum("a", i))
-               if outer != nil {
-                       arg.SetSym(outer.Sym().Pkg.Lookup(arg.Sym().Name))
-               }
+               arg := ir.NewNameAt(pos, closureSym(outer, "a", i))
                arg.Class = ir.PPARAM
                typed(t, arg)
                arg.Curfn = fn
@@ -2240,10 +2233,7 @@ func startClosure(pos src.XPos, outer *ir.Func, typ *types.Type) (*ir.Func, []*t
        }
        for i := 0; i < typ.NumResults(); i++ {
                t := typ.Results().Field(i).Type
-               result := ir.NewNameAt(pos, typecheck.LookupNum("r", i)) // TODO: names not needed?
-               if outer != nil {
-                       result.SetSym(outer.Sym().Pkg.Lookup(result.Sym().Name))
-               }
+               result := ir.NewNameAt(pos, closureSym(outer, "r", i)) // TODO: names not needed?
                result.Class = ir.PPARAMOUT
                typed(t, result)
                result.Curfn = fn
@@ -2262,6 +2252,16 @@ func startClosure(pos src.XPos, outer *ir.Func, typ *types.Type) (*ir.Func, []*t
 
 }
 
+// closureSym returns outer.Sym().Pkg.LookupNum(prefix, n).
+// If outer is nil, then types.LocalPkg is used instead.
+func closureSym(outer *ir.Func, prefix string, n int) *types.Sym {
+       pkg := types.LocalPkg
+       if outer != nil {
+               pkg = outer.Sym().Pkg
+       }
+       return pkg.LookupNum(prefix, n)
+}
+
 // assertToBound returns a new node that converts a node rcvr with interface type to
 // the 'dst' interface type.
 func assertToBound(info *instInfo, dictVar *ir.Name, pos src.XPos, rcvr ir.Node, dst *types.Type) ir.Node {
index d4ec52adf9db3ea691b7858271cbf702ecec0ef3..af16e826bd6ac097225db2a5599d5fe0983bb18b 100644 (file)
@@ -8,7 +8,6 @@ import (
        "bytes"
        "fmt"
        "sort"
-       "strconv"
        "strings"
 
        "cmd/compile/internal/base"
@@ -22,13 +21,9 @@ func AssignConv(n ir.Node, t *types.Type, context string) ir.Node {
        return assignconvfn(n, t, func() string { return context })
 }
 
-// LookupNum looks up the symbol starting with prefix and ending with
-// the decimal n. If prefix is too long, LookupNum panics.
+// LookupNum returns types.LocalPkg.LookupNum(prefix, n).
 func LookupNum(prefix string, n int) *types.Sym {
-       var buf [20]byte // plenty long enough for all current users
-       copy(buf[:], prefix)
-       b := strconv.AppendInt(buf[:len(prefix)], int64(n), 10)
-       return types.LocalPkg.LookupBytes(b)
+       return types.LocalPkg.LookupNum(prefix, n)
 }
 
 // Given funarg struct list, return list of fn args.
index b159eb5eeb4ca4595c636e370a8d107b6d6a854a..4bf39a5e9dfff675890d4bd66fcc0efe28311874 100644 (file)
@@ -9,6 +9,7 @@ import (
        "cmd/internal/objabi"
        "fmt"
        "sort"
+       "strconv"
        "sync"
 )
 
@@ -121,6 +122,15 @@ func (pkg *Pkg) LookupBytes(name []byte) *Sym {
        return pkg.Lookup(str)
 }
 
+// LookupNum looks up the symbol starting with prefix and ending with
+// the decimal n. If prefix is too long, LookupNum panics.
+func (pkg *Pkg) LookupNum(prefix string, n int) *Sym {
+       var buf [20]byte // plenty long enough for all current users
+       copy(buf[:], prefix)
+       b := strconv.AppendInt(buf[:len(prefix)], int64(n), 10)
+       return pkg.LookupBytes(b)
+}
+
 var (
        internedStringsmu sync.Mutex // protects internedStrings
        internedStrings   = map[string]string{}