我试图用IAR嵌入式工作台为ARM-A7(裸机应用程序)编译libvpx库(google提供的webm解码器)。
我设法拉入了所有必需的文件,并且它进行了编译,但是有些变量的数据对齐有问题。
在库中,有一个宏数据对齐()扩展到GNUC属性对齐(n)预处理器指令。我想我设法使这个宏与IAR版本的数据对齐(pragma data alignment)一起工作,但是我得到了以下警告
“警告[Pe609]:此处不能使用此类pragma”
当我运行代码时,我的变量没有对齐!
在internet上搜索警告时,他们说不能将pragma与变量的定义一起使用,只能在创建某种类型的变量时使用!但是,对于数据对齐,在定义结构时需要这样做(GCC允许这样做,那么为什么不使用IAR?)
任何帮助都将不胜感激!
代码
宏定义:

#if (defined(__GNUC__) && __GNUC__) || defined(__SUNPRO_C)
  #define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))
#elif defined(__ICCARM__)
  #define CONCAT(a,b) a##b
  #define DECLARE_ALIGNED(n, typ, val) CONCAT(DECLARE_ALIGNED_,n) (typ,val)
  #define DECLARE_ALIGNED_1(typ, val) _Pragma("data_alignment=1") typ val
  #define DECLARE_ALIGNED_8(typ, val) _Pragma("data_alignment=8") typ val
  #define DECLARE_ALIGNED_16(typ, val) _Pragma("data_alignment=16") typ val
  #define DECLARE_ALIGNED_32(typ, val) _Pragma("data_alignment=32") typ val
  #define DECLARE_ALIGNED_256(typ, val) _Pragma("data_alignment=256") typ val
#else
  #warning No alignment directives known for this compiler.
  #define DECLARE_ALIGNED(n, typ, val) typ val
#endif

使用示例:
typedef struct VP9Decoder {
  DECLARE_ALIGNED(16, MACROBLOCKD, mb);
  DECLARE_ALIGNED(16, VP9_COMMON, common);
  int ready_for_new_data;
  int refresh_frame_flags;
  ...
} VP9Decoder;

最佳答案

我已经在我的IAR编译器(7.40.6)中直接尝试过了,它工作得很好:

#define CONCAT(a,b) a##b
#define DECLARE_ALIGNED(n, typ, val) CONCAT(DECLARE_ALIGNED_,n) (typ,val)
#define DECLARE_ALIGNED_8(typ, val) _Pragma("data_alignment=8") typ val

typedef struct
{
   int a;
   char b;
   char pad1;
   char pad3;
   char pad4;
   int c;
   char d;
} myType;

void main( void)
{
   DELCARE_ALIGNED_4( myType, data);
   // So data.a will be aligned to a 4 byte boundary
   // data.b will be aligned to four bytes
   // data.pad, pad1, pad2 are wasted space.
   // data.c will be aligned to four bytes
   // data.d will be aligned to four bytes

}

除非需要将结构按特定顺序排列,例如映射到某个对象上,否则仔细排序结构可以减小其大小。例如,我在本例中插入的填充很可能被编译器插入。顺序最好是int a, int c, char b, char d.,因为由于填充和对齐,原始结构可能有16字节长。而它只能被制造成12个。

关于c - IAR语法data_alignment无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42722565/

10-12 04:16