Linux内核中的likely与unlikely

栏目: 服务器 · Linux · 发布时间: 6年前

内容简介:likely() 和 unlikely()两个宏定义在linux-2.6.24/include/linux/compiler.h (别的版本没看过)__builtin_expect是gcc中提供的一个预处理命令,用于代码优化。gcc(version 4.4.0)具体定义如下:long __builtin_expect (long exp, long c) [Built-in Function]

likely() 和 unlikely()两个宏定义在linux-2.6.24/include/linux/compiler.h (别的版本没看过)

  1. # define likely ( x )    __builtin_expect ( ! ! ( x ) , 1 )
  2. # define unlikely ( x ) __builtin_expect ( ! ! ( x ) , 0 )

__builtin_expect是gcc中提供的一个预处理命令,用于代码优化。gcc(version 4.4.0)具体定义如下:

long __builtin_expect (long exp, long c) [Built-in Function]

注解为:

You may use __builtin_expect to provide the compiler with branch prediction information. In general, you should prefer to use actual profile feedback for this (‘-fprofile-arcs’), as programmers are notoriously bad at predicting how their programs actually perform. However, there are applications in which this data is hard to collect.The return value is the value of exp, which should be an integral expression. The semantics of the built-in are that it is expected that exp == c.

#define likely(x) __builtin_expect(!!(x), 1)

说明 x==1 是“很可能发生的”。这里的!!(x)是用来获取布尔值的。x若是6, !(x)为0  !!(x)就为1

使用likely(),执行if后面语句的可能性大些,编译器将if{}是的内容编译到前面,

使用unlikely(),执行else后面语句的可能性大些,编译器将else{}里的内容编译到前面。

这样有利于cpu预取,提高预取指令的正确率,因而可提高效率。likely与unlikely互换或不用都不会影响程序的正确性。但可能会影响程序的效率。

内核代码举例:文件 linux-2.6.24/drivers/ata/libata-core.c

  1. if ( unlikely ( ata_rwcmd_protocol ( tf , dev ) < 0 ) )
  2.              return - EINVAL ;

以上所述就是小编给大家介绍的《Linux内核中的likely与unlikely》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

TensorFlow实战

TensorFlow实战

黄文坚、唐源 / 电子工业出版社 / 2017-2-1 / 79

Google近日发布了TensorFlow 1.0候选版,这个稳定版将是深度学习框架发展中的里程碑的一步。自TensorFlow于2015年底正式开源,距今已有一年多,这期间TensorFlow不断给人以惊喜,推出了分布式版本,服务框架TensorFlow Serving,可视化工具TensorFlow,上层封装TF.Learn,其他语言(Go、Java、Rust、Haskell)的绑定、Wind......一起来看看 《TensorFlow实战》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具