LoginSignup
0
0

gprof2dot

Last updated at Posted at 2023-10-01

gprof: ./test gmon.outで出力される複雑怪奇なログを概覧するときに便利

オプションを付けてコンパイル


# g++ -g -pg -o test test.cpp

# pip install gprof2dot
# gprof2dot ./test | gprof2dot.py | dot -Tpng -o output.png
# eog output.png 

gprof2dot2.png

C++の場合、クラス派生情報などで、ノードの四角形が長くなるので、それをカットする


# gprof ./test | ./gprof2dot.py -s | dot -Tpng -o output.png
# eog output.png 

gprof2dot.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0