__attribute__

Posted 唯一诺

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了__attribute__相关的知识,希望对你有一定的参考价值。

__attribute__

1.__attribute__ ((attribute-list))

__attribute__关键字主要是用来在函数或数据声明中设置其属性。

给函数赋给属性的主要目的在于让编译器进行优化。

例如:函数声明中的__attribute__((noreturn)),就是告诉编译器这个函数不会返回给调用者,以便编译器在优化时去掉不必要的函数返回代码。

2. __attribute__ ((packed))

让编译器取消结构在编译过程中的优化对齐,按照实际占用字节数进行对齐,这样子两边都需要使用 __attribute__ ((packed))取消优化对齐,就不会出现对齐的错位现象。

 

#include <stdio.h>

typedef struct TEST
{
    char a;
    int b;
} test;


int main(void)
{
    printf("sizeof()=%d.\n",sizeof(test));
    return 0;
}

输出结果是:8

#include <stdio.h>

typedef struct TEST
{
    char a;
    int b;
}__attribute__((packed)) test;


int main(void)
{
    printf("sizeof()=%d.\n",sizeof(test));
    return 0;
}

输出结果:5

 

以上是关于__attribute__的主要内容,如果未能解决你的问题,请参考以下文章

__attribute__((noreturn))的用法

删除使用 __attribute__((section)) 创建的部分

GNU C __attribute__ 机制简介

iOS小技能:__attribute__的应用

__attribute__ ((warn_unused_result)) 的 Visual Studio 等效项

相当于 gcc 的 __attribute__(cleanup) 的便携式