Source file src/cmd/compile/internal/types2/typeset.go

     1  // Copyright 2021 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package types2
     6  
     7  import (
     8  	"cmd/compile/internal/syntax"
     9  	. "internal/types/errors"
    10  	"sort"
    11  	"strings"
    12  )
    13  
    14  // ----------------------------------------------------------------------------
    15  // API
    16  
    17  // A _TypeSet represents the type set of an interface.
    18  // Because of existing language restrictions, methods can be "factored out"
    19  // from the terms. The actual type set is the intersection of the type set
    20  // implied by the methods and the type set described by the terms and the
    21  // comparable bit. To test whether a type is included in a type set
    22  // ("implements" relation), the type must implement all methods _and_ be
    23  // an element of the type set described by the terms and the comparable bit.
    24  // If the term list describes the set of all types and comparable is true,
    25  // only comparable types are meant; in all other cases comparable is false.
    26  type _TypeSet struct {
    27  	methods    []*Func  // all methods of the interface; sorted by unique ID
    28  	terms      termlist // type terms of the type set
    29  	comparable bool     // invariant: !comparable || terms.isAll()
    30  }
    31  
    32  // IsEmpty reports whether type set s is the empty set.
    33  func (s *_TypeSet) IsEmpty() bool { return s.terms.isEmpty() }
    34  
    35  // IsAll reports whether type set s is the set of all types (corresponding to the empty interface).
    36  func (s *_TypeSet) IsAll() bool { return s.IsMethodSet() && len(s.methods) == 0 }
    37  
    38  // IsMethodSet reports whether the interface t is fully described by its method set.
    39  func (s *_TypeSet) IsMethodSet() bool { return !s.comparable && s.terms.isAll() }
    40  
    41  // IsComparable reports whether each type in the set is comparable.
    42  func (s *_TypeSet) IsComparable(seen map[Type]bool) bool {
    43  	if s.terms.isAll() {
    44  		return s.comparable
    45  	}
    46  	return s.is(func(t *term) bool {
    47  		return t != nil && comparable(t.typ, false, seen, nil)
    48  	})
    49  }
    50  
    51  // NumMethods returns the number of methods available.
    52  func (s *_TypeSet) NumMethods() int { return len(s.methods) }
    53  
    54  // Method returns the i'th method of type set s for 0 <= i < s.NumMethods().
    55  // The methods are ordered by their unique ID.
    56  func (s *_TypeSet) Method(i int) *Func { return s.methods[i] }
    57  
    58  // LookupMethod returns the index of and method with matching package and name, or (-1, nil).
    59  func (s *_TypeSet) LookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    60  	return methodIndex(s.methods, pkg, name, foldCase)
    61  }
    62  
    63  func (s *_TypeSet) String() string {
    64  	switch {
    65  	case s.IsEmpty():
    66  		return "∅"
    67  	case s.IsAll():
    68  		return "𝓤"
    69  	}
    70  
    71  	hasMethods := len(s.methods) > 0
    72  	hasTerms := s.hasTerms()
    73  
    74  	var buf strings.Builder
    75  	buf.WriteByte('{')
    76  	if s.comparable {
    77  		buf.WriteString("comparable")
    78  		if hasMethods || hasTerms {
    79  			buf.WriteString("; ")
    80  		}
    81  	}
    82  	for i, m := range s.methods {
    83  		if i > 0 {
    84  			buf.WriteString("; ")
    85  		}
    86  		buf.WriteString(m.String())
    87  	}
    88  	if hasMethods && hasTerms {
    89  		buf.WriteString("; ")
    90  	}
    91  	if hasTerms {
    92  		buf.WriteString(s.terms.String())
    93  	}
    94  	buf.WriteString("}")
    95  	return buf.String()
    96  }
    97  
    98  // ----------------------------------------------------------------------------
    99  // Implementation
   100  
   101  // hasTerms reports whether the type set has specific type terms.
   102  func (s *_TypeSet) hasTerms() bool { return !s.terms.isEmpty() && !s.terms.isAll() }
   103  
   104  // subsetOf reports whether s1 ⊆ s2.
   105  func (s1 *_TypeSet) subsetOf(s2 *_TypeSet) bool { return s1.terms.subsetOf(s2.terms) }
   106  
   107  // TODO(gri) TypeSet.is and TypeSet.underIs should probably also go into termlist.go
   108  
   109  // is calls f with the specific type terms of s and reports whether
   110  // all calls to f returned true. If there are no specific terms, is
   111  // returns the result of f(nil).
   112  func (s *_TypeSet) is(f func(*term) bool) bool {
   113  	if !s.hasTerms() {
   114  		return f(nil)
   115  	}
   116  	for _, t := range s.terms {
   117  		assert(t.typ != nil)
   118  		if !f(t) {
   119  			return false
   120  		}
   121  	}
   122  	return true
   123  }
   124  
   125  // underIs calls f with the underlying types of the specific type terms
   126  // of s and reports whether all calls to f returned true. If there are
   127  // no specific terms, underIs returns the result of f(nil).
   128  func (s *_TypeSet) underIs(f func(Type) bool) bool {
   129  	if !s.hasTerms() {
   130  		return f(nil)
   131  	}
   132  	for _, t := range s.terms {
   133  		assert(t.typ != nil)
   134  		// x == under(x) for ~x terms
   135  		u := t.typ
   136  		if !t.tilde {
   137  			u = under(u)
   138  		}
   139  		if debug {
   140  			assert(Identical(u, under(u)))
   141  		}
   142  		if !f(u) {
   143  			return false
   144  		}
   145  	}
   146  	return true
   147  }
   148  
   149  // topTypeSet may be used as type set for the empty interface.
   150  var topTypeSet = _TypeSet{terms: allTermlist}
   151  
   152  // computeInterfaceTypeSet may be called with check == nil.
   153  func computeInterfaceTypeSet(check *Checker, pos syntax.Pos, ityp *Interface) *_TypeSet {
   154  	if ityp.tset != nil {
   155  		return ityp.tset
   156  	}
   157  
   158  	// If the interface is not fully set up yet, the type set will
   159  	// not be complete, which may lead to errors when using the
   160  	// type set (e.g. missing method). Don't compute a partial type
   161  	// set (and don't store it!), so that we still compute the full
   162  	// type set eventually. Instead, return the top type set and
   163  	// let any follow-on errors play out.
   164  	//
   165  	// TODO(gri) Consider recording when this happens and reporting
   166  	// it as an error (but only if there were no other errors so to
   167  	// to not have unnecessary follow-on errors).
   168  	if !ityp.complete {
   169  		return &topTypeSet
   170  	}
   171  
   172  	if check != nil && check.conf.Trace {
   173  		// Types don't generally have position information.
   174  		// If we don't have a valid pos provided, try to use
   175  		// one close enough.
   176  		if !pos.IsKnown() && len(ityp.methods) > 0 {
   177  			pos = ityp.methods[0].pos
   178  		}
   179  
   180  		check.trace(pos, "-- type set for %s", ityp)
   181  		check.indent++
   182  		defer func() {
   183  			check.indent--
   184  			check.trace(pos, "=> %s ", ityp.typeSet())
   185  		}()
   186  	}
   187  
   188  	// An infinitely expanding interface (due to a cycle) is detected
   189  	// elsewhere (Checker.validType), so here we simply assume we only
   190  	// have valid interfaces. Mark the interface as complete to avoid
   191  	// infinite recursion if the validType check occurs later for some
   192  	// reason.
   193  	ityp.tset = &_TypeSet{terms: allTermlist} // TODO(gri) is this sufficient?
   194  
   195  	var unionSets map[*Union]*_TypeSet
   196  	if check != nil {
   197  		if check.unionTypeSets == nil {
   198  			check.unionTypeSets = make(map[*Union]*_TypeSet)
   199  		}
   200  		unionSets = check.unionTypeSets
   201  	} else {
   202  		unionSets = make(map[*Union]*_TypeSet)
   203  	}
   204  
   205  	// Methods of embedded interfaces are collected unchanged; i.e., the identity
   206  	// of a method I.m's Func Object of an interface I is the same as that of
   207  	// the method m in an interface that embeds interface I. On the other hand,
   208  	// if a method is embedded via multiple overlapping embedded interfaces, we
   209  	// don't provide a guarantee which "original m" got chosen for the embedding
   210  	// interface. See also go.dev/issue/34421.
   211  	//
   212  	// If we don't care to provide this identity guarantee anymore, instead of
   213  	// reusing the original method in embeddings, we can clone the method's Func
   214  	// Object and give it the position of a corresponding embedded interface. Then
   215  	// we can get rid of the mpos map below and simply use the cloned method's
   216  	// position.
   217  
   218  	var seen objset
   219  	var allMethods []*Func
   220  	mpos := make(map[*Func]syntax.Pos) // method specification or method embedding position, for good error messages
   221  	addMethod := func(pos syntax.Pos, m *Func, explicit bool) {
   222  		switch other := seen.insert(m); {
   223  		case other == nil:
   224  			allMethods = append(allMethods, m)
   225  			mpos[m] = pos
   226  		case explicit:
   227  			if check != nil {
   228  				err := check.newError(DuplicateDecl)
   229  				err.addf(atPos(pos), "duplicate method %s", quote(m.name))
   230  				err.addf(atPos(mpos[other.(*Func)]), "other declaration of %s", quote(m.name))
   231  				err.report()
   232  			}
   233  		default:
   234  			// We have a duplicate method name in an embedded (not explicitly declared) method.
   235  			// Check method signatures after all types are computed (go.dev/issue/33656).
   236  			// If we're pre-go1.14 (overlapping embeddings are not permitted), report that
   237  			// error here as well (even though we could do it eagerly) because it's the same
   238  			// error message.
   239  			if check != nil {
   240  				check.later(func() {
   241  					if pos.IsKnown() && !check.allowVersion(atPos(pos), go1_14) || !Identical(m.typ, other.Type()) {
   242  						err := check.newError(DuplicateDecl)
   243  						err.addf(atPos(pos), "duplicate method %s", quote(m.name))
   244  						err.addf(atPos(mpos[other.(*Func)]), "other declaration of %s", quote(m.name))
   245  						err.report()
   246  					}
   247  				}).describef(atPos(pos), "duplicate method check for %s", m.name)
   248  			}
   249  		}
   250  	}
   251  
   252  	for _, m := range ityp.methods {
   253  		addMethod(m.pos, m, true)
   254  	}
   255  
   256  	// collect embedded elements
   257  	allTerms := allTermlist
   258  	allComparable := false
   259  	for i, typ := range ityp.embeddeds {
   260  		// The embedding position is nil for imported interfaces.
   261  		// We don't need to do version checks in those cases.
   262  		var pos syntax.Pos // embedding position
   263  		if ityp.embedPos != nil {
   264  			pos = (*ityp.embedPos)[i]
   265  		}
   266  		var comparable bool
   267  		var terms termlist
   268  		switch u := under(typ).(type) {
   269  		case *Interface:
   270  			// For now we don't permit type parameters as constraints.
   271  			assert(!isTypeParam(typ))
   272  			tset := computeInterfaceTypeSet(check, pos, u)
   273  			// If typ is local, an error was already reported where typ is specified/defined.
   274  			if pos.IsKnown() && check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(atPos(pos), go1_18, "embedding constraint interface %s", typ) {
   275  				continue
   276  			}
   277  			comparable = tset.comparable
   278  			for _, m := range tset.methods {
   279  				addMethod(pos, m, false) // use embedding position pos rather than m.pos
   280  			}
   281  			terms = tset.terms
   282  		case *Union:
   283  			if pos.IsKnown() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
   284  				continue
   285  			}
   286  			tset := computeUnionTypeSet(check, unionSets, pos, u)
   287  			if tset == &invalidTypeSet {
   288  				continue // ignore invalid unions
   289  			}
   290  			assert(!tset.comparable)
   291  			assert(len(tset.methods) == 0)
   292  			terms = tset.terms
   293  		default:
   294  			if !isValid(u) {
   295  				continue
   296  			}
   297  			if pos.IsKnown() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding non-interface type %s", typ) {
   298  				continue
   299  			}
   300  			terms = termlist{{false, typ}}
   301  		}
   302  
   303  		// The type set of an interface is the intersection of the type sets of all its elements.
   304  		// Due to language restrictions, only embedded interfaces can add methods, they are handled
   305  		// separately. Here we only need to intersect the term lists and comparable bits.
   306  		allTerms, allComparable = intersectTermLists(allTerms, allComparable, terms, comparable)
   307  	}
   308  
   309  	ityp.tset.comparable = allComparable
   310  	if len(allMethods) != 0 {
   311  		sortMethods(allMethods)
   312  		ityp.tset.methods = allMethods
   313  	}
   314  	ityp.tset.terms = allTerms
   315  
   316  	return ityp.tset
   317  }
   318  
   319  // TODO(gri) The intersectTermLists function belongs to the termlist implementation.
   320  //           The comparable type set may also be best represented as a term (using
   321  //           a special type).
   322  
   323  // intersectTermLists computes the intersection of two term lists and respective comparable bits.
   324  // xcomp, ycomp are valid only if xterms.isAll() and yterms.isAll() respectively.
   325  func intersectTermLists(xterms termlist, xcomp bool, yterms termlist, ycomp bool) (termlist, bool) {
   326  	terms := xterms.intersect(yterms)
   327  	// If one of xterms or yterms is marked as comparable,
   328  	// the result must only include comparable types.
   329  	comp := xcomp || ycomp
   330  	if comp && !terms.isAll() {
   331  		// only keep comparable terms
   332  		i := 0
   333  		for _, t := range terms {
   334  			assert(t.typ != nil)
   335  			if comparable(t.typ, false /* strictly comparable */, nil, nil) {
   336  				terms[i] = t
   337  				i++
   338  			}
   339  		}
   340  		terms = terms[:i]
   341  		if !terms.isAll() {
   342  			comp = false
   343  		}
   344  	}
   345  	assert(!comp || terms.isAll()) // comparable invariant
   346  	return terms, comp
   347  }
   348  
   349  func sortMethods(list []*Func) {
   350  	sort.Sort(byUniqueMethodName(list))
   351  }
   352  
   353  func assertSortedMethods(list []*Func) {
   354  	if !debug {
   355  		panic("assertSortedMethods called outside debug mode")
   356  	}
   357  	if !sort.IsSorted(byUniqueMethodName(list)) {
   358  		panic("methods not sorted")
   359  	}
   360  }
   361  
   362  // byUniqueMethodName method lists can be sorted by their unique method names.
   363  type byUniqueMethodName []*Func
   364  
   365  func (a byUniqueMethodName) Len() int           { return len(a) }
   366  func (a byUniqueMethodName) Less(i, j int) bool { return a[i].less(&a[j].object) }
   367  func (a byUniqueMethodName) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
   368  
   369  // invalidTypeSet is a singleton type set to signal an invalid type set
   370  // due to an error. It's also a valid empty type set, so consumers of
   371  // type sets may choose to ignore it.
   372  var invalidTypeSet _TypeSet
   373  
   374  // computeUnionTypeSet may be called with check == nil.
   375  // The result is &invalidTypeSet if the union overflows.
   376  func computeUnionTypeSet(check *Checker, unionSets map[*Union]*_TypeSet, pos syntax.Pos, utyp *Union) *_TypeSet {
   377  	if tset, _ := unionSets[utyp]; tset != nil {
   378  		return tset
   379  	}
   380  
   381  	// avoid infinite recursion (see also computeInterfaceTypeSet)
   382  	unionSets[utyp] = new(_TypeSet)
   383  
   384  	var allTerms termlist
   385  	for _, t := range utyp.terms {
   386  		var terms termlist
   387  		u := under(t.typ)
   388  		if ui, _ := u.(*Interface); ui != nil {
   389  			// For now we don't permit type parameters as constraints.
   390  			assert(!isTypeParam(t.typ))
   391  			terms = computeInterfaceTypeSet(check, pos, ui).terms
   392  		} else if !isValid(u) {
   393  			continue
   394  		} else {
   395  			if t.tilde && !Identical(t.typ, u) {
   396  				// There is no underlying type which is t.typ.
   397  				// The corresponding type set is empty.
   398  				t = nil // ∅ term
   399  			}
   400  			terms = termlist{(*term)(t)}
   401  		}
   402  		// The type set of a union expression is the union
   403  		// of the type sets of each term.
   404  		allTerms = allTerms.union(terms)
   405  		if len(allTerms) > maxTermCount {
   406  			if check != nil {
   407  				check.errorf(atPos(pos), InvalidUnion, "cannot handle more than %d union terms (implementation limitation)", maxTermCount)
   408  			}
   409  			unionSets[utyp] = &invalidTypeSet
   410  			return unionSets[utyp]
   411  		}
   412  	}
   413  	unionSets[utyp].terms = allTerms
   414  
   415  	return unionSets[utyp]
   416  }
   417  

View as plain text