0x004012d0 <main+0>: push %ebp
0x004012d1 <main+1>: mov %esp,%ebp
0x004012d3 <main+3>: sub $0x28,%esp
If the address is not available,can we calculate it ourselves?
I mean we only have this:
push %ebp
mov %esp,%ebp
sub $0x28,%esp
asm_size("mov esp,ebp")? – Nick Dandoulakis Mar 30 '10 at 16:15objdump -d executable-fileto see the opcodes, then you'll see the size of each instruction – jyzuz Oct 10 '10 at 0:06