linux perf: how to interpret and find hotspots
With Linux 3.7 perf is finally able to use DWARF information to generate the callgraph: perf record –call-graph dwarf — yourapp perf report -g graph –no-children Neat, but the curses GUI is horrible compared to VTune, KCacheGrind or similar… I recommend to try out FlameGraphs instead, which is a pretty neat visualization: http://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html Note: In … Read more