开发者

Using GCC to find unreachable functions ("dead code")

开发者 https://www.devze.com 2023-01-25 03:24 出处:网络
I was looking for a way of finding statically unreachable functions in a (very) big C++ project. I had tried using doxygen开发者_如何学运维 and other static analysis tools suggested here but it seemed

I was looking for a way of finding statically unreachable functions in a (very) big C++ project. I had tried using doxygen开发者_如何学运维 and other static analysis tools suggested here but it seemed that the project is too complicated for them to handle. Finally i decided that using GCC tools (g++, gprof, gcov, etc.) is the safest option, although I couldn't figure out how to do it.

I think the g++ optimizations eliminate statically unreachable functions but I'm not sure how to get the names of the functions it eliminates.

Do you have any suggestions?


Dead code optimization is typically done by the linker - the compiler doesn't have the overview. However, the compiler might have eliminated unused static functions (as they have internal linkage).

Therefore, you shouldn't be looking at GCC options, but at ld options. It seems you want --print-gc-sections. However, note that you probably want GCC to put each function in its own section, -ffunction-sections. By default GCC will put all functions in the same section, and ld isn't smart enough to eliminate unused functions - it can only eliminate unused sections.


gcov is what you're looking for. You have that listed in the question, have you not looked at it?

0

精彩评论

暂无评论...
验证码 换一张
取 消