Go的pprof web输出中的虚线/虚线是什么?

时间:2015-03-25 14:27:21

标签: go pprof

go tool pprof的网络输出中,虚线/虚线是什么?

我发现它可以代表内联函数,但没有规范参考。

1 个答案:

答案 0 :(得分:9)

虚线表示节点通过另一个节点的连接,该节点不会在最终输出中呈现。

请参阅https://github.com/google/pprof/blob/master/internal/graph/dotgraph.go#L311

if e.residual {
    attr = attr + ` style="dotted"`
}

和残留代表

  

//残余边连接通过a连接的节点   单独的节点,已从报告中删除。

https://github.com/google/pprof/blob/master/internal/graph/graph.go#L243