hello.c生成hello.s文件

废话不多说,直接上源码
hello.c文件

# include<stdio.h>
int main(){
    
    
	printf("%s\n","hello\n");
    return 0;
}

之后

>>> gcc -S hello.c
>>> cat hello.s

获得

	.file	"hello.c"
	.text
	.section	.rodata
.LC0:
	.string	"hello\n"
	.text
	.globl	main
	.type	main, @function
main:
.LFB0:
	.cfi_startproc
	endbr64
	pushq	%rbp
	.cfi_def_cfa_offset 16
	.cfi_offset 6, -16
	movq	%rsp, %rbp
	.cfi_def_cfa_register 6
	leaq	.LC0(%rip), %rdi
	call	puts@PLT
	movl	$0, %eax
	popq	%rbp
	.cfi_def_cfa 7, 8
	ret
	.cfi_endproc
.LFE0:
	.size	main, .-main
	.ident	"GCC: (Ubuntu 9.3.0-10ubuntu2) 9.3.0"
	.section	.note.GNU-stack,"",@progbits
	.section	.note.gnu.property,"a"
	.align 8
	.long	 1f - 0f
	.long	 4f - 1f
	.long	 5
0:
	.string	 "GNU"
1:
	.align 8
	.long	 0xc0000002
	.long	 3f - 2f
2:
	.long	 0x3
3:
	.align 8
4:

超…长!

猜你喜欢

转载自blog.csdn.net/u013474815/article/details/107679059