Question: for the following assembly dump, draw and explain activation record at each line of teh code. also show contents of registers like eax, ebx, esp,
for the following assembly dump, draw and explain activation record at each line of teh code. also show contents of registers like eax, ebx, esp, ebp, etc.
dump of assembler code for function add:
0x080483b4 <+0>: push %ebp
0x080483b5 <+1>: mov %esp, %ebp
0x080483b7 <+3>: mov 0xc(%ebp), %eax
0x080483ba <+6>: mov 0x8(%ebp), %edx
0x080483bd <+9>: add %edx,, %eax
0x080483bf <+11>: pop %eax
0x080483c0 <+12>: ret
end of assembler dump
dump of assembler code for function main:
0x080483c1 <+0>: push %ebp
0x080483c2 <+1>: mov %esp, %ebp
0x080483c4 <+3>: sub $0x18, %esp
0x080483c7 <+6>: movl $0x2, 0x4(%esp)
0x080483cf <+14>: movl $0x1, (%esp)
0x080483d6 <+21>: call 0x80483b4
0x080483db <+26>: mov %eax, -0x4(%ebp)
0x080483de <+29>:leave
0x080483df <+30>:ret
end of assembler dump.
PLEASE INCLUDE ALL THE STEPS AND EXPLAIN THEM WITH NECESSARY DETAILS AND ALSO PLEASE SHOW THE DIAGRAM OF ACTIVATION RECORD AT EACH LINE of CODE AND SHOW CONTENTS OF THE REGISTERS like eax, ebx, esp, ebp,
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
