If you're looking to find sources of code bloat in your C++ code, I've used 'nm' for that. The following command will list all the symbols in your app with the biggest code and data chunks at the top:
nm --demangle --print-size --size-sort --reverse-sort | less