有时我们需要将某些代码链接到指定的代码段,此时有两种方式:
1. 使用attribute属性指定 __attribute__((section("<name>"))); 2. 使用pragma section指定 #pragma section"<name>"[<flags>] [<alignment>] #pragma section
指定代码链接到指定的段,有什么好处呢?
当我们有个这样的需求:比如做动态的解码插件,每个解码插件为一个库,比如用如下的数据结构描述它
struct Decoder{ char name[16]; uint32_t (*dec)(char const *const in_buff, uint32_t const in_buff_bytes, char *out_buff, uint32_t out_buff_bytes); }; __attribute__((used,__section__(".audio_dec"))) struct Decoder acc_dec = { .name = "acc", dec = acc_dec }
used -> 确保不会被优化掉;
__section__ -> 确保链接到指定的段
设想一下,我们将所有的解码库对象都链接到同一个段,然后初始化代码就可以通过遍历此段code,得到所有的解码插件。
从而可以做到调用插件的相关代码保持不变。
类似的例子可以参考:https://blog.csdn.net/u012308586/article/details/106251150
refs:https://gcc.gnu.org/onlinedocs/gcc-3.2/gcc/Variable-Attributes.html
标签:__,插件,section,代码段,dec,链接,buff From: https://www.cnblogs.com/zengjianrong/p/16848379.html