]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/go/types/lookup.go
go/types, types2: introduce _Alias type node
[gostls13.git] / src / go / types / lookup.go
index 501c230357b5014ea6b17a26b5985143d1daf77c..e6ad72843743ab2a856006e36bedf34904cb1fbf 100644 (file)
@@ -1,3 +1,5 @@
+// Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
+
 // Copyright 2013 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.
@@ -8,6 +10,7 @@ package types
 
 import (
        "bytes"
+       "go/token"
        "strings"
 )
 
@@ -25,9 +28,9 @@ import (
 // The last index entry is the field or method index in the (possibly embedded)
 // type where the entry was found, either:
 //
-//     1) the list of declared methods of a named type; or
-//     2) the list of all methods (method set) of an interface type; or
-//     3) the list of fields of a struct type.
+//  1. the list of declared methods of a named type; or
+//  2. the list of all methods (method set) of an interface type; or
+//  3. the list of fields of a struct type.
 //
 // The earlier index entries are the indices of the embedded struct fields
 // traversed to get to the found entry, starting at depth 0.
@@ -35,13 +38,12 @@ import (
 // If no entry is found, a nil object is returned. In this case, the returned
 // index and indirect values have the following meaning:
 //
-//     - If index != nil, the index sequence points to an ambiguous entry
-//     (the same name appeared more than once at the same embedding level).
-//
-//     - If indirect is set, a method with a pointer receiver type was found
-//      but there was no pointer on the path from the actual receiver type to
-//     the method's formal receiver base type, nor was the receiver addressable.
+//   - If index != nil, the index sequence points to an ambiguous entry
+//     (the same name appeared more than once at the same embedding level).
 //
+//   - If indirect is set, a method with a pointer receiver type was found
+//     but there was no pointer on the path from the actual receiver type to
+//     the method's formal receiver base type, nor was the receiver addressable.
 func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
        if T == nil {
                panic("LookupFieldOrMethod on nil type")
@@ -53,10 +55,10 @@ func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o
        // in the same package as the method.").
        // Thus, if we have a named pointer type, proceed with the underlying
        // pointer type but discard the result if it is a method since we would
-       // not have found it for T (see also issue 8590).
-       if t, _ := T.(*Named); t != nil {
+       // not have found it for T (see also go.dev/issue/8590).
+       if t := asNamed(T); t != nil {
                if p, _ := t.Underlying().(*Pointer); p != nil {
-                       obj, index, indirect = lookupFieldOrMethod(p, false, pkg, name, false)
+                       obj, index, indirect = lookupFieldOrMethodImpl(p, false, pkg, name, false)
                        if _, ok := obj.(*Func); ok {
                                return nil, nil, false
                        }
@@ -64,15 +66,16 @@ func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o
                }
        }
 
-       obj, index, indirect = lookupFieldOrMethod(T, addressable, pkg, name, false)
+       obj, index, indirect = lookupFieldOrMethodImpl(T, addressable, pkg, name, false)
 
        // If we didn't find anything and if we have a type parameter with a core type,
        // see if there is a matching field (but not a method, those need to be declared
        // explicitly in the constraint). If the constraint is a named pointer type (see
        // above), we are ok here because only fields are accepted as results.
-       if obj == nil && isTypeParam(T) {
+       const enableTParamFieldLookup = false // see go.dev/issue/51576
+       if enableTParamFieldLookup && obj == nil && isTypeParam(T) {
                if t := coreType(T); t != nil {
-                       obj, index, indirect = lookupFieldOrMethod(t, addressable, pkg, name, false)
+                       obj, index, indirect = lookupFieldOrMethodImpl(t, addressable, pkg, name, false)
                        if _, ok := obj.(*Var); !ok {
                                obj, index, indirect = nil, nil, false // accept fields (variables) only
                        }
@@ -81,23 +84,33 @@ func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o
        return
 }
 
-// TODO(gri) The named type consolidation and seen maps below must be
-//           indexed by unique keys for a given type. Verify that named
-//           types always have only one representation (even when imported
-//           indirectly via different packages.)
-
-// lookupFieldOrMethod should only be called by LookupFieldOrMethod and missingMethod.
-// If foldCase is true, the lookup for methods will include looking for any method
-// which case-folds to the same as 'name' (used for giving helpful error messages).
+// lookupFieldOrMethodImpl is the implementation of LookupFieldOrMethod.
+// Notably, in contrast to LookupFieldOrMethod, it won't find struct fields
+// in base types of defined (*Named) pointer types T. For instance, given
+// the declaration:
+//
+//     type T *struct{f int}
+//
+// lookupFieldOrMethodImpl won't find the field f in the defined (*Named) type T
+// (methods on T are not permitted in the first place).
+//
+// Thus, lookupFieldOrMethodImpl should only be called by LookupFieldOrMethod
+// and missingMethod (the latter doesn't care about struct fields).
+//
+// If foldCase is true, method names are considered equal if they are equal
+// with case folding.
 //
 // The resulting object may not be fully type-checked.
-func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string, foldCase bool) (obj Object, index []int, indirect bool) {
+func lookupFieldOrMethodImpl(T Type, addressable bool, pkg *Package, name string, foldCase bool) (obj Object, index []int, indirect bool) {
        // WARNING: The code in this function is extremely subtle - do not modify casually!
 
        if name == "_" {
                return // blank fields/methods are never found
        }
 
+       // Importantly, we must not call under before the call to deref below (nor
+       // does deref call under), as doing so could incorrectly result in finding
+       // methods of the pointer base type when T is a (*Named) pointer type.
        typ, isPtr := deref(T)
 
        // *typ where typ is an interface (incl. a type parameter) has no methods.
@@ -110,14 +123,12 @@ func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string, fo
        // Start with typ as single entry at shallowest depth.
        current := []embeddedType{{typ, nil, isPtr, false}}
 
-       // Named types that we have seen already, allocated lazily.
+       // seen tracks named types that we have seen already, allocated lazily.
        // Used to avoid endless searches in case of recursive types.
-       // Since only Named types can be used for recursive types, we
-       // only need to track those.
-       // (If we ever allow type aliases to construct recursive types,
-       // we must use type identity rather than pointer equality for
-       // the map key comparison, as we do in consolidateMultiples.)
-       var seen map[*Named]bool
+       //
+       // We must use a lookup on identity rather than a simple map[*Named]bool as
+       // instantiated types may be identical but not equal.
+       var seen instanceLookup
 
        // search current depth
        for len(current) > 0 {
@@ -129,8 +140,8 @@ func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string, fo
 
                        // If we have a named type, we may have associated methods.
                        // Look for those first.
-                       if named, _ := typ.(*Named); named != nil {
-                               if seen[named] {
+                       if named := asNamed(typ); named != nil {
+                               if alt := seen.lookup(named); alt != nil {
                                        // We have seen this type before, at a more shallow depth
                                        // (note that multiples of this type at the current depth
                                        // were consolidated before). The type at that depth shadows
@@ -138,13 +149,9 @@ func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string, fo
                                        // this one.
                                        continue
                                }
-                               if seen == nil {
-                                       seen = make(map[*Named]bool)
-                               }
-                               seen[named] = true
+                               seen.add(named)
 
                                // look for a matching attached method
-                               named.resolve(nil)
                                if i, m := named.lookupMethod(pkg, name, foldCase); m != nil {
                                        // potential match
                                        // caution: method may not have a proper signature yet
@@ -271,127 +278,189 @@ func lookupType(m map[Type]int, typ Type) (int, bool) {
        return 0, false
 }
 
+type instanceLookup struct {
+       // buf is used to avoid allocating the map m in the common case of a small
+       // number of instances.
+       buf [3]*Named
+       m   map[*Named][]*Named
+}
+
+func (l *instanceLookup) lookup(inst *Named) *Named {
+       for _, t := range l.buf {
+               if t != nil && Identical(inst, t) {
+                       return t
+               }
+       }
+       for _, t := range l.m[inst.Origin()] {
+               if Identical(inst, t) {
+                       return t
+               }
+       }
+       return nil
+}
+
+func (l *instanceLookup) add(inst *Named) {
+       for i, t := range l.buf {
+               if t == nil {
+                       l.buf[i] = inst
+                       return
+               }
+       }
+       if l.m == nil {
+               l.m = make(map[*Named][]*Named)
+       }
+       insts := l.m[inst.Origin()]
+       l.m[inst.Origin()] = append(insts, inst)
+}
+
 // MissingMethod returns (nil, false) if V implements T, otherwise it
 // returns a missing method required by T and whether it is missing or
-// just has the wrong type.
+// just has the wrong type: either a pointer receiver or wrong signature.
 //
 // For non-interface types V, or if static is set, V implements T if all
 // methods of T are present in V. Otherwise (V is an interface and static
 // is not set), MissingMethod only checks that methods of T which are also
 // present in V have matching types (e.g., for a type assertion x.(T) where
 // x is of interface type V).
-//
 func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) {
-       m, alt := (*Checker)(nil).missingMethod(V, T, static)
-       // Only report a wrong type if the alternative method has the same name as m.
-       return m, alt != nil && alt.name == m.name // alt != nil implies m != nil
+       return (*Checker)(nil).missingMethod(V, T, static, Identical, nil)
 }
 
-// missingMethod is like MissingMethod but accepts a *Checker as receiver.
+// missingMethod is like MissingMethod but accepts a *Checker as receiver,
+// a comparator equivalent for type comparison, and a *string for error causes.
 // The receiver may be nil if missingMethod is invoked through an exported
 // API call (such as MissingMethod), i.e., when all methods have been type-
 // checked.
-//
-// If a method is missing on T but is found on *T, or if a method is found
-// on T when looked up with case-folding, this alternative method is returned
-// as the second result.
-func (check *Checker) missingMethod(V Type, T *Interface, static bool) (method, alt *Func) {
-       if T.NumMethods() == 0 {
-               return
+// The underlying type of T must be an interface; T (rather than its under-
+// lying type) is used for better error messages (reported through *cause).
+// The comparator is used to compare signatures.
+// If a method is missing and cause is not nil, *cause describes the error.
+func (check *Checker) missingMethod(V, T Type, static bool, equivalent func(x, y Type) bool, cause *string) (method *Func, wrongType bool) {
+       methods := under(T).(*Interface).typeSet().methods // T must be an interface
+       if len(methods) == 0 {
+               return nil, false
        }
 
-       // V is an interface
+       const (
+               ok = iota
+               notFound
+               wrongName
+               wrongSig
+               ambigSel
+               ptrRecv
+               field
+       )
+
+       state := ok
+       var m *Func // method on T we're trying to implement
+       var f *Func // method on V, if found (state is one of ok, wrongName, wrongSig)
+
        if u, _ := under(V).(*Interface); u != nil {
                tset := u.typeSet()
-               for _, m := range T.typeSet().methods {
-                       _, f := tset.LookupMethod(m.pkg, m.name, false)
+               for _, m = range methods {
+                       _, f = tset.LookupMethod(m.pkg, m.name, false)
 
                        if f == nil {
                                if !static {
                                        continue
                                }
-                               return m, nil
+                               state = notFound
+                               break
                        }
 
-                       if !Identical(f.typ, m.typ) {
-                               return m, f
+                       if !equivalent(f.typ, m.typ) {
+                               state = wrongSig
+                               break
                        }
                }
+       } else {
+               for _, m = range methods {
+                       obj, index, indirect := lookupFieldOrMethodImpl(V, false, m.pkg, m.name, false)
 
-               return
-       }
-
-       // V is not an interface
-       for _, m := range T.typeSet().methods {
-               // TODO(gri) should this be calling LookupFieldOrMethod instead (and why not)?
-               obj, _, _ := lookupFieldOrMethod(V, false, m.pkg, m.name, false)
-
-               // check if m is on *V, or on V with case-folding
-               found := obj != nil
-               if !found {
-                       // TODO(gri) Instead of NewPointer(V) below, can we just set the "addressable" argument?
-                       obj, _, _ = lookupFieldOrMethod(NewPointer(V), false, m.pkg, m.name, false)
+                       // check if m is ambiguous, on *V, or on V with case-folding
                        if obj == nil {
-                               obj, _, _ = lookupFieldOrMethod(V, false, m.pkg, m.name, true /* fold case */)
+                               switch {
+                               case index != nil:
+                                       state = ambigSel
+                               case indirect:
+                                       state = ptrRecv
+                               default:
+                                       state = notFound
+                                       obj, _, _ = lookupFieldOrMethodImpl(V, false, m.pkg, m.name, true /* fold case */)
+                                       f, _ = obj.(*Func)
+                                       if f != nil {
+                                               state = wrongName
+                                       }
+                               }
+                               break
                        }
-               }
 
-               // we must have a method (not a struct field)
-               f, _ := obj.(*Func)
-               if f == nil {
-                       return m, nil
-               }
+                       // we must have a method (not a struct field)
+                       f, _ = obj.(*Func)
+                       if f == nil {
+                               state = field
+                               break
+                       }
 
-               // methods may not have a fully set up signature yet
-               if check != nil {
-                       check.objDecl(f, nil)
-               }
+                       // methods may not have a fully set up signature yet
+                       if check != nil {
+                               check.objDecl(f, nil)
+                       }
 
-               if !found || !Identical(f.typ, m.typ) {
-                       return m, f
+                       if !equivalent(f.typ, m.typ) {
+                               state = wrongSig
+                               break
+                       }
                }
        }
 
-       return
-}
-
-// missingMethodReason returns a string giving the detailed reason for a missing method m,
-// where m is missing from V, but required by T. It puts the reason in parentheses,
-// and may include more have/want info after that. If non-nil, alt is a relevant
-// method that matches in some way. It may have the correct name, but wrong type, or
-// it may have a pointer receiver, or it may have the correct name except wrong case.
-// check may be nil.
-func (check *Checker) missingMethodReason(V, T Type, m, alt *Func) string {
-       var mname string
-       if check != nil && compilerErrorMessages {
-               mname = m.Name() + " method"
-       } else {
-               mname = "method " + m.Name()
+       if state == ok {
+               return nil, false
        }
 
-       if alt != nil {
-               if m.Name() != alt.Name() {
-                       return check.sprintf("(missing %s)\n\t\thave %s\n\t\twant %s",
-                               mname, check.funcString(alt), check.funcString(m))
+       if cause != nil {
+               if f != nil {
+                       // This method may be formatted in funcString below, so must have a fully
+                       // set up signature.
+                       if check != nil {
+                               check.objDecl(f, nil)
+                       }
                }
-
-               if Identical(m.typ, alt.typ) {
-                       return check.sprintf("(%s has pointer receiver)", mname)
+               switch state {
+               case notFound:
+                       switch {
+                       case isInterfacePtr(V):
+                               *cause = "(" + check.interfacePtrError(V) + ")"
+                       case isInterfacePtr(T):
+                               *cause = "(" + check.interfacePtrError(T) + ")"
+                       default:
+                               *cause = check.sprintf("(missing method %s)", m.Name())
+                       }
+               case wrongName:
+                       fs, ms := check.funcString(f, false), check.funcString(m, false)
+                       *cause = check.sprintf("(missing method %s)\n\t\thave %s\n\t\twant %s",
+                               m.Name(), fs, ms)
+               case wrongSig:
+                       fs, ms := check.funcString(f, false), check.funcString(m, false)
+                       if fs == ms {
+                               // Don't report "want Foo, have Foo".
+                               // Add package information to disambiguate (go.dev/issue/54258).
+                               fs, ms = check.funcString(f, true), check.funcString(m, true)
+                       }
+                       *cause = check.sprintf("(wrong type for method %s)\n\t\thave %s\n\t\twant %s",
+                               m.Name(), fs, ms)
+               case ambigSel:
+                       *cause = check.sprintf("(ambiguous selector %s.%s)", V, m.Name())
+               case ptrRecv:
+                       *cause = check.sprintf("(method %s has pointer receiver)", m.Name())
+               case field:
+                       *cause = check.sprintf("(%s.%s is a field, not a method)", V, m.Name())
+               default:
+                       unreachable()
                }
-
-               return check.sprintf("(wrong type for %s)\n\t\thave %s\n\t\twant %s",
-                       mname, check.funcString(alt), check.funcString(m))
-       }
-
-       if isInterfacePtr(V) {
-               return "(" + check.interfacePtrError(V) + ")"
-       }
-
-       if isInterfacePtr(T) {
-               return "(" + check.interfacePtrError(T) + ")"
        }
 
-       return check.sprintf("(missing %s)", mname)
+       return m, state == wrongSig || state == ptrRecv
 }
 
 func isInterfacePtr(T Type) bool {
@@ -408,51 +477,59 @@ func (check *Checker) interfacePtrError(T Type) string {
        return check.sprintf("type %s is pointer to interface, not interface", T)
 }
 
+// funcString returns a string of the form name + signature for f.
 // check may be nil.
-func (check *Checker) funcString(f *Func) string {
+func (check *Checker) funcString(f *Func, pkgInfo bool) string {
        buf := bytes.NewBufferString(f.name)
        var qf Qualifier
-       if check != nil {
+       if check != nil && !pkgInfo {
                qf = check.qualifier
        }
-       WriteSignature(buf, f.typ.(*Signature), qf)
+       w := newTypeWriter(buf, qf)
+       w.pkgInfo = pkgInfo
+       w.paramNames = false
+       w.signature(f.typ.(*Signature))
        return buf.String()
 }
 
 // assertableTo reports whether a value of type V can be asserted to have type T.
-// It returns (nil, false) as affirmative answer. Otherwise it returns a missing
-// method required by V and whether it is missing or just has the wrong type.
 // The receiver may be nil if assertableTo is invoked through an exported API call
 // (such as AssertableTo), i.e., when all methods have been type-checked.
+// The underlying type of V must be an interface.
+// If the result is false and cause is not nil, *cause describes the error.
 // TODO(gri) replace calls to this function with calls to newAssertableTo.
-func (check *Checker) assertableTo(V *Interface, T Type) (method, wrongType *Func) {
+func (check *Checker) assertableTo(V, T Type, cause *string) bool {
        // no static check is required if T is an interface
        // spec: "If T is an interface type, x.(T) asserts that the
        //        dynamic type of x implements the interface T."
        if IsInterface(T) {
-               return
+               return true
        }
        // TODO(gri) fix this for generalized interfaces
-       return check.missingMethod(T, V, false)
+       m, _ := check.missingMethod(T, V, false, Identical, cause)
+       return m == nil
 }
 
 // newAssertableTo reports whether a value of type V can be asserted to have type T.
 // It also implements behavior for interfaces that currently are only permitted
 // in constraint position (we have not yet defined that behavior in the spec).
-func (check *Checker) newAssertableTo(V *Interface, T Type) error {
+// The underlying type of V must be an interface.
+// If the result is false and cause is not nil, *cause is set to the error cause.
+func (check *Checker) newAssertableTo(pos token.Pos, V, T Type, cause *string) bool {
        // no static check is required if T is an interface
        // spec: "If T is an interface type, x.(T) asserts that the
        //        dynamic type of x implements the interface T."
        if IsInterface(T) {
-               return nil
+               return true
        }
-       return check.implements(T, V)
+       return check.implements(pos, T, V, false, cause)
 }
 
-// deref dereferences typ if it is a *Pointer and returns its base and true.
+// deref dereferences typ if it is a *Pointer (but not a *Named type
+// with an underlying pointer type!) and returns its base and true.
 // Otherwise it returns (typ, false).
 func deref(typ Type) (Type, bool) {
-       if p, _ := typ.(*Pointer); p != nil {
+       if p, _ := _Unalias(typ).(*Pointer); p != nil {
                // p.base should never be nil, but be conservative
                if p.base == nil {
                        if debug {