我已经阅读了许多关于提高C ++和C代码性能的问题。几乎所有答案的人最终都会观察编译器生成的汇编代码。
如果我想了解这种技术,那么最好的资源是什么?
答案 0 :(得分:5)
实践是您最好的老师
编写一个简单的测试文件:
#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
和linkers & loaders
以及Intel® 64 and IA-32 Architectures Software Developer’s Manual
开始。这是一本很好的参考书。