向源代码报告按配置文件引导的编译



在本期中,我将重点介绍Visual Studio 2012和GCC 4.7

一方面,按配置文件引导的编译通过在运行时检测代码,然后在第二次编译期间使用此信息来优化分支预测。另一方面,许多编译器提供了扩展来提示编译器最有可能采用哪个分支:GCC 提供__builtin_expect,Visual Studio 提供__assume

有没有办法提取配置文件引导的信息(任何一个编译器),以便能够使用两个编译器扩展重写代码?目标是为愿意重新编译自己的二进制文件版本的人提供"优化"的源代码。

您可以使用

gcov 提取此信息。

编译源代码,例如:

gcc -ftest-coverage -fprofile-arcs x.c

运行可执行文件

./a.out

对源文件运行gcov -b。选项-b告诉它生成分支概率信息。

gcov -b x.c

gcov将创建文本文件x.c.gcov,其中包含所需的信息,下面是一个示例:

        -:    5:int
function foo called 1 returned 100% blocks executed 100%
        1:    6:foo (unsigned int N)
        -:    7:{
        1:    8:  int i, s = 0;
        -:    9:
    10001:   10:  for (i = 0; i < N; ++i)
branch  0 taken 99%
branch  1 taken 1% (fallthrough)
        -:   11:    {
    10000:   12:      if ((rand () % 100) < 30)
call    0 returned 100%
branch  1 taken 30% (fallthrough)
branch  2 taken 70%
     3027:   13:        s++;
        -:   14:      else
     6973:   15:        s--;
        -:   16:    }
        -:   17:
        1:   18:  return s;
        -:   19:}

相关内容

  • 没有找到相关文章

最新更新