1.写一个最简单的C程序
test.c-----------------------------------
#include<stdio.h>
int main(){
printf("Hello assembly!/n");
return 0;
}
然后编译它,不要进行汇编。
$gcc -S test.c
生成文件test.s,然后使用vim打开之,内容如下:
test.s-----------------------------------------------------
.file "test.c"
.section .rodata
.LC0:
.string "Hello,assembly!"
.text
.globl main
.type main, @function
main:
pushl %ebp
movl %esp, %ebp
andl $-16, %esp
subl $16, %esp
movl $.LC0, (%esp)
call puts
movl $0, %eax
leave
ret
.size main, .-main
.ident "GCC: (Ubuntu 4.4.1-4ubuntu8) 4.4.1"
.section .note.GNU-stack,"",@progbits
奇怪的是:为什么有助记符andl?还有,为什么会调用puts而不是printf呢?
修改test.c为
test.c-----------------------------------
#include<stdio.h>
int main(){
printf(“%s","Hello assembly!/n");
return 0;
}
然后编译成汇编语言
$gcc -S test.c
发现生成的汇编语言和刚才的是一样的,但是命名puts函数不能使用格式化输出,但是为什么会调用puts呢?显然是gcc做的优化。gcc使用的汇编器是gas,命令叫做as,可以使用它单独编译test.c生成test.s。将上面的test.s中的call puts修改为call printf,然后执行编译
$gcc -o test test.s
$./test
程序的执行结果会发现,输出没有换行!而使用puts时输出是换行的,因为puts会在字符串后面加上一个'/n'符。