我已经阅读了很多关于提高 C++ 和 C 代码性能的问题。人们几乎所有的答案都以观察编译器生成的汇编代码而告终。
如果我想了解这种技术,最好的资源是什么?
我已经阅读了很多关于提高 C++ 和 C 代码性能的问题。人们几乎所有的答案都以观察编译器生成的汇编代码而告终。
如果我想了解这种技术,最好的资源是什么?
实践是你最好的老师
编写一个简单的测试文件:
#include <stdio.h>
int main() {
printf("Hello %s !\n", "world");
}
然后gcc -S test.cpp
会给你生成的汇编代码test.s
。-Ox
如果你想添加。
.file "test.cpp"
.section .rodata
.LC0:
.string "world"
.LC1:
.string "Hello %s !\n"
.text
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movl $.LC0, %esi
movl $.LC1, %edi
movl $0, %eax
call printf
movl $0, %eax
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE0:
.size main, .-main
.ident "GCC: (Debian 4.7.0-13) 4.7.0"
.section .note.GNU-stack,"",@progbits
如果你理解汇编语言有困难,你最好从GNU assembly language
and开始linkers & loaders
,and also开始Intel® 64 and IA-32 Architectures Software Developer’s Manual
。这是一本很棒的参考书。