优化器是否会根据编译时常量推导出数学表达式?

时间:2012-05-02 02:33:56

标签: c++ gcc compiler-optimization

如果我有一些依赖于输入的数学方程式可以是零或非零(模板参数,在编译时已知),优化器是否会评估方程并优化它知道将评估为0或1的表达式。

例如:

double x = y * Eval<type>::value;

如果Eval<type>::value0,则x始终为0

double x = exp(y * Eval<type>::value);

如果Eval<type>::value0,则x始终为1

优化工具能否解决这个问题并将x替换为代码中其他地方的01,或者这些计算是否会在运行时执行?

我正在使用带有-O3

的gcc 4.7

1 个答案:

答案 0 :(得分:1)

编辑:我错了,编译器在使用浮点数时按预期工作。

-03中的gcc 4.6.3肯定似乎是这样做的,只要表达式是整数相关的。

示例代码:

#include <cstdio>
inline int x(double y)
{
   if (y == 0)
      printf("Hello bob3\n");
   else
      printf("Why do I bother\n");

};

const int c = 0;

int main()
{
   int f;
   scanf("%d",&f);

   x(f * c);
}

结果汇编

    .file   "foo.cpp"
    .section    .rodata.str1.1,"aMS",@progbits,1
.LC0:
    .string "%d"
.LC1:
    .string "Hello bob3"
    .section    .text.startup,"ax",@progbits
    .p2align 4,,15
    .globl  main
    .type   main, @function
main:
.LFB13:
    .cfi_startproc
    subq    $24, %rsp
    .cfi_def_cfa_offset 32
    movl    $.LC0, %edi
    xorl    %eax, %eax
    leaq    12(%rsp), %rsi
    call    scanf
    movl    $.LC1, %edi
    call    puts
    xorl    %eax, %eax
    addq    $24, %rsp
    .cfi_def_cfa_offset 8
    ret
    .cfi_endproc
.LFE13:
    .size   main, .-main
    .ident  "GCC: (Debian 4.6.3-1) 4.6.3"
    .section    .note.GNU-stack,"",@progbits