首页 > 其他 > 详细

gcc 不同平台不同宏写法 Function Multiversioning

时间:2021-09-13 18:49:40      阅读:18      评论:0      收藏:0      [点我收藏+]

https://gcc.gnu.org/onlinedocs/gcc/Function-Multiversioning.html
7.8 Function Multiversioning
使用 GNU C++ 前端,对于 x86 目标,您可以指定函数的多个版本,其中每个函数专门用于特定目标功能。在运行时,会根据执行平台的特性自动执行相应版本的函数。这是一个例子。

__attribute__ ((target ("default")))
int foo ()
{
  // The default version of foo.
  return 0;
}

__attribute__ ((target ("sse4.2")))
int foo ()
{
  // foo version for SSE4.2
  return 1;
}

__attribute__ ((target ("arch=atom")))
int foo ()
{
  // foo version for the Intel ATOM processor
  return 2;
}

__attribute__ ((target ("arch=amdfam10")))
int foo ()
{
  // foo version for the AMD Family 0x10 processors.
  return 3;
}

int main ()
{
  int (*p)() = &foo;
  assert ((*p) () == foo ());
  return 0;
}

gcc 不同平台不同宏写法 Function Multiversioning

原文:https://www.cnblogs.com/marklove/p/15257917.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!