]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/go/types/predicates.go
go/types, types2: introduce _Alias type node
[gostls13.git] / src / go / types / predicates.go
index b26b5beb9cb90dd5e13b300015c3cfcf18dfc328..5dc775af8d4c33332a46e7b4365ee0e9bed3b80a 100644 (file)
@@ -1,3 +1,5 @@
+// Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
+
 // Copyright 2012 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.
@@ -6,6 +8,9 @@
 
 package types
 
+// isValid reports whether t is a valid type.
+func isValid(t Type) bool { return _Unalias(t) != Typ[Invalid] }
+
 // The isX predicates below report whether t is an X.
 // If t is a type parameter the result is false; i.e.,
 // these predicates don't look inside a type parameter.
@@ -34,20 +39,20 @@ func isBasic(t Type, info BasicInfo) bool {
 // allX is an optimized version of isX(coreType(t)) (which
 // is the same as underIs(t, isX)).
 
-func allBoolean(typ Type) bool         { return allBasic(typ, IsBoolean) }
-func allInteger(typ Type) bool         { return allBasic(typ, IsInteger) }
-func allUnsigned(typ Type) bool        { return allBasic(typ, IsUnsigned) }
-func allNumeric(typ Type) bool         { return allBasic(typ, IsNumeric) }
-func allString(typ Type) bool          { return allBasic(typ, IsString) }
-func allOrdered(typ Type) bool         { return allBasic(typ, IsOrdered) }
-func allNumericOrString(typ Type) bool { return allBasic(typ, IsNumeric|IsString) }
+func allBoolean(t Type) bool         { return allBasic(t, IsBoolean) }
+func allInteger(t Type) bool         { return allBasic(t, IsInteger) }
+func allUnsigned(t Type) bool        { return allBasic(t, IsUnsigned) }
+func allNumeric(t Type) bool         { return allBasic(t, IsNumeric) }
+func allString(t Type) bool          { return allBasic(t, IsString) }
+func allOrdered(t Type) bool         { return allBasic(t, IsOrdered) }
+func allNumericOrString(t Type) bool { return allBasic(t, IsNumeric|IsString) }
 
 // allBasic reports whether under(t) is a basic type with the specified info.
 // If t is a type parameter, the result is true if isBasic(t, info) is true
 // for all specific types of the type parameter's type set.
 // allBasic(t, info) is an optimized version of isBasic(coreType(t), info).
 func allBasic(t Type, info BasicInfo) bool {
-       if tpar, _ := t.(*TypeParam); tpar != nil {
+       if tpar, _ := _Unalias(t).(*TypeParam); tpar != nil {
                return tpar.is(func(t *term) bool { return t != nil && isBasic(t.typ, info) })
        }
        return isBasic(t, info)
@@ -57,19 +62,32 @@ func allBasic(t Type, info BasicInfo) bool {
 // predeclared types, defined types, and type parameters.
 // hasName may be called with types that are not fully set up.
 func hasName(t Type) bool {
-       switch t.(type) {
+       switch _Unalias(t).(type) {
        case *Basic, *Named, *TypeParam:
                return true
        }
        return false
 }
 
+// isTypeLit reports whether t is a type literal.
+// This includes all non-defined types, but also basic types.
+// isTypeLit may be called with types that are not fully set up.
+func isTypeLit(t Type) bool {
+       switch _Unalias(t).(type) {
+       case *Named, *TypeParam:
+               return false
+       }
+       return true
+}
+
 // isTyped reports whether t is typed; i.e., not an untyped
 // constant or boolean. isTyped may be called with types that
 // are not fully set up.
 func isTyped(t Type) bool {
-       // isTyped is called with types that are not fully
-       // set up. Must not call under()!
+       // Alias or Named types cannot denote untyped types,
+       // thus we don't need to call _Unalias or under
+       // (which would be unsafe to do for types that are
+       // not fully set up).
        b, _ := t.(*Basic)
        return b == nil || b.info&IsUntyped == 0
 }
@@ -92,7 +110,7 @@ func isNonTypeParamInterface(t Type) bool {
 
 // isTypeParam reports whether t is a type parameter.
 func isTypeParam(t Type) bool {
-       _, ok := t.(*TypeParam)
+       _, ok := _Unalias(t).(*TypeParam)
        return ok
 }
 
@@ -101,7 +119,7 @@ func isTypeParam(t Type) bool {
 // use anywhere, but it may report a false negative if the type set has not been
 // computed yet.
 func hasEmptyTypeset(t Type) bool {
-       if tpar, _ := t.(*TypeParam); tpar != nil && tpar.bound != nil {
+       if tpar, _ := _Unalias(t).(*TypeParam); tpar != nil && tpar.bound != nil {
                iface, _ := safeUnderlying(tpar.bound).(*Interface)
                return iface != nil && iface.tset != nil && iface.tset.IsEmpty()
        }
@@ -113,7 +131,7 @@ func hasEmptyTypeset(t Type) bool {
 // TODO(gri) should we include signatures or assert that they are not present?
 func isGeneric(t Type) bool {
        // A parameterized type is only generic if it doesn't have an instantiation already.
-       named, _ := t.(*Named)
+       named := asNamed(t)
        return named != nil && named.obj != nil && named.inst == nil && named.TypeParams().Len() > 0
 }
 
@@ -199,12 +217,25 @@ func (p *ifacePair) identical(q *ifacePair) bool {
        return p.x == q.x && p.y == q.y || p.x == q.y && p.y == q.x
 }
 
+// A comparer is used to compare types.
+type comparer struct {
+       ignoreTags     bool // if set, identical ignores struct tags
+       ignoreInvalids bool // if set, identical treats an invalid type as identical to any type
+}
+
 // For changes to this code the corresponding changes should be made to unifier.nify.
-func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
+func (c *comparer) identical(x, y Type, p *ifacePair) bool {
+       x = _Unalias(x)
+       y = _Unalias(y)
+
        if x == y {
                return true
        }
 
+       if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
+               return true
+       }
+
        switch x := x.(type) {
        case *Basic:
                // Basic types are singletons except for the rune and byte
@@ -220,13 +251,13 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
                if y, ok := y.(*Array); ok {
                        // If one or both array lengths are unknown (< 0) due to some error,
                        // assume they are the same to avoid spurious follow-on errors.
-                       return (x.len < 0 || y.len < 0 || x.len == y.len) && identical(x.elem, y.elem, cmpTags, p)
+                       return (x.len < 0 || y.len < 0 || x.len == y.len) && c.identical(x.elem, y.elem, p)
                }
 
        case *Slice:
                // Two slice types are identical if they have identical element types.
                if y, ok := y.(*Slice); ok {
-                       return identical(x.elem, y.elem, cmpTags, p)
+                       return c.identical(x.elem, y.elem, p)
                }
 
        case *Struct:
@@ -239,9 +270,9 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
                                for i, f := range x.fields {
                                        g := y.fields[i]
                                        if f.embedded != g.embedded ||
-                                               cmpTags && x.Tag(i) != y.Tag(i) ||
+                                               !c.ignoreTags && x.Tag(i) != y.Tag(i) ||
                                                !f.sameId(g.pkg, g.name) ||
-                                               !identical(f.typ, g.typ, cmpTags, p) {
+                                               !c.identical(f.typ, g.typ, p) {
                                                return false
                                        }
                                }
@@ -252,7 +283,7 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
        case *Pointer:
                // Two pointer types are identical if they have identical base types.
                if y, ok := y.(*Pointer); ok {
-                       return identical(x.base, y.base, cmpTags, p)
+                       return c.identical(x.base, y.base, p)
                }
 
        case *Tuple:
@@ -263,7 +294,7 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
                                if x != nil {
                                        for i, v := range x.vars {
                                                w := y.vars[i]
-                                               if !identical(v.typ, w.typ, cmpTags, p) {
+                                               if !c.identical(v.typ, w.typ, p) {
                                                        return false
                                                }
                                        }
@@ -311,7 +342,7 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
                        // Constraints must be pair-wise identical, after substitution.
                        for i, xtparam := range xtparams {
                                ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
-                               if !identical(xtparam.bound, ybound, cmpTags, p) {
+                               if !c.identical(xtparam.bound, ybound, p) {
                                        return false
                                }
                        }
@@ -321,8 +352,8 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
                }
 
                return x.variadic == y.variadic &&
-                       identical(x.params, yparams, cmpTags, p) &&
-                       identical(x.results, yresults, cmpTags, p)
+                       c.identical(x.params, yparams, p) &&
+                       c.identical(x.results, yresults, p)
 
        case *Union:
                if y, _ := y.(*Union); y != nil {
@@ -389,7 +420,7 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
                                }
                                for i, f := range a {
                                        g := b[i]
-                                       if f.Id() != g.Id() || !identical(f.typ, g.typ, cmpTags, q) {
+                                       if f.Id() != g.Id() || !c.identical(f.typ, g.typ, q) {
                                                return false
                                        }
                                }
@@ -400,45 +431,35 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
        case *Map:
                // Two map types are identical if they have identical key and value types.
                if y, ok := y.(*Map); ok {
-                       return identical(x.key, y.key, cmpTags, p) && identical(x.elem, y.elem, cmpTags, p)
+                       return c.identical(x.key, y.key, p) && c.identical(x.elem, y.elem, p)
                }
 
        case *Chan:
                // Two channel types are identical if they have identical value types
                // and the same direction.
                if y, ok := y.(*Chan); ok {
-                       return x.dir == y.dir && identical(x.elem, y.elem, cmpTags, p)
+                       return x.dir == y.dir && c.identical(x.elem, y.elem, p)
                }
 
        case *Named:
                // Two named types are identical if their type names originate
-               // in the same type declaration.
-               if y, ok := y.(*Named); ok {
+               // in the same type declaration; if they are instantiated they
+               // must have identical type argument lists.
+               if y := asNamed(y); y != nil {
+                       // check type arguments before origins to match unifier
+                       // (for correct source code we need to do all checks so
+                       // order doesn't matter)
                        xargs := x.TypeArgs().list()
                        yargs := y.TypeArgs().list()
-
                        if len(xargs) != len(yargs) {
                                return false
                        }
-
-                       if len(xargs) > 0 {
-                               // Instances are identical if their original type and type arguments
-                               // are identical.
-                               if !Identical(x.Origin(), y.Origin()) {
+                       for i, xarg := range xargs {
+                               if !Identical(xarg, yargs[i]) {
                                        return false
                                }
-                               for i, xa := range xargs {
-                                       if !Identical(xa, yargs[i]) {
-                                               return false
-                                       }
-                               }
-                               return true
                        }
-
-                       // TODO(gri) Why is x == y not sufficient? And if it is,
-                       //           we can just return false here because x == y
-                       //           is caught in the very beginning of this function.
-                       return x.obj == y.obj
+                       return identicalOrigin(x, y)
                }
 
        case *TypeParam:
@@ -454,6 +475,12 @@ func identical(x, y Type, cmpTags bool, p *ifacePair) bool {
        return false
 }
 
+// identicalOrigin reports whether x and y originated in the same declaration.
+func identicalOrigin(x, y *Named) bool {
+       // TODO(gri) is this correct?
+       return x.Origin().obj == y.Origin().obj
+}
+
 // identicalInstance reports if two type instantiations are identical.
 // Instantiations are identical if their origin and type arguments are
 // identical.
@@ -475,7 +502,7 @@ func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool
 // it returns the incoming type for all other types. The default type
 // for untyped nil is untyped nil.
 func Default(t Type) Type {
-       if t, ok := t.(*Basic); ok {
+       if t, ok := _Unalias(t).(*Basic); ok {
                switch t.kind {
                case UntypedBool:
                        return Typ[Bool]
@@ -493,3 +520,29 @@ func Default(t Type) Type {
        }
        return t
 }
+
+// maxType returns the "largest" type that encompasses both x and y.
+// If x and y are different untyped numeric types, the result is the type of x or y
+// that appears later in this list: integer, rune, floating-point, complex.
+// Otherwise, if x != y, the result is nil.
+func maxType(x, y Type) Type {
+       // We only care about untyped types (for now), so == is good enough.
+       // TODO(gri) investigate generalizing this function to simplify code elsewhere
+       if x == y {
+               return x
+       }
+       if isUntyped(x) && isUntyped(y) && isNumeric(x) && isNumeric(y) {
+               // untyped types are basic types
+               if x.(*Basic).kind > y.(*Basic).kind {
+                       return x
+               }
+               return y
+       }
+       return nil
+}
+
+// clone makes a "flat copy" of *p and returns a pointer to the copy.
+func clone[P *T, T any](p P) P {
+       c := *p
+       return &c
+}