作者GNUGCC (-std=c++14)
看板ASM
标题[问题] 呼叫gets前的sub $0xc,%esp
时间Thu Jul 28 14:50:28 2016
小弟最近在练习看组语,遇到问题想来请教各位
这是source code
#include <stdlib.h>
#include <stdio.h>
void print(){
char buf[5];
gets(buf);
}
int main(){
print();
}
这是在
ubuntu 16.04 amd64
用
gcc -fno-stack-protector -m32 -O0 test.c
编译出来的结果
0804840b <print>:
804840b: 55 push %ebp
804840c: 89 e5 mov %esp,%ebp
804840e: 83 ec 18 sub $0x18,%esp <=为啥预留24 bytes
8048411: 83 ec 0c sub $0xc,%esp <=为啥要减12
8048414: 8d 45 f3 lea -0xd(%ebp),%eax
8048417: 50 push %eax
8048418: e8 c3 fe ff ff call 80482e0 <gets@plt>
804841d: 83 c4 10 add $0x10,%esp
8048420: 90 nop
8048421: c9 leave
8048422: c3 ret
我的问题有两个
(1)
我明明只宣告buf[5]的local variable
我觉得只会预留8 bytes,为甚麽gcc却帮我预留了24 bytes
(2)
为啥在呼叫gets前会出现
sub $0xc,%esp
这个指令有什麽作用?
-----------------补充--------------------
这是对照组,没有呼叫gets的版本
#include <stdlib.h>
#include <stdio.h>
void print(){
char buf[5];
}
int main(){
print();
}
080483db <print>:
80483db: 55 push %ebp
80483dc: 89 e5 mov %esp,%ebp
80483de: 83 ec 10 sub $0x10,%esp <=这边也留了16 bytes
80483e1: 90 nop
80483e2: c9 leave
80483e3: c3 ret
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 140.113.186.243
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/ASM/M.1469688630.A.A2B.html
1F:→ GNUGCC: 在C_and_CPP得到解答了 原因是gcc的stack boundary 07/28 15:53