How does one do this?
If I want to analyze how something is getting compiled, how would I get the emitted assembly code?
|
2
|
|
|
|
|
|
Use the eg. gcc -S helloworld.c This will run the preprocessor (cpp) over helloworld.c, perform the initial compilation and then stop before the assembler is run. By default this will output a file eg. gcc -S -o my_asm_output.s helloworld.c Of course this only works if you have the original source.
An alternative if you only have the resultant object file is to use eg. objdump -s --disassemble helloworld > helloworld.dump This option works best if debugging option is enabled for the object file ( Running |
|||
|
|
|
|
|
||||||||
|
|
|
This will generate the asm with the C code + line numbers interweaved to more easily see what lines generate what code.
Found in Algorithms for programmers, page 4. |
||
|
|
|
|
If what you want to see depends on the linking of the output, then objdump on the output object file/executable may also be useful in addition to the aforementioned gcc -S. Here's a very useful script by Loren Merritt that converts the default objdump syntax into the more readable nasm syntax:
I suspect this can also be used on the output of gcc -S. |
||
|
|
|
Use the -S option:
|
||
|
|
|
|
As everyone has pointed out, use the On RISC architectures in particular, the compiler will often transform the code almost beyond recognition in doing optimization. It's impressive and fascinating to look at the results! |
||
|
|
|
|
As mentioned before, look at the -S flag. It's also worth looking at the '-fdump-tree' family of flags, in particular '-fdump-tree-all', which lets you see some of gcc's intermediate forms. These can often be more readable than assembler (at least to me), and let you see how optimisation passes perform. |
||
|
|