摘要: #define fastpath(x) (__builtin_expect(bool(x), 1)) #define slowpath(x) (__builtin_expect(bool(x), 0)) /** 这个指令是gcc引入的,作用是允许程序员将最有可能执行的分支告诉编译器。这个指令的写法为 阅读全文
posted @ 2020-11-13 23:23 vkkkkkkkkkk 阅读(108) 评论(0) 推荐(0) 编辑