2

我已经阅读了很多关于提高 C++ 和 C 代码性能的问题。人们几乎所有的答案都以观察编译器生成的汇编代码而告终。

如果我想了解这种技术,最好的资源是什么?

4

1 回答 1

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 languageand开始linkers & loaders,and also开始Intel® 64 and IA-32 Architectures Software Developer’s Manual。这是一本很棒的参考书。

于 2012-06-28T05:44:57.713 回答