在研究编译器优化时,我简单地编译了以下代码:
#include<stdio.h>
struct fraction {
int num ;
int denum ;
};
int main()
{
struct fraction pi;
pi.num = 22;
pi.denum = 7;
return 0;
}
使用
gcc test.c -o test
当我拆卸它时,我得到:
push %ebp
mov %esp,%ebp
sub $0x10,%esp
movl $0x16,-0x8(%ebp)
movl $0x7,-0x4(%ebp)
mov $0x0,%eax
leave
ret
但是,如果我应用以下优化:
gcc test.c -o test -O3
我在反汇编中得到的只是:
push %ebp
xor %eax,%eax
mov %esp,%ebp
pop %ebp
ret
如果没有优化,值 22 和 7 在反汇编中清晰可见,我可以清楚地理解代码是如何工作的,但是优化后这些值现在在哪里?代码现在如何工作?请有人解释。