How can I see the Assembly code for a C++ Program ?
What are the popular tools to do this ?
|
How can I see the Assembly code for a C++ Program ? What are the popular tools to do this ? |
||||
|
If you are building the program yourself, you can ask your compiler to emit assembly source. For most UNIX compilers use the If you are using the GNU assembler, compiling with
For Visual Studio, use If you have compiled binary, use Debuggers could also show disassebly. Use |
|||||
|
|
In GCC/G++, compile with Edit: If you want the output to be in Intel syntax (which is IMO, much more readable, and most assembly tutorials use it), compile with |
|||||||||||
|
|
In Visual Studio;
|
|||
|
|
|
Whatever debugger you're using should have an assembly view (VS, Borland IDE, gdb, etc). If you are not using a debugger and you merely want to see what assembly is in a program you can use a disassembler or alternatively, run the program and attach to it with a debugger and do the dump from there. See references to disassemblers for info on options. |
|||||
|
|
For gcc/g++
This will generate prog.s with some comments on variables used in every asm line:
|
|||
|
|
|
As someone else mentioned, your platform's debugger is a good starting point. For the jackhammer of all debuggers and disassemblers, take a look at IDA Pro. On Unix/Linux platforms (including Cygwin) you can use |
|||||||||
|
|
Lots of people already told how to emit assembly code with a given compiler. Another solution is to compile an object file and dump it with a tool such objdump, readelf (on Unix) or DUMPBIN(link) (on Windows). You can also dump an executable, but it will be more difficult to read the output. This has the advantage of working the same way with any compiler. |
|||
|
|
|
Most compilers have an option to output an assembly listing. E.g. with VisualStudio you can use something like:
For best readability though, most debuggers will offer a view that interleaves the disassembly with the original source, so you can compare your code with the compiler's output line by line. |
|||
|
|
|
PE Explorer Disassembler for 32-bit PE files. IDA for others. |
|||
|
|
|
In Visual Studio you can generate the assembler listing for a C++ project. Go to project properties, then to C++/Output Files and set Assembler Output setting and ASM list location to a file name. |
|||
|
|
|
If you're an Eclipse user, there's a button in the debugger that toggles the viewing of assembler code. |
|||
|
|
|
On a intel Mac OS X 10.8 (Mountain Lion) the -masm=intel directive didn't work. However, if you have XCode installed, it should have installed the tool named 'otool'
You have to provide the compiled object code as parameter. |
|||
|
|
Alt +8– jyzuz Feb 23 at 23:06