由於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;
}
所以咱直接使用__builtin_compose_2x16得了。
result = __builtin_compose_2x16(0x7fff, 0x8000);
這行語句生成匯編就成了:
R0 = -32768 /* 2147450880 */;
R0.H = 32767 /* 2147450880 */;
[FP + 16] = R0;
從中可以很清楚看出組合的過程。
要從fr2x16得到高半部分可以用這個調用:
/* Takes a fract2x16 and returns the 'high half' fract16.
* Input: _x{a,b}
* Returns: a.
*/
#pragma inline
#pragma always_inline
static fract16 high_of_fr2x16(fract2x16 _x) {
return high_of_2x16(_x);
}
#pragma inline
#pragma always_inline
static _raw16 high_of_2x16(raw2x16 _x) {
return __builtin_extract_hi(_x);
}
取低半部分可以用下面的函數:
/* Takes a fract2x16 and returns the 'low half' fract16
* Input: _x{a,b}
* Returns: b
*/
#pragma inline
#pragma always_inline
static fract16 low_of_fr2x16(fract2x16 _x) {
return low_of_2x16(_x);
}
#pragma inline
#pragma always_inline
static _raw16 low_of_2x16(raw2x16 _x) {
return __builtin_extract_lo(_x);
}