2013-05-28 13:28:46 -06:00
|
|
|
package ssa
|
|
|
|
|
|
|
|
// This file defines utilities for working with source positions.
|
|
|
|
|
|
|
|
// TODO(adonovan): move this and source_ast.go to a new subpackage
|
|
|
|
// since neither depends on SSA internals.
|
|
|
|
|
|
|
|
import (
|
2013-05-31 14:14:13 -06:00
|
|
|
"code.google.com/p/go.tools/importer"
|
2013-05-28 13:28:46 -06:00
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TODO(adonovan): make this a method: func (*token.File) Contains(token.Pos)
|
|
|
|
func tokenFileContainsPos(f *token.File, pos token.Pos) bool {
|
|
|
|
p := int(pos)
|
|
|
|
base := f.Base()
|
|
|
|
return base <= p && p < base+f.Size()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PathEnclosingInterval returns the Package and ast.Node that
|
|
|
|
// contain source interval [start, end), and all the node's ancestors
|
|
|
|
// up to the AST root. It searches all files of all packages in the
|
|
|
|
// program prog. exact is defined as for standalone
|
|
|
|
// PathEnclosingInterval.
|
|
|
|
//
|
2013-05-31 14:14:13 -06:00
|
|
|
// imp provides ASTs for the program's packages.
|
|
|
|
//
|
2013-06-13 12:43:35 -06:00
|
|
|
// pkg may be nil if no SSA package has yet been created for the found
|
|
|
|
// package. Call prog.CreatePackages(imp) to avoid this.
|
|
|
|
//
|
2013-05-28 13:28:46 -06:00
|
|
|
// The result is (nil, nil, false) if not found.
|
|
|
|
//
|
2013-05-31 14:14:13 -06:00
|
|
|
func (prog *Program) PathEnclosingInterval(imp *importer.Importer, start, end token.Pos) (pkg *Package, path []ast.Node, exact bool) {
|
2013-06-13 12:43:35 -06:00
|
|
|
for importPath, info := range imp.Packages {
|
2013-05-31 14:14:13 -06:00
|
|
|
for _, f := range info.Files {
|
2013-07-01 13:24:50 -06:00
|
|
|
if !tokenFileContainsPos(prog.Fset.File(f.Package), start) {
|
2013-05-28 13:28:46 -06:00
|
|
|
continue
|
|
|
|
}
|
2013-05-31 14:14:13 -06:00
|
|
|
if path, exact := PathEnclosingInterval(f, start, end); path != nil {
|
2013-07-01 13:24:50 -06:00
|
|
|
return prog.PackagesByPath[importPath], path, exact
|
2013-05-28 13:28:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// EnclosingFunction returns the function that contains the syntax
|
|
|
|
// node denoted by path.
|
|
|
|
//
|
|
|
|
// Syntax associated with package-level variable specifications is
|
|
|
|
// enclosed by the package's init() function.
|
|
|
|
//
|
|
|
|
// Returns nil if not found; reasons might include:
|
|
|
|
// - the node is not enclosed by any function.
|
|
|
|
// - the node is within an anonymous function (FuncLit) and
|
|
|
|
// its SSA function has not been created yet (pkg.BuildPackage()
|
|
|
|
// has not yet been called).
|
|
|
|
//
|
|
|
|
func EnclosingFunction(pkg *Package, path []ast.Node) *Function {
|
|
|
|
// Start with package-level function...
|
|
|
|
fn := findEnclosingPackageLevelFunction(pkg, path)
|
|
|
|
if fn == nil {
|
|
|
|
return nil // not in any function
|
|
|
|
}
|
|
|
|
|
|
|
|
// ...then walk down the nested anonymous functions.
|
|
|
|
n := len(path)
|
|
|
|
outer:
|
|
|
|
for i := range path {
|
|
|
|
if lit, ok := path[n-1-i].(*ast.FuncLit); ok {
|
|
|
|
for _, anon := range fn.AnonFuncs {
|
|
|
|
if anon.Pos() == lit.Type.Func {
|
|
|
|
fn = anon
|
|
|
|
continue outer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// SSA function not found:
|
|
|
|
// - package not yet built, or maybe
|
|
|
|
// - builder skipped FuncLit in dead block
|
|
|
|
// (in principle; but currently the Builder
|
|
|
|
// generates even dead FuncLits).
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fn
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasEnclosingFunction returns true if the AST node denoted by path
|
|
|
|
// is contained within the declaration of some function or
|
|
|
|
// package-level variable.
|
|
|
|
//
|
|
|
|
// Unlike EnclosingFunction, the behaviour of this function does not
|
|
|
|
// depend on whether SSA code for pkg has been built, so it can be
|
|
|
|
// used to quickly reject check inputs that will cause
|
|
|
|
// EnclosingFunction to fail, prior to SSA building.
|
|
|
|
//
|
|
|
|
func HasEnclosingFunction(pkg *Package, path []ast.Node) bool {
|
|
|
|
return findEnclosingPackageLevelFunction(pkg, path) != nil
|
|
|
|
}
|
|
|
|
|
2013-06-24 12:15:13 -06:00
|
|
|
// findEnclosingPackageLevelFunction returns the Function
|
2013-05-28 13:28:46 -06:00
|
|
|
// corresponding to the package-level function enclosing path.
|
|
|
|
//
|
|
|
|
func findEnclosingPackageLevelFunction(pkg *Package, path []ast.Node) *Function {
|
|
|
|
if n := len(path); n >= 2 { // [... {Gen,Func}Decl File]
|
|
|
|
switch decl := path[n-2].(type) {
|
|
|
|
case *ast.GenDecl:
|
|
|
|
if decl.Tok == token.VAR && n >= 3 {
|
|
|
|
// Package-level 'var' initializer.
|
2013-07-10 16:37:52 -06:00
|
|
|
return pkg.init
|
2013-05-28 13:28:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
case *ast.FuncDecl:
|
|
|
|
if decl.Recv == nil && decl.Name.Name == "init" {
|
|
|
|
// Explicit init() function.
|
2013-07-10 16:37:52 -06:00
|
|
|
return pkg.init
|
2013-05-28 13:28:46 -06:00
|
|
|
}
|
|
|
|
// Declared function/method.
|
|
|
|
return findNamedFunc(pkg, decl.Name.NamePos)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil // not in any function
|
|
|
|
}
|
|
|
|
|
|
|
|
// findNamedFunc returns the named function whose FuncDecl.Ident is at
|
|
|
|
// position pos.
|
|
|
|
//
|
|
|
|
func findNamedFunc(pkg *Package, pos token.Pos) *Function {
|
|
|
|
// Look at all package members and method sets of named types.
|
|
|
|
// Not very efficient.
|
|
|
|
for _, mem := range pkg.Members {
|
|
|
|
switch mem := mem.(type) {
|
|
|
|
case *Function:
|
|
|
|
if mem.Pos() == pos {
|
|
|
|
return mem
|
|
|
|
}
|
|
|
|
case *Type:
|
2013-06-13 12:43:35 -06:00
|
|
|
for _, meth := range pkg.Prog.MethodSet(mem.Type()) {
|
2013-07-03 15:57:20 -06:00
|
|
|
if meth.Synthetic == "" && meth.Pos() == pos {
|
2013-06-13 12:43:35 -06:00
|
|
|
return meth
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, meth := range pkg.Prog.MethodSet(pointer(mem.Type())) {
|
2013-07-03 15:57:20 -06:00
|
|
|
if meth.Synthetic == "" && meth.Pos() == pos {
|
2013-05-28 13:28:46 -06:00
|
|
|
return meth
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-06-13 12:43:35 -06:00
|
|
|
|
|
|
|
// CanonicalPos returns the canonical position of the AST node n,
|
|
|
|
//
|
|
|
|
// For each Node kind that may generate an SSA Value or Instruction,
|
|
|
|
// exactly one token within it is designated as "canonical". The
|
|
|
|
// position of that token is returned by {Value,Instruction}.Pos().
|
|
|
|
// The specifications of those methods determine the implementation of
|
|
|
|
// this function.
|
|
|
|
//
|
|
|
|
// TODO(adonovan): test coverage.
|
|
|
|
//
|
|
|
|
func CanonicalPos(n ast.Node) token.Pos {
|
|
|
|
// Comments show the Value/Instruction kinds v that may be
|
|
|
|
// created by n such that CanonicalPos(n) == v.Pos().
|
|
|
|
switch n := n.(type) {
|
|
|
|
case *ast.ParenExpr:
|
|
|
|
return CanonicalPos(n.X)
|
|
|
|
|
|
|
|
case *ast.CallExpr:
|
2013-07-08 16:02:50 -06:00
|
|
|
// f(x): *Call, *Go, *Defer, *Literal (e.g. len)
|
|
|
|
// T(x): *ChangeType, *Convert, *MakeInterface, *ChangeInterface, *Literal.
|
2013-06-13 12:43:35 -06:00
|
|
|
// make(): *MakeMap, *MakeChan, *MakeSlice.
|
|
|
|
// new(): *Alloc.
|
|
|
|
// panic(): *Panic.
|
|
|
|
return n.Lparen
|
|
|
|
|
2013-07-08 16:02:50 -06:00
|
|
|
case *ast.BasicLit:
|
|
|
|
return n.ValuePos // *Literal
|
|
|
|
|
2013-06-13 12:43:35 -06:00
|
|
|
case *ast.Ident:
|
2013-07-08 16:02:50 -06:00
|
|
|
return n.NamePos // *Parameter, *Alloc, *Capture, *Literal
|
2013-06-13 12:43:35 -06:00
|
|
|
|
|
|
|
case *ast.TypeAssertExpr:
|
|
|
|
return n.Lparen // *ChangeInterface or *TypeAssertExpr
|
|
|
|
|
|
|
|
case *ast.SelectorExpr:
|
2013-07-08 16:02:50 -06:00
|
|
|
return n.Sel.NamePos // *MakeClosure, *Field, *FieldAddr, *Literal
|
2013-06-13 12:43:35 -06:00
|
|
|
|
|
|
|
case *ast.FuncLit:
|
|
|
|
return n.Type.Func // *Function or *MakeClosure
|
|
|
|
|
|
|
|
case *ast.CompositeLit:
|
|
|
|
return n.Lbrace // *Alloc or *Slice
|
|
|
|
|
|
|
|
case *ast.BinaryExpr:
|
2013-07-08 16:02:50 -06:00
|
|
|
return n.OpPos // *Phi, *BinOp or *Literal
|
2013-06-13 12:43:35 -06:00
|
|
|
|
|
|
|
case *ast.UnaryExpr:
|
2013-07-08 16:02:50 -06:00
|
|
|
return n.OpPos // *Phi, *UnOp, or *Literal
|
2013-06-13 12:43:35 -06:00
|
|
|
|
|
|
|
case *ast.IndexExpr:
|
|
|
|
return n.Lbrack // *Index or *IndexAddr
|
|
|
|
|
|
|
|
case *ast.SliceExpr:
|
|
|
|
return n.Lbrack // *Slice
|
|
|
|
|
|
|
|
case *ast.SelectStmt:
|
|
|
|
return n.Select // *Select
|
|
|
|
|
|
|
|
case *ast.RangeStmt:
|
|
|
|
return n.For // *Range
|
|
|
|
|
|
|
|
case *ast.ReturnStmt:
|
|
|
|
return n.Return // *Ret
|
|
|
|
|
|
|
|
case *ast.SendStmt:
|
|
|
|
return n.Arrow // *Send
|
|
|
|
|
|
|
|
case *ast.StarExpr:
|
|
|
|
return n.Star // *Store
|
|
|
|
|
|
|
|
case *ast.KeyValueExpr:
|
|
|
|
return n.Colon // *MapUpdate
|
|
|
|
}
|
|
|
|
|
2013-07-08 16:02:50 -06:00
|
|
|
return token.NoPos
|
2013-06-13 12:43:35 -06:00
|
|
|
}
|