...
/GDB Disassembly Output—Optimization
GDB Disassembly Output—Optimization
Learn how to compile, load, and execute the GDB disassembly program with code optimization.
We'll cover the following...
Disassembly with code optimization
Source code
The source code of the arithmetic program is given below:
Press + to interact
int a, b;int main(int argc, char* argv[]){a = 1;b = 1;b = b + a;++a;b = b * a;return 0;}
The flowchart below shows the working of the source code:
Press + to interact
Compilation
We can add certain flags to optimize the code while compiling our source file. The flag -O
is used for the optimization of code and -O1
is an optimization flag that further optimizes the code size and execution time. There are other flags for optimization, such as -O2
, and -O3
, which reduce the size and execution time of the code even further. Now, let’s ...