在空栈状态下,以下代码执行完成后,esp指向哪里?()
pushl $8
movl %esp,%ebp
pushl %esp
pushl $8
addl $4 ,%esp
popl %esp
A: . 起始位置-2;
B: . 起始位置-4;
C: . 起始位置+4;
D: . 起始位置;
pushl $8
movl %esp,%ebp
pushl %esp
pushl $8
addl $4 ,%esp
popl %esp
A: . 起始位置-2;
B: . 起始位置-4;
C: . 起始位置+4;
D: . 起始位置;
举一反三
- 指令<br/>movl (%esp),%eax<br/>addl $4,%esp<br/>可以用一下列哪一个指令表示?() A: . pushl %eax; B: . popl %eax; C: . pushl %esp; D: . popl %esp
- 在空栈状态下,以下代码执行完成后,esp指向哪里?()pushl$8movl%esp,%ebppushl%esppushl$8addl$4,%esppopl%esp</p></p>
- 指令<br/>subl $4,%esp<br/>movl %eax,(%esp)<br/>可以用一下列哪一个指令表示?() A: . pushl %eax; B: . pop %eax; C: . push %esp; D: . pop %esp
- enter指令负责建立当前函数堆栈,等价于以下两条指令:<br/>pushl %ebp<br/>movl %esp,%ebp
- 在第3题中的caller函数对应的机器级代码表示如下: 1 pushl %ebp 2 movl %esp, %ebp[br][/br] 3 subl $24, %esp[br][/br] 4 movl $100, -12(%ebp)[br][/br] 5 movl $200, -8(%ebp)[br][/br] 6 movl -8(%ebp), %eax[br][/br] 7 movl %eax, 4(esp)[br][/br] 8 movl -12(%ebp), %eax[br][/br] 9 movl %eax, (%esp)[br][/br] 10 call add[br][/br] 11 movl %eax, -4(%ebp)[br][/br] 12 movl -4(%ebp), %eax[br][/br] 13 leave[br][/br] 14 ret 假定caller的调用过程是P,对于上述指令序列,以下叙述中错误的是()。 A: 第1条指令将过程P的EBP内容压入caller栈帧 B: 第2条指令使EBP内容指向caller栈帧的底部 C: 第3条指令将栈指针ESP向高地址方向移动,以生成当前栈帧 D: 从上述指令序列可以看出,caller函数没有使用被调用者保持寄存器