由于BF561内部带有两个16位的MAC,因此它将可以在一个周期内进行两个fract16类型的运算。
为适应这种特性,vdsp引入了一个称之为fract2x16的类型。它其实是定义为一个int类型的整数,但是其实际意义却是要用高低16位分别来表示两个fract16类型。
typedef int _raw32;
typedef _raw32 raw2x16;
typedef raw2x16 fract2x16;
要查看fract2x16类型的值还是只能通过data register窗口,手动将类型改为fract16,这样在寄存器的高16位和低16位就能分别看见这两个值了。
使用compose_fr2x16函数可以构造一个fr2x16数据:
The notation used to represent two fract16 values packed into a fract2x16 is {a,b}, where “a” is the fract16 packed into the high half, and “b” is the fract16 packed into the low half.
fract2x16 compose_fr2x16(fract16 f1, fract16 f2)
Takes two fract16 values, and returns a fract2x16 value.
直接看看它在头文件的定义:
/* Takes two fract16 values, and returns a fract2x16 value.
* Input: two fract16 values
* Returns: {_x,_y} */
#pragma inline
#pragma always_inline
static fract2x16 compose_fr2x16(fract16 _x, fract16 _y) {
return compose_2x16(_x,_y);
}
/* Composes a packed integer from two short inputs.
*/
#pragma inline
#pragma always_inline
static int compose_2x16(short __a, short __b) {
int __rval = __builtin_compose_2x16(__a, __b);
return __rval;
}