X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/src/cmd/compile/internal/types2
opt
/
golang
/
1.19.4
/
src
/
cmd
/
compile
/
internal
/
types2
/
š
..
š
api.go
(17.37 KB)
š
api_test.go
(79.44 KB)
š
array.go
(803 B)
š
assignments.go
(13.89 KB)
š
basic.go
(1.48 KB)
š
builtins.go
(23.73 KB)
š
builtins_test.go
(9.89 KB)
š
call.go
(19.08 KB)
š
chan.go
(910 B)
š
check.go
(17.12 KB)
š
check_test.go
(8.96 KB)
š
compilersupport.go
(1.05 KB)
š
context.go
(4.34 KB)
š
context_test.go
(2.3 KB)
š
conversions.go
(8.27 KB)
š
decl.go
(27.86 KB)
š
errorcalls_test.go
(1.15 KB)
š
errors.go
(7.62 KB)
š
errors_test.go
(1.01 KB)
š
example_test.go
(7.41 KB)
š
expr.go
(54.01 KB)
š
gccgosizes.go
(1017 B)
š
hilbert_test.go
(3.63 KB)
š
importer_test.go
(913 B)
š
index.go
(11.13 KB)
š
infer.go
(24.86 KB)
š
initorder.go
(9.55 KB)
š
instantiate.go
(9.93 KB)
š
instantiate_test.go
(5.98 KB)
š
interface.go
(6.04 KB)
š
issues_test.go
(17.4 KB)
š
labels.go
(7.05 KB)
š
lookup.go
(17.01 KB)
š
main_test.go
(336 B)
š
map.go
(659 B)
š
mono.go
(9.03 KB)
š
mono_test.go
(2.65 KB)
š
named.go
(22.4 KB)
š
named_test.go
(2.35 KB)
š
object.go
(18.8 KB)
š
object_test.go
(5.13 KB)
š
objset.go
(928 B)
š
operand.go
(10.62 KB)
š
package.go
(2.67 KB)
š
pointer.go
(635 B)
š
predicates.go
(14.64 KB)
š
resolver.go
(24.88 KB)
š
resolver_test.go
(4.81 KB)
š
return.go
(4.34 KB)
š
scope.go
(9.38 KB)
š
selection.go
(3.99 KB)
š
self_test.go
(2.58 KB)
š
signature.go
(12.1 KB)
š
sizeof_test.go
(1.28 KB)
š
sizes.go
(7.56 KB)
š
sizes_test.go
(3.25 KB)
š
slice.go
(577 B)
š
stdlib_test.go
(8.8 KB)
š
stmt.go
(25.66 KB)
š
struct.go
(6.24 KB)
š
subst.go
(10.78 KB)
š
termlist.go
(3.68 KB)
š
termlist_test.go
(7.18 KB)
š
testdata
š
tuple.go
(929 B)
š
type.go
(2.92 KB)
š
typelists.go
(1.84 KB)
š
typeparam.go
(4.75 KB)
š
typeset.go
(13.87 KB)
š
typeset_test.go
(2.41 KB)
š
typestring.go
(10.61 KB)
š
typestring_test.go
(4.11 KB)
š
typeterm.go
(3.52 KB)
š
typeterm_test.go
(5.08 KB)
š
typexpr.go
(14.8 KB)
š
unify.go
(18.34 KB)
š
union.go
(6.1 KB)
š
universe.go
(7.58 KB)
š
validtype.go
(7.77 KB)
š
version.go
(2.13 KB)
Editing: validtype.go
// Copyright 2022 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. package types2 // validType verifies that the given type does not "expand" indefinitely // producing a cycle in the type graph. // (Cycles involving alias types, as in "type A = [10]A" are detected // earlier, via the objDecl cycle detection mechanism.) func (check *Checker) validType(typ *Named) { check.validType0(typ, nil, nil) } // validType0 checks if the given type is valid. If typ is a type parameter // its value is looked up in the type argument list of the instantiated // (enclosing) type, if it exists. Otherwise the type parameter must be from // an enclosing function and can be ignored. // The nest list describes the stack (the "nest in memory") of types which // contain (or embed in the case of interfaces) other types. For instance, a // struct named S which contains a field of named type F contains (the memory // of) F in S, leading to the nest S->F. If a type appears in its own nest // (say S->F->S) we have an invalid recursive type. The path list is the full // path of named types in a cycle, it is only needed for error reporting. func (check *Checker) validType0(typ Type, nest, path []*Named) bool { switch t := typ.(type) { case nil: // We should never see a nil type but be conservative and panic // only in debug mode. if debug { panic("validType0(nil)") } case *Array: return check.validType0(t.elem, nest, path) case *Struct: for _, f := range t.fields { if !check.validType0(f.typ, nest, path) { return false } } case *Union: for _, t := range t.terms { if !check.validType0(t.typ, nest, path) { return false } } case *Interface: for _, etyp := range t.embeddeds { if !check.validType0(etyp, nest, path) { return false } } case *Named: // Exit early if we already know t is valid. // This is purely an optimization but it prevents excessive computation // times in pathological cases such as testdata/fixedbugs/issue6977.go. // (Note: The valids map could also be allocated locally, once for each // validType call.) if check.valids.lookup(t) != nil { break } // Don't report a 2nd error if we already know the type is invalid // (e.g., if a cycle was detected earlier, via under). // Note: ensure that t.orig is fully resolved by calling Underlying(). if t.Underlying() == Typ[Invalid] { return false } // If the current type t is also found in nest, (the memory of) t is // embedded in itself, indicating an invalid recursive type. for _, e := range nest { if Identical(e, t) { // t cannot be in an imported package otherwise that package // would have reported a type cycle and couldn't have been // imported in the first place. assert(t.obj.pkg == check.pkg) t.underlying = Typ[Invalid] // t is in the current package (no race possibility) // Find the starting point of the cycle and report it. // Because each type in nest must also appear in path (see invariant below), // type t must be in path since it was found in nest. But not every type in path // is in nest. Specifically t may appear in path with an earlier index than the // index of t in nest. Search again. for start, p := range path { if Identical(p, t) { check.cycleError(makeObjList(path[start:])) return false } } panic("cycle start not found") } } // No cycle was found. Check the RHS of t. // Every type added to nest is also added to path; thus every type that is in nest // must also be in path (invariant). But not every type in path is in nest, since // nest may be pruned (see below, *TypeParam case). if !check.validType0(t.Origin().fromRHS, append(nest, t), append(path, t)) { return false } check.valids.add(t) // t is valid case *TypeParam: // A type parameter stands for the type (argument) it was instantiated with. // Check the corresponding type argument for validity if we are in an // instantiated type. if len(nest) > 0 { inst := nest[len(nest)-1] // the type instance // Find the corresponding type argument for the type parameter // and proceed with checking that type argument. for i, tparam := range inst.TypeParams().list() { // The type parameter and type argument lists should // match in length but be careful in case of errors. if t == tparam && i < inst.TypeArgs().Len() { targ := inst.TypeArgs().At(i) // The type argument must be valid in the enclosing // type (where inst was instantiated), hence we must // check targ's validity in the type nest excluding // the current (instantiated) type (see the example // at the end of this file). // For error reporting we keep the full path. return check.validType0(targ, nest[:len(nest)-1], path) } } } } return true } // makeObjList returns the list of type name objects for the given // list of named types. func makeObjList(tlist []*Named) []Object { olist := make([]Object, len(tlist)) for i, t := range tlist { olist[i] = t.obj } return olist } // Here is an example illustrating why we need to exclude the // instantiated type from nest when evaluating the validity of // a type parameter. Given the declarations // // var _ A[A[string]] // // type A[P any] struct { _ B[P] } // type B[P any] struct { _ P } // // we want to determine if the type A[A[string]] is valid. // We start evaluating A[A[string]] outside any type nest: // // A[A[string]] // nest = // path = // // The RHS of A is now evaluated in the A[A[string]] nest: // // struct{_ B[Pā]} // nest = A[A[string]] // path = A[A[string]] // // The struct has a single field of type B[Pā] with which // we continue: // // B[Pā] // nest = A[A[string]] // path = A[A[string]] // // struct{_ Pā} // nest = A[A[string]]->B[P] // path = A[A[string]]->B[P] // // Eventutally we reach the type parameter P of type B (Pā): // // Pā // nest = A[A[string]]->B[P] // path = A[A[string]]->B[P] // // The type argument for P of B is the type parameter P of A (Pā). // It must be evaluated in the type nest that existed when B was // instantiated: // // Pā // nest = A[A[string]] <== type nest at B's instantiation time // path = A[A[string]]->B[P] // // If we'd use the current nest it would correspond to the path // which will be wrong as we will see shortly. P's type argument // is A[string], which again must be evaluated in the type nest // that existed when A was instantiated with A[string]. That type // nest is empty: // // A[string] // nest = <== type nest at A's instantiation time // path = A[A[string]]->B[P] // // Evaluation then proceeds as before for A[string]: // // struct{_ B[Pā]} // nest = A[string] // path = A[A[string]]->B[P]->A[string] // // Now we reach B[P] again. If we had not adjusted nest, it would // correspond to path, and we would find B[P] in nest, indicating // a cycle, which would clearly be wrong since there's no cycle in // A[string]: // // B[Pā] // nest = A[string] // path = A[A[string]]->B[P]->A[string] <== path contains B[P]! // // But because we use the correct type nest, evaluation proceeds without // errors and we get the evaluation sequence: // // struct{_ Pā} // nest = A[string]->B[P] // path = A[A[string]]->B[P]->A[string]->B[P] // Pā // nest = A[string]->B[P] // path = A[A[string]]->B[P]->A[string]->B[P] // Pā // nest = A[string] // path = A[A[string]]->B[P]->A[string]->B[P] // string // nest = // path = A[A[string]]->B[P]->A[string]->B[P] // // At this point we're done and A[A[string]] and is valid.
Upload File
Create Folder