// Callstack displays an arbitrary path from a root of the callgraph // to the function at the current position. // // The information may be misleading in a context-insensitive // analysis. e.g. the call path X->Y->Z might be infeasible if Y never // calls Z when it is called from X. TODO(adonovan): think about UI. // // TODO(adonovan): permit user to specify a starting point other than // the analysis root. // func callstack(o *Oracle, qpos *QueryPos) (queryResult, error) { pkg := o.prog.Package(qpos.info.Pkg) if pkg == nil { return nil, fmt.Errorf("no SSA package") } if !ssa.HasEnclosingFunction(pkg, qpos.path) { return nil, fmt.Errorf("this position is not inside a function") } buildSSA(o) target := ssa.EnclosingFunction(pkg, qpos.path) if target == nil { return nil, fmt.Errorf("no SSA function built for this location (dead code?)") } // Run the pointer analysis and build the complete call graph. o.ptaConfig.BuildCallGraph = true cg := ptrAnalysis(o).CallGraph cg.DeleteSyntheticNodes() // Search for an arbitrary path from a root to the target function. isEnd := func(n *callgraph.Node) bool { return n.Func == target } callpath := callgraph.PathSearch(cg.Root, isEnd) if callpath != nil { callpath = callpath[1:] // remove synthetic edge from <root> } return &callstackResult{ qpos: qpos, target: target, callpath: callpath, }, nil }
// Callers reports the possible callers of the function // immediately enclosing the specified source location. // func callers(o *Oracle, qpos *QueryPos) (queryResult, error) { pkg := o.prog.Package(qpos.info.Pkg) if pkg == nil { return nil, fmt.Errorf("no SSA package") } if !ssa.HasEnclosingFunction(pkg, qpos.path) { return nil, fmt.Errorf("this position is not inside a function") } buildSSA(o) target := ssa.EnclosingFunction(pkg, qpos.path) if target == nil { return nil, fmt.Errorf("no SSA function built for this location (dead code?)") } // Run the pointer analysis, recording each // call found to originate from target. o.ptaConfig.BuildCallGraph = true cg := ptrAnalysis(o).CallGraph cg.DeleteSyntheticNodes() edges := cg.CreateNode(target).In // TODO(adonovan): sort + dedup calls to ensure test determinism. return &callersResult{ target: target, callgraph: cg, edges: edges, }, nil }
func TestEnclosingFunction(t *testing.T) { tests := []struct { input string // the input file substr string // first occurrence of this string denotes interval fn string // name of expected containing function }{ // We use distinctive numbers as syntactic landmarks. // Ordinary function: {`package main func f() { println(1003) }`, "100", "main.f"}, // Methods: {`package main type T int func (t T) f() { println(200) }`, "200", "(main.T).f"}, // Function literal: {`package main func f() { println(func() { print(300) }) }`, "300", "main.f$1"}, // Doubly nested {`package main func f() { println(func() { print(func() { print(350) })})}`, "350", "main.f$1$1"}, // Implicit init for package-level var initializer. {"package main; var a = 400", "400", "main.init"}, // No code for constants: {"package main; const a = 500", "500", "(none)"}, // Explicit init() {"package main; func init() { println(600) }", "600", "main.init#1"}, // Multiple explicit init functions: {`package main func init() { println("foo") } func init() { println(800) }`, "800", "main.init#2"}, // init() containing FuncLit. {`package main func init() { println(func(){print(900)}) }`, "900", "main.init#1$1"}, } for _, test := range tests { conf := loader.Config{Fset: token.NewFileSet()} f, start, end := findInterval(t, conf.Fset, test.input, test.substr) if f == nil { continue } path, exact := astutil.PathEnclosingInterval(f, start, end) if !exact { t.Errorf("EnclosingFunction(%q) not exact", test.substr) continue } conf.CreateFromFiles("main", f) iprog, err := conf.Load() if err != nil { t.Error(err) continue } prog := ssautil.CreateProgram(iprog, 0) pkg := prog.Package(iprog.Created[0].Pkg) pkg.Build() name := "(none)" fn := ssa.EnclosingFunction(pkg, path) if fn != nil { name = fn.String() } if name != test.fn { t.Errorf("EnclosingFunction(%q in %q) got %s, want %s", test.substr, test.input, name, test.fn) continue } // While we're here: test HasEnclosingFunction. if has := ssa.HasEnclosingFunction(pkg, path); has != (fn != nil) { t.Errorf("HasEnclosingFunction(%q in %q) got %v, want %v", test.substr, test.input, has, fn != nil) continue } } }
// Callstack displays an arbitrary path from a root of the callgraph // to the function at the current position. // // The information may be misleading in a context-insensitive // analysis. e.g. the call path X->Y->Z might be infeasible if Y never // calls Z when it is called from X. TODO(adonovan): think about UI. // // TODO(adonovan): permit user to specify a starting point other than // the analysis root. // func callstack(q *Query) error { fset := token.NewFileSet() lconf := loader.Config{Fset: fset, Build: q.Build} if err := setPTAScope(&lconf, q.Scope); err != nil { return err } // Load/parse/type-check the program. lprog, err := loadWithSoftErrors(&lconf) if err != nil { return err } qpos, err := parseQueryPos(lprog, q.Pos, false) if err != nil { return err } prog := ssautil.CreateProgram(lprog, 0) ptaConfig, err := setupPTA(prog, lprog, q.PTALog, q.Reflection) if err != nil { return err } pkg := prog.Package(qpos.info.Pkg) if pkg == nil { return fmt.Errorf("no SSA package") } if !ssa.HasEnclosingFunction(pkg, qpos.path) { return fmt.Errorf("this position is not inside a function") } // Defer SSA construction till after errors are reported. prog.Build() target := ssa.EnclosingFunction(pkg, qpos.path) if target == nil { return fmt.Errorf("no SSA function built for this location (dead code?)") } var callpath []*callgraph.Edge isEnd := func(n *callgraph.Node) bool { return n.Func == target } // First, build a callgraph containing only static call edges, // and search for an arbitrary path from a root to the target function. // This is quick, and the user wants a static path if one exists. cg := static.CallGraph(prog) cg.DeleteSyntheticNodes() for _, ep := range entryPoints(ptaConfig.Mains) { callpath = callgraph.PathSearch(cg.CreateNode(ep), isEnd) if callpath != nil { break } } // No fully static path found. // Run the pointer analysis and build a complete call graph. if callpath == nil { ptaConfig.BuildCallGraph = true cg := ptrAnalysis(ptaConfig).CallGraph cg.DeleteSyntheticNodes() callpath = callgraph.PathSearch(cg.Root, isEnd) if callpath != nil { callpath = callpath[1:] // remove synthetic edge from <root> } } q.Output(fset, &callstackResult{ qpos: qpos, target: target, callpath: callpath, }) return nil }
// Callstack displays an arbitrary path from a root of the callgraph // to the function at the current position. // // The information may be misleading in a context-insensitive // analysis. e.g. the call path X->Y->Z might be infeasible if Y never // calls Z when it is called from X. TODO(adonovan): think about UI. // // TODO(adonovan): permit user to specify a starting point other than // the analysis root. // func callstack(q *Query) error { fset := token.NewFileSet() lconf := loader.Config{Fset: fset, Build: q.Build} if err := setPTAScope(&lconf, q.Scope); err != nil { return err } // Load/parse/type-check the program. lprog, err := lconf.Load() if err != nil { return err } qpos, err := parseQueryPos(lprog, q.Pos, false) if err != nil { return err } prog := ssautil.CreateProgram(lprog, 0) ptaConfig, err := setupPTA(prog, lprog, q.PTALog, q.Reflection) if err != nil { return err } pkg := prog.Package(qpos.info.Pkg) if pkg == nil { return fmt.Errorf("no SSA package") } if !ssa.HasEnclosingFunction(pkg, qpos.path) { return fmt.Errorf("this position is not inside a function") } // Defer SSA construction till after errors are reported. prog.BuildAll() target := ssa.EnclosingFunction(pkg, qpos.path) if target == nil { return fmt.Errorf("no SSA function built for this location (dead code?)") } // Run the pointer analysis and build the complete call graph. ptaConfig.BuildCallGraph = true cg := ptrAnalysis(ptaConfig).CallGraph cg.DeleteSyntheticNodes() // Search for an arbitrary path from a root to the target function. isEnd := func(n *callgraph.Node) bool { return n.Func == target } callpath := callgraph.PathSearch(cg.Root, isEnd) if callpath != nil { callpath = callpath[1:] // remove synthetic edge from <root> } q.Fset = fset q.result = &callstackResult{ qpos: qpos, target: target, callpath: callpath, } return nil }
// Callers reports the possible callers of the function // immediately enclosing the specified source location. // func callers(q *Query) error { lconf := loader.Config{Build: q.Build} if err := setPTAScope(&lconf, q.Scope); err != nil { return err } // Load/parse/type-check the program. lprog, err := lconf.Load() if err != nil { return err } q.Fset = lprog.Fset qpos, err := parseQueryPos(lprog, q.Pos, false) if err != nil { return err } prog := ssautil.CreateProgram(lprog, 0) ptaConfig, err := setupPTA(prog, lprog, q.PTALog, q.Reflection) if err != nil { return err } pkg := prog.Package(qpos.info.Pkg) if pkg == nil { return fmt.Errorf("no SSA package") } if !ssa.HasEnclosingFunction(pkg, qpos.path) { return fmt.Errorf("this position is not inside a function") } // Defer SSA construction till after errors are reported. prog.Build() target := ssa.EnclosingFunction(pkg, qpos.path) if target == nil { return fmt.Errorf("no SSA function built for this location (dead code?)") } // If the function is never address-taken, all calls are direct // and can be found quickly by inspecting the whole SSA program. cg := directCallsTo(target, entryPoints(ptaConfig.Mains)) if cg == nil { // Run the pointer analysis, recording each // call found to originate from target. // (Pointer analysis may return fewer results than // directCallsTo because it ignores dead code.) ptaConfig.BuildCallGraph = true cg = ptrAnalysis(ptaConfig).CallGraph } cg.DeleteSyntheticNodes() edges := cg.CreateNode(target).In // TODO(adonovan): sort + dedup calls to ensure test determinism. q.result = &callersResult{ target: target, callgraph: cg, edges: edges, } return nil }
// Callers reports the possible callers of the function // immediately enclosing the specified source location. // func callers(q *Query) error { lconf := loader.Config{Build: q.Build} if err := setPTAScope(&lconf, q.Scope); err != nil { return err } // Load/parse/type-check the program. lprog, err := lconf.Load() if err != nil { return err } q.Fset = lprog.Fset qpos, err := parseQueryPos(lprog, q.Pos, false) if err != nil { return err } prog := ssautil.CreateProgram(lprog, 0) ptaConfig, err := setupPTA(prog, lprog, q.PTALog, q.Reflection) if err != nil { return err } pkg := prog.Package(qpos.info.Pkg) if pkg == nil { return fmt.Errorf("no SSA package") } if !ssa.HasEnclosingFunction(pkg, qpos.path) { return fmt.Errorf("this position is not inside a function") } // Defer SSA construction till after errors are reported. prog.Build() target := ssa.EnclosingFunction(pkg, qpos.path) if target == nil { return fmt.Errorf("no SSA function built for this location (dead code?)") } // TODO(adonovan): opt: if function is never address-taken, skip // the pointer analysis. Just look for direct calls. This can // be done in a single pass over the SSA. // Run the pointer analysis, recording each // call found to originate from target. ptaConfig.BuildCallGraph = true cg := ptrAnalysis(ptaConfig).CallGraph cg.DeleteSyntheticNodes() edges := cg.CreateNode(target).In // TODO(adonovan): sort + dedup calls to ensure test determinism. q.result = &callersResult{ target: target, callgraph: cg, edges: edges, } return nil }