Breakpoint 2 at 0x8048342: file testprog5.c, line 5.
(gdb) disass TestFunc
Dump of assembler code for function TestFunc:
0x08048334 <TestFunc+0>: push %ebp ;push the previous stack frame pointer onto the stack, [ebp+0]
0x08048335 <TestFunc+1>: mov %esp, %ebp ;copy the ebp into esp, now the ebp and esp are pointing at the same address, creating new stack frame [ebp+0]
0x08048337 <TestFunc+3>: push %edi ;save/push edi register, [ebp-4]
0x08048338 <TestFunc+4>: push %esi ;save/push esi register, [ebp-8]
0x08048339 <TestFunc+5>: sub $0x20, %esp ;subtract esp by 32 bytes for local variable and buffer if any, go to [ebp-40]
0x0804833c <TestFunc+8>: mov 0x10(%ebp), %eax ;move by pointer, [ebp+16] into the eax,[ebp+16]à ‘A’?
0x0804833f <TestFunc+11>: mov %al, 0xfffffff7(%ebp) ;move by pointer, byte of al into [ebp-9] 0x08048342 <TestFunc+14>: movl $0x3, 0xfffffff0(%ebp) ;move by pointer, 3 into [ebp-16] 0x08048349 <TestFunc+21>: movl $0x4, 0xffffffec(%ebp) ;move by pointer, 4 into [ebp-20]
0x08048350 <TestFunc+28>: lea 0xffffffd8(%ebp), %edi ;load address [ebp-40] into edi
0x08048353 <TestFunc+31>: mov $0x8048484, %esi ;move string into esi
0x08048358 <TestFunc+36>: cld ;clear direction flag
0x08048359 <TestFunc+37>: mov $0x7, %ecx ;move 7 into ecx as counter for the array
0x0804835e <TestFunc+42>: repz movsb %ds:(%esi), %es:(%edi) ;start copy by pointer from esi to edi register
0x08048360 <TestFunc+44>: mov $0x0, %eax ;move return value into eax, 0 in this case, no return value
0x08048365 <TestFunc+49>: add $0x20, %esp ;add 32 bytes to esp, back to [ebp-8]
0x08048368 <TestFunc+52>: pop %esi ;restore the esi, [ebp-4]
0x08048369 <TestFunc+53>: pop %edi ;restore the edi, [ebp+0]
0x0804836a <TestFunc+54>: leave ;restoring the ebp to the previous stack frame, [ebp+4]
0x0804836b <TestFunc+55>: ret ;transfer control back to calling function using the saved return address at [ebp+8]
push ebp ; Save ebp, the previous frame mov ebp, esp ; Set the new stack frame pointer sub esp, localbytes ; Allocate space for locals push <registers> ; Optionally, save registers if any
e.g.
00411A30 push ebp ; Save ebp
00411A31 mov ebp, esp ; Set the new stack frame pointer
00411A33 sub esp, 0C0h ; Allocate space for locals
00411A39 push ebx ; optionally, save register if any
push %ebp ; Save ebp mov %ebp, %esp ; Set stack frame pointer push <registers> ; optionally, save registers if any sub localbytes, %esp ; Allocate space for locals
e.g.
push %ebp ;push the previous stack frame pointer onto the stack, [ebp+0]
mov %esp, %ebp ;copy the ebp into esp, now the ebp and esp are pointing at the same address, creating new stack frame [ebp+0]
push %edi ;save/push edi register, [ebp-4]
push %esi ;save/push esi register, [ebp-8]
sub $0x20, %esp ;subtracts esp by 32 bytes for local variable and buffer if any, go to [ebp-40]
在我们的程序示例中,看起来 ESI 和 EDI 寄存器的内容已被保留,这意味着 TestFunc() 将使用这些寄存器。 这就是为什么这些寄存器被压入堆栈的原因。
1 2 3
0x08048337 <TestFunc+3>: push %edi ;save/push edi register, [ebp-4]
0x08048338 <TestFunc+4>: push %esi ;save/push esi register, [ebp-8]