Reconstructing C/C++ Code
Learn how to reconstruct a code in C/C++ language with the help of the GDB disassembly output in non-optimization mode.
Reconstructing mixed assembly / pseudocode code
Let’s reconstruct the line-by-line pseudocode, shown as comments against the assembly language code.
Press + to interact
lea 0x2ef9(%rip), %rax # 0x555555558030 <a># address a -> raxmov %rax, 0x2efa(%rip) # 0x555555558038 <pa># rax -> (pa)lea 0x2eef(%rip), %rax # 0x555555558034 <b># address b -> raxmov %rax, 0x2ef4(%rip) # 0x555555558040 <pb># rax -> (pb)
This code calculates the effective address of a
, which it stores in register %rax
. It then assigns the %rax
register value to the integer pointer pa
. We do the same process for b
and store the %rax
register value to the integer pointer pb
.
Press + to interact
mov 0x2ee5(%rip), %rax # 0x555555558038 <pa># (pa) -> raxmovl $0x1, (%rax)# 1 -> (rax)mov 0x2ee0(%rip), %rax # 0x555555558040 <pb># (pb) -> raxmovl $0x1, (%rax)# 1 -> (rax)
The code snippet above assigns 1
to the indirect ...