4

我想优化一些代码,使 string.h 中的所有函数都被内联。我在 x86_64 上。

我试过 -O3, -minline-all-stringops ,当我执行“nm a.out”时,它显示它正在调用 glibc 版本。

用 gcc -S 检查,我看到了电话。

我错过了什么?string.h 中有几十个#ifdef _SOME_SETTING_,bits/string3.h 显示的是内联版本,但我不知道如何到达那里。

例如:

$ cat test.c
#include <string.h>

main() {
    char *a, *b;
    strcpy(b,a);
}
/*

When compiled with:

gcc -minline-all-stringops -O6 -I. -S -o test.S test.c

Produces:

    .file   "test.c"
    .text
    .p2align 4,,15
.globl main
    .type   main, @function
main:
.LFB12:
    .cfi_startproc
    subq    $8, %rsp
    .cfi_def_cfa_offset 16
    xorl    %esi, %esi
    xorl    %edi, %edi
    call    strcpy
    addq    $8, %rsp
    .cfi_def_cfa_offset 8
    ret
    .cfi_endproc
.LFE12:
    .size   main, .-main
    .ident  "GCC: (GNU) 4.5.1 20100924 (Red Hat 4.5.1-4)"
    .section    .note.GNU-stack,"",@progbits
*/
4

1 回答 1

1

如果函数实现不在头文件和单独的编译单元中,则不能内联,除非您有可以执行 LTCG 的编译器。

听起来您需要自己编写实现。

于 2011-03-03T23:07:43.430 回答