了解Assembly中的C程序

时间:2017-07-28 13:52:50

标签: c assembly x86-64

我试图理解这个简单的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 
  1. 第3和第4行发生了什么?
  2. 为什么还必须使用两个寄存器(edi和eax)而不是rsp?
  3. DWORD PTR [rbp-4]实际发生了什么?

1 个答案:

答案 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