...
/GDB Disassembly Output—No Optimization
GDB Disassembly Output—No Optimization
Learn how to compile, load, and execute the GDB disassembly program without code optimization.
We'll cover the following...
Arithmetic program
Let’s rewrite our arithmetic program in way that works in both C and C++. Corresponding assembly language instructions are written in the comments:
Press + to interact
int a, b;int main(int argc, char* argv[]){// Assign a value to variable a and ba = 1; // movl $1, ab = 1; // movl $1, b// Add b and a and store in variable bb = b + a; // mov a, %eax// mov b, %edx// add %edx, %eax// mov %eax, b// Increment variable a by one++a; // mov a, %eax// add $1, %eax// mov %eax, a// Multiply a with b and store into bb = b * a; // mov b, %edx// mov a, %eax// imul %edx, %eax// mov %eax, b// results: (a) = 2 and (b) = 4// Return 0 means it executed successfullyreturn 0;}
Disassembly in no-optimization mode
It’s easier to track the progress of our program during debugging if we can recompile without optimization. The steps to initialize the GDB environment are below:
Note: You can practice all the commands in the coding playground provided at the end of the lesson.
Let’s compile and link the program in no optimization mode (default):
gcc
...