| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| package profile |
|
|
| import ( |
| "fmt" |
| "sort" |
| "strings" |
| ) |
|
|
| |
| type Options struct { |
| SampleValue func(s []int64) int64 |
| SampleMeanDivisor func(s []int64) int64 |
|
|
| DropNegative bool |
|
|
| KeptNodes NodeSet |
| } |
|
|
| |
| type Nodes []*Node |
|
|
| |
| |
| type Node struct { |
| |
| Info NodeInfo |
|
|
| |
| |
| |
| |
| |
| Function *Node |
|
|
| |
| |
| Flat, FlatDiv, Cum, CumDiv int64 |
|
|
| |
| |
| In, Out EdgeMap |
| } |
|
|
| |
| |
| type Graph struct { |
| Nodes Nodes |
| } |
|
|
| |
| |
| func (n *Node) FlatValue() int64 { |
| if n.FlatDiv == 0 { |
| return n.Flat |
| } |
| return n.Flat / n.FlatDiv |
| } |
|
|
| |
| |
| func (n *Node) CumValue() int64 { |
| if n.CumDiv == 0 { |
| return n.Cum |
| } |
| return n.Cum / n.CumDiv |
| } |
|
|
| |
| |
| func (n *Node) AddToEdge(to *Node, v int64, residual, inline bool) { |
| n.AddToEdgeDiv(to, 0, v, residual, inline) |
| } |
|
|
| |
| |
| func (n *Node) AddToEdgeDiv(to *Node, dv, v int64, residual, inline bool) { |
| if e := n.Out.FindTo(to); e != nil { |
| e.WeightDiv += dv |
| e.Weight += v |
| if residual { |
| e.Residual = true |
| } |
| if !inline { |
| e.Inline = false |
| } |
| return |
| } |
|
|
| info := &Edge{Src: n, Dest: to, WeightDiv: dv, Weight: v, Residual: residual, Inline: inline} |
| n.Out.Add(info) |
| to.In.Add(info) |
| } |
|
|
| |
| type NodeInfo struct { |
| Name string |
| Address uint64 |
| StartLine, Lineno int |
| } |
|
|
| |
| func (i *NodeInfo) PrintableName() string { |
| return strings.Join(i.NameComponents(), " ") |
| } |
|
|
| |
| func (i *NodeInfo) NameComponents() []string { |
| var name []string |
| if i.Address != 0 { |
| name = append(name, fmt.Sprintf("%016x", i.Address)) |
| } |
| if fun := i.Name; fun != "" { |
| name = append(name, fun) |
| } |
|
|
| switch { |
| case i.Lineno != 0: |
| |
| name = append(name, fmt.Sprintf(":%d", i.Lineno)) |
| case i.Name != "": |
| |
| default: |
| |
| name = append(name, "<unknown>") |
| } |
| return name |
| } |
|
|
| |
| |
| type NodeMap map[NodeInfo]*Node |
|
|
| |
| type NodeSet map[NodeInfo]bool |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| type NodePtrSet map[*Node]bool |
|
|
| |
| |
| |
| func (nm NodeMap) FindOrInsertNode(info NodeInfo, kept NodeSet) *Node { |
| if kept != nil { |
| if _, ok := kept[info]; !ok { |
| return nil |
| } |
| } |
|
|
| if n, ok := nm[info]; ok { |
| return n |
| } |
|
|
| n := &Node{ |
| Info: info, |
| } |
| nm[info] = n |
| if info.Address == 0 && info.Lineno == 0 { |
| |
| |
| n.Function = n |
| return n |
| } |
| |
| info.Address = 0 |
| info.Lineno = 0 |
| n.Function = nm.FindOrInsertNode(info, nil) |
| return n |
| } |
|
|
| |
| type EdgeMap []*Edge |
|
|
| func (em EdgeMap) FindTo(n *Node) *Edge { |
| for _, e := range em { |
| if e.Dest == n { |
| return e |
| } |
| } |
| return nil |
| } |
|
|
| func (em *EdgeMap) Add(e *Edge) { |
| *em = append(*em, e) |
| } |
|
|
| func (em *EdgeMap) Delete(e *Edge) { |
| for i, edge := range *em { |
| if edge == e { |
| (*em)[i] = (*em)[len(*em)-1] |
| *em = (*em)[:len(*em)-1] |
| return |
| } |
| } |
| } |
|
|
| |
| type Edge struct { |
| Src, Dest *Node |
| |
| Weight, WeightDiv int64 |
|
|
| |
| |
| Residual bool |
| |
| Inline bool |
| } |
|
|
| |
| |
| func (e *Edge) WeightValue() int64 { |
| if e.WeightDiv == 0 { |
| return e.Weight |
| } |
| return e.Weight / e.WeightDiv |
| } |
|
|
| |
| func NewGraph(prof *Profile, o *Options) *Graph { |
| nodes, locationMap := CreateNodes(prof, o) |
| seenNode := make(map[*Node]bool) |
| seenEdge := make(map[nodePair]bool) |
| for _, sample := range prof.Sample { |
| var w, dw int64 |
| w = o.SampleValue(sample.Value) |
| if o.SampleMeanDivisor != nil { |
| dw = o.SampleMeanDivisor(sample.Value) |
| } |
| if dw == 0 && w == 0 { |
| continue |
| } |
| clear(seenNode) |
| clear(seenEdge) |
| var parent *Node |
| |
| residual := false |
|
|
| |
| |
| |
| |
| |
| |
| |
| i := 1 |
| if last := len(sample.Location) - 1; last < i { |
| i = last |
| } |
| for ; i >= 0; i-- { |
| l := sample.Location[i] |
| locNodes := locationMap.get(l.ID) |
| for ni := len(locNodes) - 1; ni >= 0; ni-- { |
| n := locNodes[ni] |
| if n == nil { |
| residual = true |
| continue |
| } |
| |
| _, sawNode := seenNode[n] |
| if !sawNode { |
| seenNode[n] = true |
| n.addSample(dw, w, false) |
| } |
| |
| if (!sawNode || !seenEdge[nodePair{n, parent}]) && parent != nil && n != parent { |
| seenEdge[nodePair{n, parent}] = true |
| parent.AddToEdgeDiv(n, dw, w, residual, ni != len(locNodes)-1) |
| } |
|
|
| parent = n |
| residual = false |
| } |
| } |
| if parent != nil && !residual { |
| |
| parent.addSample(dw, w, true) |
| } |
| } |
|
|
| return selectNodesForGraph(nodes, o.DropNegative) |
| } |
|
|
| func selectNodesForGraph(nodes Nodes, dropNegative bool) *Graph { |
| |
| gNodes := make(Nodes, 0, len(nodes)) |
| for _, n := range nodes { |
| if n == nil { |
| continue |
| } |
| if n.Cum == 0 && n.Flat == 0 { |
| continue |
| } |
| if dropNegative && isNegative(n) { |
| continue |
| } |
| gNodes = append(gNodes, n) |
| } |
| return &Graph{gNodes} |
| } |
|
|
| type nodePair struct { |
| src, dest *Node |
| } |
|
|
| |
| |
| func isNegative(n *Node) bool { |
| switch { |
| case n.Flat < 0: |
| return true |
| case n.Flat == 0 && n.Cum < 0: |
| return true |
| default: |
| return false |
| } |
| } |
|
|
| type locationMap struct { |
| s []Nodes |
| m map[uint64]Nodes |
| } |
|
|
| func (l *locationMap) add(id uint64, n Nodes) { |
| if id < uint64(len(l.s)) { |
| l.s[id] = n |
| } else { |
| l.m[id] = n |
| } |
| } |
|
|
| func (l locationMap) get(id uint64) Nodes { |
| if id < uint64(len(l.s)) { |
| return l.s[id] |
| } else { |
| return l.m[id] |
| } |
| } |
|
|
| |
| |
| |
| func CreateNodes(prof *Profile, o *Options) (Nodes, locationMap) { |
| locations := locationMap{make([]Nodes, len(prof.Location)+1), make(map[uint64]Nodes)} |
| nm := make(NodeMap, len(prof.Location)) |
| for _, l := range prof.Location { |
| lines := l.Line |
| if len(lines) == 0 { |
| lines = []Line{{}} |
| } |
| nodes := make(Nodes, len(lines)) |
| for ln := range lines { |
| nodes[ln] = nm.findOrInsertLine(l, lines[ln], o) |
| } |
| locations.add(l.ID, nodes) |
| } |
| return nm.nodes(), locations |
| } |
|
|
| func (nm NodeMap) nodes() Nodes { |
| nodes := make(Nodes, 0, len(nm)) |
| for _, n := range nm { |
| nodes = append(nodes, n) |
| } |
| return nodes |
| } |
|
|
| func (nm NodeMap) findOrInsertLine(l *Location, li Line, o *Options) *Node { |
| var objfile string |
| if m := l.Mapping; m != nil && m.File != "" { |
| objfile = m.File |
| } |
|
|
| if ni := nodeInfo(l, li, objfile, o); ni != nil { |
| return nm.FindOrInsertNode(*ni, o.KeptNodes) |
| } |
| return nil |
| } |
|
|
| func nodeInfo(l *Location, line Line, objfile string, o *Options) *NodeInfo { |
| if line.Function == nil { |
| return &NodeInfo{Address: l.Address} |
| } |
| ni := &NodeInfo{ |
| Address: l.Address, |
| Lineno: int(line.Line), |
| Name: line.Function.Name, |
| } |
| ni.StartLine = int(line.Function.StartLine) |
| return ni |
| } |
|
|
| |
| func (ns Nodes) Sum() (flat int64, cum int64) { |
| for _, n := range ns { |
| flat += n.Flat |
| cum += n.Cum |
| } |
| return |
| } |
|
|
| func (n *Node) addSample(dw, w int64, flat bool) { |
| |
| if flat { |
| n.FlatDiv += dw |
| n.Flat += w |
| } else { |
| n.CumDiv += dw |
| n.Cum += w |
| } |
| } |
|
|
| |
| func (g *Graph) String() string { |
| var s []string |
|
|
| nodeIndex := make(map[*Node]int, len(g.Nodes)) |
|
|
| for i, n := range g.Nodes { |
| nodeIndex[n] = i + 1 |
| } |
|
|
| for i, n := range g.Nodes { |
| name := n.Info.PrintableName() |
| var in, out []int |
|
|
| for _, from := range n.In { |
| in = append(in, nodeIndex[from.Src]) |
| } |
| for _, to := range n.Out { |
| out = append(out, nodeIndex[to.Dest]) |
| } |
| s = append(s, fmt.Sprintf("%d: %s[flat=%d cum=%d] %x -> %v ", i+1, name, n.Flat, n.Cum, in, out)) |
| } |
| return strings.Join(s, "\n") |
| } |
|
|
| |
| |
| |
| func (em EdgeMap) Sort() []*Edge { |
| el := make(edgeList, 0, len(em)) |
| for _, w := range em { |
| el = append(el, w) |
| } |
|
|
| sort.Sort(el) |
| return el |
| } |
|
|
| |
| func (em EdgeMap) Sum() int64 { |
| var ret int64 |
| for _, edge := range em { |
| ret += edge.Weight |
| } |
| return ret |
| } |
|
|
| type edgeList []*Edge |
|
|
| func (el edgeList) Len() int { |
| return len(el) |
| } |
|
|
| func (el edgeList) Less(i, j int) bool { |
| if el[i].Weight != el[j].Weight { |
| return abs64(el[i].Weight) > abs64(el[j].Weight) |
| } |
|
|
| from1 := el[i].Src.Info.PrintableName() |
| from2 := el[j].Src.Info.PrintableName() |
| if from1 != from2 { |
| return from1 < from2 |
| } |
|
|
| to1 := el[i].Dest.Info.PrintableName() |
| to2 := el[j].Dest.Info.PrintableName() |
|
|
| return to1 < to2 |
| } |
|
|
| func (el edgeList) Swap(i, j int) { |
| el[i], el[j] = el[j], el[i] |
| } |
|
|
| func abs64(i int64) int64 { |
| if i < 0 { |
| return -i |
| } |
| return i |
| } |
|
|