]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/types2/check.go
cmd/compile/internal/types2: remove concept of finals
[gostls13.git] / src / cmd / compile / internal / types2 / check.go
1 // UNREVIEWED
2 // Copyright 2011 The Go Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file.
5
6 // This file implements the Check function, which drives type-checking.
7
8 package types2
9
10 import (
11         "cmd/compile/internal/syntax"
12         "errors"
13         "fmt"
14         "go/constant"
15 )
16
17 var nopos syntax.Pos
18
19 // debugging/development support
20 const debug = true // leave on during development
21
22 // If forceStrict is set, the type-checker enforces additional
23 // rules not specified by the Go 1 spec, but which will
24 // catch guaranteed run-time errors if the respective
25 // code is executed. In other words, programs passing in
26 // strict mode are Go 1 compliant, but not all Go 1 programs
27 // will pass in strict mode. The additional rules are:
28 //
29 // - A type assertion x.(T) where T is an interface type
30 //   is invalid if any (statically known) method that exists
31 //   for both x and T have different signatures.
32 //
33 const forceStrict = false
34
35 // If methodTypeParamsOk is set, type parameters are
36 // permitted in method declarations (in interfaces, too).
37 // Generalization and experimental feature.
38 const methodTypeParamsOk = true
39
40 // exprInfo stores information about an untyped expression.
41 type exprInfo struct {
42         isLhs bool // expression is lhs operand of a shift with delayed type-check
43         mode  operandMode
44         typ   *Basic
45         val   constant.Value // constant value; or nil (if not a constant)
46 }
47
48 // A context represents the context within which an object is type-checked.
49 type context struct {
50         decl          *declInfo                 // package-level declaration whose init expression/function body is checked
51         scope         *Scope                    // top-most scope for lookups
52         pos           syntax.Pos                // if valid, identifiers are looked up as if at position pos (used by Eval)
53         iota          constant.Value            // value of iota in a constant declaration; nil otherwise
54         errpos        syntax.Pos                // if valid, identifier position of a constant with inherited initializer
55         sig           *Signature                // function signature if inside a function; nil otherwise
56         isPanic       map[*syntax.CallExpr]bool // set of panic call expressions (used for termination check)
57         hasLabel      bool                      // set if a function makes use of labels (only ~1% of functions); unused outside functions
58         hasCallOrRecv bool                      // set if an expression contains a function call or channel receive operation
59 }
60
61 // lookup looks up name in the current context and returns the matching object, or nil.
62 func (ctxt *context) lookup(name string) Object {
63         _, obj := ctxt.scope.LookupParent(name, ctxt.pos)
64         return obj
65 }
66
67 // An importKey identifies an imported package by import path and source directory
68 // (directory containing the file containing the import). In practice, the directory
69 // may always be the same, or may not matter. Given an (import path, directory), an
70 // importer must always return the same package (but given two different import paths,
71 // an importer may still return the same package by mapping them to the same package
72 // paths).
73 type importKey struct {
74         path, dir string
75 }
76
77 // A dotImportKey describes a dot-imported object in the given scope.
78 type dotImportKey struct {
79         scope *Scope
80         obj   Object
81 }
82
83 // A Checker maintains the state of the type checker.
84 // It must be created with NewChecker.
85 type Checker struct {
86         // package information
87         // (initialized by NewChecker, valid for the life-time of checker)
88         conf *Config
89         pkg  *Package
90         *Info
91         version version                     // accepted language version
92         nextId  uint64                      // unique Id for type parameters (first valid Id is 1)
93         objMap  map[Object]*declInfo        // maps package-level objects and (non-interface) methods to declaration info
94         impMap  map[importKey]*Package      // maps (import path, source directory) to (complete or fake) package
95         posMap  map[*Interface][]syntax.Pos // maps interface types to lists of embedded interface positions
96         typMap  map[string]*Named           // maps an instantiated named type hash to a *Named type
97         pkgCnt  map[string]int              // counts number of imported packages with a given name (for better error messages)
98
99         // information collected during type-checking of a set of package files
100         // (initialized by Files, valid only for the duration of check.Files;
101         // maps and lists are allocated on demand)
102         files        []*syntax.File            // list of package files
103         imports      []*PkgName                // list of imported packages
104         dotImportMap map[dotImportKey]*PkgName // maps dot-imported objects to the package they were dot-imported through
105
106         firstErr error                    // first error encountered
107         methods  map[*TypeName][]*Func    // maps package scope type names to associated non-blank (non-interface) methods
108         untyped  map[syntax.Expr]exprInfo // map of expressions without final type
109         delayed  []func()                 // stack of delayed action segments; segments are processed in FIFO order
110         objPath  []Object                 // path of object dependencies during type inference (for cycle reporting)
111
112         // context within which the current object is type-checked
113         // (valid only for the duration of type-checking a specific object)
114         context
115
116         // debugging
117         indent int // indentation for tracing
118 }
119
120 // addDeclDep adds the dependency edge (check.decl -> to) if check.decl exists
121 func (check *Checker) addDeclDep(to Object) {
122         from := check.decl
123         if from == nil {
124                 return // not in a package-level init expression
125         }
126         if _, found := check.objMap[to]; !found {
127                 return // to is not a package-level object
128         }
129         from.addDep(to)
130 }
131
132 func (check *Checker) rememberUntyped(e syntax.Expr, lhs bool, mode operandMode, typ *Basic, val constant.Value) {
133         m := check.untyped
134         if m == nil {
135                 m = make(map[syntax.Expr]exprInfo)
136                 check.untyped = m
137         }
138         m[e] = exprInfo{lhs, mode, typ, val}
139 }
140
141 // later pushes f on to the stack of actions that will be processed later;
142 // either at the end of the current statement, or in case of a local constant
143 // or variable declaration, before the constant or variable is in scope
144 // (so that f still sees the scope before any new declarations).
145 func (check *Checker) later(f func()) {
146         check.delayed = append(check.delayed, f)
147 }
148
149 // push pushes obj onto the object path and returns its index in the path.
150 func (check *Checker) push(obj Object) int {
151         check.objPath = append(check.objPath, obj)
152         return len(check.objPath) - 1
153 }
154
155 // pop pops and returns the topmost object from the object path.
156 func (check *Checker) pop() Object {
157         i := len(check.objPath) - 1
158         obj := check.objPath[i]
159         check.objPath[i] = nil
160         check.objPath = check.objPath[:i]
161         return obj
162 }
163
164 // NewChecker returns a new Checker instance for a given package.
165 // Package files may be added incrementally via checker.Files.
166 func NewChecker(conf *Config, pkg *Package, info *Info) *Checker {
167         // make sure we have a configuration
168         if conf == nil {
169                 conf = new(Config)
170         }
171
172         // make sure we have an info struct
173         if info == nil {
174                 info = new(Info)
175         }
176
177         version, err := parseGoVersion(conf.GoVersion)
178         if err != nil {
179                 panic(fmt.Sprintf("invalid Go version %q (%v)", conf.GoVersion, err))
180         }
181
182         return &Checker{
183                 conf:    conf,
184                 pkg:     pkg,
185                 Info:    info,
186                 version: version,
187                 nextId:  1,
188                 objMap:  make(map[Object]*declInfo),
189                 impMap:  make(map[importKey]*Package),
190                 posMap:  make(map[*Interface][]syntax.Pos),
191                 typMap:  make(map[string]*Named),
192                 pkgCnt:  make(map[string]int),
193         }
194 }
195
196 // initFiles initializes the files-specific portion of checker.
197 // The provided files must all belong to the same package.
198 func (check *Checker) initFiles(files []*syntax.File) {
199         // start with a clean slate (check.Files may be called multiple times)
200         check.files = nil
201         check.imports = nil
202         check.dotImportMap = nil
203
204         check.firstErr = nil
205         check.methods = nil
206         check.untyped = nil
207         check.delayed = nil
208
209         // determine package name and collect valid files
210         pkg := check.pkg
211         for _, file := range files {
212                 switch name := file.PkgName.Value; pkg.name {
213                 case "":
214                         if name != "_" {
215                                 pkg.name = name
216                         } else {
217                                 check.errorf(file.PkgName, "invalid package name _")
218                         }
219                         fallthrough
220
221                 case name:
222                         check.files = append(check.files, file)
223
224                 default:
225                         check.errorf(file, "package %s; expected %s", name, pkg.name)
226                         // ignore this file
227                 }
228         }
229 }
230
231 // A bailout panic is used for early termination.
232 type bailout struct{}
233
234 func (check *Checker) handleBailout(err *error) {
235         switch p := recover().(type) {
236         case nil, bailout:
237                 // normal return or early exit
238                 *err = check.firstErr
239         default:
240                 // re-panic
241                 panic(p)
242         }
243 }
244
245 // Files checks the provided files as part of the checker's package.
246 func (check *Checker) Files(files []*syntax.File) error { return check.checkFiles(files) }
247
248 var errBadCgo = errors.New("cannot use FakeImportC and go115UsesCgo together")
249
250 func (check *Checker) checkFiles(files []*syntax.File) (err error) {
251         if check.conf.FakeImportC && check.conf.go115UsesCgo {
252                 return errBadCgo
253         }
254
255         defer check.handleBailout(&err)
256
257         print := func(msg string) {
258                 if check.conf.Trace {
259                         fmt.Println(msg)
260                 }
261         }
262
263         print("== initFiles ==")
264         check.initFiles(files)
265
266         print("== collectObjects ==")
267         check.collectObjects()
268
269         print("== packageObjects ==")
270         check.packageObjects()
271
272         print("== processDelayed ==")
273         check.processDelayed(0) // incl. all functions
274
275         print("== initOrder ==")
276         check.initOrder()
277
278         if !check.conf.DisableUnusedImportCheck {
279                 print("== unusedImports ==")
280                 check.unusedImports()
281         }
282         // no longer needed - release memory
283         check.imports = nil
284         check.dotImportMap = nil
285
286         print("== recordUntyped ==")
287         check.recordUntyped()
288
289         if check.Info != nil {
290                 print("== sanitizeInfo ==")
291                 sanitizeInfo(check.Info)
292         }
293
294         check.pkg.complete = true
295
296         // TODO(gri) There's more memory we should release at this point.
297
298         return
299 }
300
301 // processDelayed processes all delayed actions pushed after top.
302 func (check *Checker) processDelayed(top int) {
303         // If each delayed action pushes a new action, the
304         // stack will continue to grow during this loop.
305         // However, it is only processing functions (which
306         // are processed in a delayed fashion) that may
307         // add more actions (such as nested functions), so
308         // this is a sufficiently bounded process.
309         for i := top; i < len(check.delayed); i++ {
310                 check.delayed[i]() // may append to check.delayed
311         }
312         assert(top <= len(check.delayed)) // stack must not have shrunk
313         check.delayed = check.delayed[:top]
314 }
315
316 func (check *Checker) recordUntyped() {
317         if !debug && check.Types == nil {
318                 return // nothing to do
319         }
320
321         for x, info := range check.untyped {
322                 if debug && isTyped(info.typ) {
323                         check.dump("%v: %s (type %s) is typed", posFor(x), x, info.typ)
324                         unreachable()
325                 }
326                 check.recordTypeAndValue(x, info.mode, info.typ, info.val)
327         }
328 }
329
330 func (check *Checker) recordTypeAndValue(x syntax.Expr, mode operandMode, typ Type, val constant.Value) {
331         assert(x != nil)
332         assert(typ != nil)
333         if mode == invalid {
334                 return // omit
335         }
336         if mode == constant_ {
337                 assert(val != nil)
338                 assert(typ == Typ[Invalid] || isConstType(typ))
339         }
340         if m := check.Types; m != nil {
341                 m[x] = TypeAndValue{mode, typ, val}
342         }
343 }
344
345 func (check *Checker) recordBuiltinType(f syntax.Expr, sig *Signature) {
346         // f must be a (possibly parenthesized) identifier denoting a built-in
347         // (built-ins in package unsafe always produce a constant result and
348         // we don't record their signatures, so we don't see qualified idents
349         // here): record the signature for f and possible children.
350         for {
351                 check.recordTypeAndValue(f, builtin, sig, nil)
352                 switch p := f.(type) {
353                 case *syntax.Name:
354                         return // we're done
355                 case *syntax.ParenExpr:
356                         f = p.X
357                 default:
358                         unreachable()
359                 }
360         }
361 }
362
363 func (check *Checker) recordCommaOkTypes(x syntax.Expr, a [2]Type) {
364         assert(x != nil)
365         if a[0] == nil || a[1] == nil {
366                 return
367         }
368         assert(isTyped(a[0]) && isTyped(a[1]) && (isBoolean(a[1]) || a[1] == universeError))
369         if m := check.Types; m != nil {
370                 for {
371                         tv := m[x]
372                         assert(tv.Type != nil) // should have been recorded already
373                         pos := x.Pos()
374                         tv.Type = NewTuple(
375                                 NewVar(pos, check.pkg, "", a[0]),
376                                 NewVar(pos, check.pkg, "", a[1]),
377                         )
378                         m[x] = tv
379                         // if x is a parenthesized expression (p.X), update p.X
380                         p, _ := x.(*syntax.ParenExpr)
381                         if p == nil {
382                                 break
383                         }
384                         x = p.X
385                 }
386         }
387 }
388
389 func (check *Checker) recordInferred(call syntax.Expr, targs []Type, sig *Signature) {
390         assert(call != nil)
391         assert(sig != nil)
392         if m := check.Inferred; m != nil {
393                 m[call] = Inferred{targs, sig}
394         }
395 }
396
397 func (check *Checker) recordDef(id *syntax.Name, obj Object) {
398         assert(id != nil)
399         if m := check.Defs; m != nil {
400                 m[id] = obj
401         }
402 }
403
404 func (check *Checker) recordUse(id *syntax.Name, obj Object) {
405         assert(id != nil)
406         assert(obj != nil)
407         if m := check.Uses; m != nil {
408                 m[id] = obj
409         }
410 }
411
412 func (check *Checker) recordImplicit(node syntax.Node, obj Object) {
413         assert(node != nil)
414         assert(obj != nil)
415         if m := check.Implicits; m != nil {
416                 m[node] = obj
417         }
418 }
419
420 func (check *Checker) recordSelection(x *syntax.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) {
421         assert(obj != nil && (recv == nil || len(index) > 0))
422         check.recordUse(x.Sel, obj)
423         if m := check.Selections; m != nil {
424                 m[x] = &Selection{kind, recv, obj, index, indirect}
425         }
426 }
427
428 func (check *Checker) recordScope(node syntax.Node, scope *Scope) {
429         assert(node != nil)
430         assert(scope != nil)
431         if m := check.Scopes; m != nil {
432                 m[node] = scope
433         }
434 }