]> Cypherpunks.ru repositories - gostls13.git/blob - src/go/types/check.go
go/types: rename is_X predicates back to isX (step 2 of 2)
[gostls13.git] / src / go / types / check.go
1 // Copyright 2011 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 // This file implements the Check function, which drives type-checking.
6
7 package types
8
9 import (
10         "errors"
11         "fmt"
12         "go/ast"
13         "go/constant"
14         "go/token"
15 )
16
17 // debugging/development support
18 const (
19         debug = false // leave on during development
20         trace = false // turn on for detailed type resolution traces
21 )
22
23 // If forceStrict is set, the type-checker enforces additional
24 // rules not specified by the Go 1 spec, but which will
25 // catch guaranteed run-time errors if the respective
26 // code is executed. In other words, programs passing in
27 // strict mode are Go 1 compliant, but not all Go 1 programs
28 // will pass in strict mode. The additional rules are:
29 //
30 // - A type assertion x.(T) where T is an interface type
31 //   is invalid if any (statically known) method that exists
32 //   for both x and T have different signatures.
33 //
34 const forceStrict = false
35
36 // exprInfo stores information about an untyped expression.
37 type exprInfo struct {
38         isLhs bool // expression is lhs operand of a shift with delayed type-check
39         mode  operandMode
40         typ   *Basic
41         val   constant.Value // constant value; or nil (if not a constant)
42 }
43
44 // A context represents the context within which an object is type-checked.
45 type context struct {
46         decl          *declInfo              // package-level declaration whose init expression/function body is checked
47         scope         *Scope                 // top-most scope for lookups
48         pos           token.Pos              // if valid, identifiers are looked up as if at position pos (used by Eval)
49         iota          constant.Value         // value of iota in a constant declaration; nil otherwise
50         errpos        positioner             // if set, identifier position of a constant with inherited initializer
51         sig           *Signature             // function signature if inside a function; nil otherwise
52         isPanic       map[*ast.CallExpr]bool // set of panic call expressions (used for termination check)
53         hasLabel      bool                   // set if a function makes use of labels (only ~1% of functions); unused outside functions
54         hasCallOrRecv bool                   // set if an expression contains a function call or channel receive operation
55 }
56
57 // lookup looks up name in the current context and returns the matching object, or nil.
58 func (ctxt *context) lookup(name string) Object {
59         _, obj := ctxt.scope.LookupParent(name, ctxt.pos)
60         return obj
61 }
62
63 // An importKey identifies an imported package by import path and source directory
64 // (directory containing the file containing the import). In practice, the directory
65 // may always be the same, or may not matter. Given an (import path, directory), an
66 // importer must always return the same package (but given two different import paths,
67 // an importer may still return the same package by mapping them to the same package
68 // paths).
69 type importKey struct {
70         path, dir string
71 }
72
73 // A dotImportKey describes a dot-imported object in the given scope.
74 type dotImportKey struct {
75         scope *Scope
76         name  string
77 }
78
79 // An action describes a (delayed) action.
80 type action struct {
81         f    func()      // action to be executed
82         desc *actionDesc // action description; may be nil, requires debug to be set
83 }
84
85 // If debug is set, describef sets a printf-formatted description for action a.
86 // Otherwise, it is a no-op.
87 func (a *action) describef(pos positioner, format string, args ...interface{}) {
88         if debug {
89                 a.desc = &actionDesc{pos, format, args}
90         }
91 }
92
93 // An actionDesc provides information on an action.
94 // For debugging only.
95 type actionDesc struct {
96         pos    positioner
97         format string
98         args   []interface{}
99 }
100
101 // A Checker maintains the state of the type checker.
102 // It must be created with NewChecker.
103 type Checker struct {
104         // package information
105         // (initialized by NewChecker, valid for the life-time of checker)
106         conf *Config
107         fset *token.FileSet
108         pkg  *Package
109         *Info
110         version version                // accepted language version
111         nextID  uint64                 // unique Id for type parameters (first valid Id is 1)
112         objMap  map[Object]*declInfo   // maps package-level objects and (non-interface) methods to declaration info
113         impMap  map[importKey]*Package // maps (import path, source directory) to (complete or fake) package
114
115         // pkgPathMap maps package names to the set of distinct import paths we've
116         // seen for that name, anywhere in the import graph. It is used for
117         // disambiguating package names in error messages.
118         //
119         // pkgPathMap is allocated lazily, so that we don't pay the price of building
120         // it on the happy path. seenPkgMap tracks the packages that we've already
121         // walked.
122         pkgPathMap map[string]map[string]bool
123         seenPkgMap map[*Package]bool
124
125         // information collected during type-checking of a set of package files
126         // (initialized by Files, valid only for the duration of check.Files;
127         // maps and lists are allocated on demand)
128         files         []*ast.File               // package files
129         imports       []*PkgName                // list of imported packages
130         dotImportMap  map[dotImportKey]*PkgName // maps dot-imported objects to the package they were dot-imported through
131         recvTParamMap map[*ast.Ident]*TypeParam // maps blank receiver type parameters to their type
132         mono          monoGraph                 // graph for detecting non-monomorphizable instantiation loops
133
134         firstErr error                 // first error encountered
135         methods  map[*TypeName][]*Func // maps package scope type names to associated non-blank (non-interface) methods
136         untyped  map[ast.Expr]exprInfo // map of expressions without final type
137         delayed  []action              // stack of delayed action segments; segments are processed in FIFO order
138         objPath  []Object              // path of object dependencies during type inference (for cycle reporting)
139         defTypes []*Named              // defined types created during type checking, for final validation.
140
141         // context within which the current object is type-checked
142         // (valid only for the duration of type-checking a specific object)
143         context
144
145         // debugging
146         indent int // indentation for tracing
147 }
148
149 // addDeclDep adds the dependency edge (check.decl -> to) if check.decl exists
150 func (check *Checker) addDeclDep(to Object) {
151         from := check.decl
152         if from == nil {
153                 return // not in a package-level init expression
154         }
155         if _, found := check.objMap[to]; !found {
156                 return // to is not a package-level object
157         }
158         from.addDep(to)
159 }
160
161 func (check *Checker) rememberUntyped(e ast.Expr, lhs bool, mode operandMode, typ *Basic, val constant.Value) {
162         m := check.untyped
163         if m == nil {
164                 m = make(map[ast.Expr]exprInfo)
165                 check.untyped = m
166         }
167         m[e] = exprInfo{lhs, mode, typ, val}
168 }
169
170 // later pushes f on to the stack of actions that will be processed later;
171 // either at the end of the current statement, or in case of a local constant
172 // or variable declaration, before the constant or variable is in scope
173 // (so that f still sees the scope before any new declarations).
174 // later returns the pushed action so one can provide a description
175 // via action.describef for debugging, if desired.
176 func (check *Checker) later(f func()) *action {
177         i := len(check.delayed)
178         check.delayed = append(check.delayed, action{f: f})
179         return &check.delayed[i]
180 }
181
182 // push pushes obj onto the object path and returns its index in the path.
183 func (check *Checker) push(obj Object) int {
184         check.objPath = append(check.objPath, obj)
185         return len(check.objPath) - 1
186 }
187
188 // pop pops and returns the topmost object from the object path.
189 func (check *Checker) pop() Object {
190         i := len(check.objPath) - 1
191         obj := check.objPath[i]
192         check.objPath[i] = nil
193         check.objPath = check.objPath[:i]
194         return obj
195 }
196
197 // NewChecker returns a new Checker instance for a given package.
198 // Package files may be added incrementally via checker.Files.
199 func NewChecker(conf *Config, fset *token.FileSet, pkg *Package, info *Info) *Checker {
200         // make sure we have a configuration
201         if conf == nil {
202                 conf = new(Config)
203         }
204
205         // make sure we have a context
206         if conf.Context == nil {
207                 conf.Context = NewContext()
208         }
209
210         // make sure we have an info struct
211         if info == nil {
212                 info = new(Info)
213         }
214
215         version, err := parseGoVersion(conf.GoVersion)
216         if err != nil {
217                 panic(fmt.Sprintf("invalid Go version %q (%v)", conf.GoVersion, err))
218         }
219
220         return &Checker{
221                 conf:    conf,
222                 fset:    fset,
223                 pkg:     pkg,
224                 Info:    info,
225                 version: version,
226                 objMap:  make(map[Object]*declInfo),
227                 impMap:  make(map[importKey]*Package),
228         }
229 }
230
231 // initFiles initializes the files-specific portion of checker.
232 // The provided files must all belong to the same package.
233 func (check *Checker) initFiles(files []*ast.File) {
234         // start with a clean slate (check.Files may be called multiple times)
235         check.files = nil
236         check.imports = nil
237         check.dotImportMap = nil
238
239         check.firstErr = nil
240         check.methods = nil
241         check.untyped = nil
242         check.delayed = nil
243
244         // determine package name and collect valid files
245         pkg := check.pkg
246         for _, file := range files {
247                 switch name := file.Name.Name; pkg.name {
248                 case "":
249                         if name != "_" {
250                                 pkg.name = name
251                         } else {
252                                 check.errorf(file.Name, _BlankPkgName, "invalid package name _")
253                         }
254                         fallthrough
255
256                 case name:
257                         check.files = append(check.files, file)
258
259                 default:
260                         check.errorf(atPos(file.Package), _MismatchedPkgName, "package %s; expected %s", name, pkg.name)
261                         // ignore this file
262                 }
263         }
264 }
265
266 // A bailout panic is used for early termination.
267 type bailout struct{}
268
269 func (check *Checker) handleBailout(err *error) {
270         switch p := recover().(type) {
271         case nil, bailout:
272                 // normal return or early exit
273                 *err = check.firstErr
274         default:
275                 // re-panic
276                 panic(p)
277         }
278 }
279
280 // Files checks the provided files as part of the checker's package.
281 func (check *Checker) Files(files []*ast.File) error { return check.checkFiles(files) }
282
283 var errBadCgo = errors.New("cannot use FakeImportC and go115UsesCgo together")
284
285 func (check *Checker) checkFiles(files []*ast.File) (err error) {
286         if check.conf.FakeImportC && check.conf.go115UsesCgo {
287                 return errBadCgo
288         }
289
290         defer check.handleBailout(&err)
291
292         check.initFiles(files)
293
294         check.collectObjects()
295
296         check.packageObjects()
297
298         check.processDelayed(0) // incl. all functions
299
300         check.expandDefTypes()
301
302         check.initOrder()
303
304         if !check.conf.DisableUnusedImportCheck {
305                 check.unusedImports()
306         }
307
308         check.recordUntyped()
309
310         if check.firstErr == nil {
311                 // TODO(mdempsky): Ensure monomorph is safe when errors exist.
312                 check.monomorph()
313         }
314
315         check.pkg.complete = true
316
317         // no longer needed - release memory
318         check.imports = nil
319         check.dotImportMap = nil
320         check.pkgPathMap = nil
321         check.seenPkgMap = nil
322         check.recvTParamMap = nil
323         check.defTypes = nil
324
325         // TODO(rFindley) There's more memory we should release at this point.
326
327         return
328 }
329
330 // processDelayed processes all delayed actions pushed after top.
331 func (check *Checker) processDelayed(top int) {
332         // If each delayed action pushes a new action, the
333         // stack will continue to grow during this loop.
334         // However, it is only processing functions (which
335         // are processed in a delayed fashion) that may
336         // add more actions (such as nested functions), so
337         // this is a sufficiently bounded process.
338         for i := top; i < len(check.delayed); i++ {
339                 a := &check.delayed[i]
340                 if trace && a.desc != nil {
341                         fmt.Println()
342                         check.trace(a.desc.pos.Pos(), "-- "+a.desc.format, a.desc.args...)
343                 }
344                 a.f() // may append to check.delayed
345         }
346         assert(top <= len(check.delayed)) // stack must not have shrunk
347         check.delayed = check.delayed[:top]
348 }
349
350 func (check *Checker) expandDefTypes() {
351         // Ensure that every defined type created in the course of type-checking has
352         // either non-*Named underlying, or is unresolved.
353         //
354         // This guarantees that we don't leak any types whose underlying is *Named,
355         // because any unresolved instances will lazily compute their underlying by
356         // substituting in the underlying of their origin. The origin must have
357         // either been imported or type-checked and expanded here, and in either case
358         // its underlying will be fully expanded.
359         for i := 0; i < len(check.defTypes); i++ {
360                 n := check.defTypes[i]
361                 switch n.underlying.(type) {
362                 case nil:
363                         if n.resolver == nil {
364                                 panic("nil underlying")
365                         }
366                 case *Named:
367                         n.under() // n.under may add entries to check.defTypes
368                 }
369                 n.check = nil
370         }
371 }
372
373 func (check *Checker) record(x *operand) {
374         // convert x into a user-friendly set of values
375         // TODO(gri) this code can be simplified
376         var typ Type
377         var val constant.Value
378         switch x.mode {
379         case invalid:
380                 typ = Typ[Invalid]
381         case novalue:
382                 typ = (*Tuple)(nil)
383         case constant_:
384                 typ = x.typ
385                 val = x.val
386         default:
387                 typ = x.typ
388         }
389         assert(x.expr != nil && typ != nil)
390
391         if isUntyped(typ) {
392                 // delay type and value recording until we know the type
393                 // or until the end of type checking
394                 check.rememberUntyped(x.expr, false, x.mode, typ.(*Basic), val)
395         } else {
396                 check.recordTypeAndValue(x.expr, x.mode, typ, val)
397         }
398 }
399
400 func (check *Checker) recordUntyped() {
401         if !debug && check.Types == nil {
402                 return // nothing to do
403         }
404
405         for x, info := range check.untyped {
406                 if debug && isTyped(info.typ) {
407                         check.dump("%v: %s (type %s) is typed", x.Pos(), x, info.typ)
408                         unreachable()
409                 }
410                 check.recordTypeAndValue(x, info.mode, info.typ, info.val)
411         }
412 }
413
414 func (check *Checker) recordTypeAndValue(x ast.Expr, mode operandMode, typ Type, val constant.Value) {
415         assert(x != nil)
416         assert(typ != nil)
417         if mode == invalid {
418                 return // omit
419         }
420         if mode == constant_ {
421                 assert(val != nil)
422                 // We check allBasic(typ, IsConstType) here as constant expressions may be
423                 // recorded as type parameters.
424                 assert(typ == Typ[Invalid] || allBasic(typ, IsConstType))
425         }
426         if m := check.Types; m != nil {
427                 m[x] = TypeAndValue{mode, typ, val}
428         }
429 }
430
431 func (check *Checker) recordBuiltinType(f ast.Expr, sig *Signature) {
432         // f must be a (possibly parenthesized, possibly qualified)
433         // identifier denoting a built-in (including unsafe's non-constant
434         // functions Add and Slice): record the signature for f and possible
435         // children.
436         for {
437                 check.recordTypeAndValue(f, builtin, sig, nil)
438                 switch p := f.(type) {
439                 case *ast.Ident, *ast.SelectorExpr:
440                         return // we're done
441                 case *ast.ParenExpr:
442                         f = p.X
443                 default:
444                         unreachable()
445                 }
446         }
447 }
448
449 func (check *Checker) recordCommaOkTypes(x ast.Expr, a [2]Type) {
450         assert(x != nil)
451         if a[0] == nil || a[1] == nil {
452                 return
453         }
454         assert(isTyped(a[0]) && isTyped(a[1]) && (isBoolean(a[1]) || a[1] == universeError))
455         if m := check.Types; m != nil {
456                 for {
457                         tv := m[x]
458                         assert(tv.Type != nil) // should have been recorded already
459                         pos := x.Pos()
460                         tv.Type = NewTuple(
461                                 NewVar(pos, check.pkg, "", a[0]),
462                                 NewVar(pos, check.pkg, "", a[1]),
463                         )
464                         m[x] = tv
465                         // if x is a parenthesized expression (p.X), update p.X
466                         p, _ := x.(*ast.ParenExpr)
467                         if p == nil {
468                                 break
469                         }
470                         x = p.X
471                 }
472         }
473 }
474
475 // recordInstance records instantiation information into check.Info, if the
476 // Instances map is non-nil. The given expr must be an ident, selector, or
477 // index (list) expr with ident or selector operand.
478 //
479 // TODO(rfindley): the expr parameter is fragile. See if we can access the
480 // instantiated identifier in some other way.
481 func (check *Checker) recordInstance(expr ast.Expr, targs []Type, typ Type) {
482         ident := instantiatedIdent(expr)
483         assert(ident != nil)
484         assert(typ != nil)
485         if m := check.Instances; m != nil {
486                 m[ident] = Instance{NewTypeList(targs), typ}
487         }
488 }
489
490 func instantiatedIdent(expr ast.Expr) *ast.Ident {
491         var selOrIdent ast.Expr
492         switch e := expr.(type) {
493         case *ast.IndexExpr:
494                 selOrIdent = e.X
495         case *ast.IndexListExpr:
496                 selOrIdent = e.X
497         case *ast.SelectorExpr, *ast.Ident:
498                 selOrIdent = e
499         }
500         switch x := selOrIdent.(type) {
501         case *ast.Ident:
502                 return x
503         case *ast.SelectorExpr:
504                 return x.Sel
505         }
506         panic("instantiated ident not found")
507 }
508
509 func (check *Checker) recordDef(id *ast.Ident, obj Object) {
510         assert(id != nil)
511         if m := check.Defs; m != nil {
512                 m[id] = obj
513         }
514 }
515
516 func (check *Checker) recordUse(id *ast.Ident, obj Object) {
517         assert(id != nil)
518         assert(obj != nil)
519         if m := check.Uses; m != nil {
520                 m[id] = obj
521         }
522 }
523
524 func (check *Checker) recordImplicit(node ast.Node, obj Object) {
525         assert(node != nil)
526         assert(obj != nil)
527         if m := check.Implicits; m != nil {
528                 m[node] = obj
529         }
530 }
531
532 func (check *Checker) recordSelection(x *ast.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) {
533         assert(obj != nil && (recv == nil || len(index) > 0))
534         check.recordUse(x.Sel, obj)
535         if m := check.Selections; m != nil {
536                 m[x] = &Selection{kind, recv, obj, index, indirect}
537         }
538 }
539
540 func (check *Checker) recordScope(node ast.Node, scope *Scope) {
541         assert(node != nil)
542         assert(scope != nil)
543         if m := check.Scopes; m != nil {
544                 m[node] = scope
545         }
546 }