我试图理解这个简单的C程序:
int square(int num) {
return num * num;
}
汇编代码中的内容:
square(int):
push rbp ;push rbp register onto stack
mov rbp, rsp ;move contents of rbp register into rsp register
mov DWORD PTR [rbp-4], edi ;not sure what happens here
mov eax, DWORD PTR [rbp-4] ;not sure what happens here
imul eax, DWORD PTR [rbp-4] ;multiply eax and DWORD PTR [rbp-4] (?)
pop rbp ;pop original register out of stack
ret ;return
答案 0 :(得分:7)
mov DWORD PTR [rbp-4], edi ;not sure what happens here
x86_64 System V ABI通过寄存器传递函数参数 - 第一个整数参数在rdi/edi
寄存器中传递。因此,该行将参数num
复制到本地(从rbp
中存储的帧指针值偏移-4个字节)。
mov eax, DWORD PTR [rbp-4] ;not sure what happens here
这会将本地值复制到eax
寄存器。
imul eax, DWORD PTR [rbp-4] ;multiply eax and DWORD PTR [rbp-4] (?)
这将eax
中的值乘以本地值,并将结果存储到eax
(这也恰好是存储函数返回值的寄存器)。
正如其他人在评论中指出的那样,使用优化进行编译可能会消除本地,并直接从edi
写入eax
。