Binutils is constantly adding new features. While writing this post, I discovered a new option inobjdump,--visualize-jumps, that was just released in binutils 2.34. This option generates ASCII art showing the branching flow within individual functions which will be very helpful for following control...
If you are trying to do an in-depth stack usage analysis you can also use the GCC compiler flag,-fstack-usage. This will emit.sufiles alongside the.ofiles which contain information ofstack utilization for all the functions in the object file. Some tools, such aspuncover, can also analyze....