我的板子是c6740,编写测试程序想把两个数组对应的数相乘存到第三个数组中,主文件是:
#include <stdio.h>
int MPY_1(int *m, int *n, int *result, int count);
void main()
{
int n[10] = {1,2,3,4,5,6,7,8,9,10};
int m[10] = {11,12,13,14,15,16,17,18,19,20};
int tmp,i;
int *result;
result = (int *)malloc(10*sizeof(int));
tmp = MPY_1(m,n,result,10);
for(i=0;i<10;i++)
printf("m=%d,n=%d,result=%d,d=%d
",m,n,result,tmp);
}
/**************调用汇编函数文件****************/
.text
.global _MPY_1
_MPY_1:
.asg A4, p_m
.asg B4, p_n
.asg A6, p_result
.asg B6, B_count
.asg A1, A_m
.asg B1, B_n
.asg A3, A_loopcount
.asg A7, A_s
* ================= LOOP PROLOG ============================ *
MV .S1 B6, A_loopcount
|| MV .L1 A4,B4
|| MV .L2 A5,B5
SUB .S1 A_loopcount, 1,A_loopcount
* ===================== LOOP KERNEL ============================== *
loop:
LDW .D1 *A5++[1], A_m ;A_m = *m
|| LDW .D2 *B5++[1], B_n ;A_n = *n
MPY .M1 A_m,B_n,A_s ; A_S = m * n
NOP 1
STW .D1 A_s,*A6++[1] ; result = A_S
||[A_loopcount] B .S2 loop ; branch ,Illegal register for conditional
||[A_loopcount]SUB .S1 A_loopcount, 1,A_loopcount
* ===================== LOOP EPILOG ============================== *
B .S2 B3 ;return
MVK .S1 1,A4 ;return 1
nop 1
.end
这程序编译没通过,在||[A_loopcount] B .S2 loop 这条语句下报错Illegal register for conditional。
第一次写汇编循环,请大侠帮看下这个程序哪些地方出错了?需要怎么改才能实现所想要的功能,谢谢!
[
本帖最后由 breeze505 于 2012-4-27 14:35 编辑 ]
此帖出自
小平头技术问答
2. 对于pSrcRGB的存储方式有一定要求:像素的R G B分量存储在一个32位的数据中,且高8-bit为0。如下所示,
| 0x00 | R1 | G1 | B1 | 0x00 | R2 | G2 | B2 | ......
3. 下面说一下实现的思路,供参考(非最优code,根据实际情况改写)
1) 用两个LDW指令读取两个像素的RGB值到寄存器RGB1_reg和RGB2_reg
RGB1_reg: 0x00 | R1 | G1 | B1
RGB2_reg: 0x00 | R2 | G2 | B2
2) 用打包指令对R G B分量进行打包
需要一个寄存器保存mask
MVKL 0x00ff00ff, mask_reg
MVKH 0x00ff00ff, mask_reg; mask_reg = 0x00ff00ff,可以放在循环外,值保持不变
打包
PACKH2 RGB1_reg, RGB2_reg, R12_reg ;R12_reg = 0x00 | R1 | 0x00 | R2
PACKH4 RGB1_reg, RGB2_reg, G12_reg ;G12_reg = 0x00 | G1 | 0x00 | G2
PACKL4 RGB1_reg, RGB2_reg, B12_reg ;B12_reg = R1 | B1 | R2 | B2
AND B12_reg, mask_reg, B12_reg ;B12_reg = 0x00 | B1 | 0x00 | B2
3) 使用ADD2 SUB2 SHR2做并行16位的运算,高8-bit的0x00保证中间结果不会溢出
4) 将运算结果限定不超过255
MIN2 R12_reg, max_reg, R12_reg; max_reg的值等于mask_reg,可以复用
MIN2 G12_reg, max_reg, G12_reg
MIN2 B12_reg, max_reg, B12_reg
MAX2 R12_reg, min_reg, R12_reg; min_reg = 0
MAX2 G12_reg, min_reg, G12_reg
MAX2 B12_reg, min_reg, B12_reg
运算结果是:
R12_reg: 0x00 | R1_r | 0x00 | R2_r
B12_reg: 0x00 | B1_r | 0x00 | B2_r
G12_reg: 0x00 | G1_r | 0x00 | G2_r
5) 解包,也是用打包指令
PACKH2 R12_reg, B12_reg, dst1_reg ;dst1_reg = 0x00 | R1_r | 0x00 | B1_r
PACK2 R12_reg, B12_reg, dst2_reg ;dst2_reg = 0x00 | R2_r | 0x00 | B2_r
把G12_reg并入dst reg会比较麻烦,可以用以下方法:
需要另外一个寄存器保存mask
MVKL 0x0000ff00, mask2_reg ;
MVKH 0x0000ff00, mask2_reg; mask2_reg = 0x0000ff00,可以放在循环外,值保持不变
SHRMB G12_reg, G12_reg, tmp1_reg; tmp1_reg = G2_r | 0x00 | G1_r | 0x00
AND tmp1_reg, mask2_reg, tmp1_reg; tmp1_reg = 0x00 | 0x00 | G1_r | 0x00
SHLMB G12_reg, G12_reg, tmp2_reg; tmp2_reg = G1_r | 0x00 | G2_r | 0x00
AND tmp2_reg, mask2_reg, tmp2_reg; tmp2_reg = 0x00 | 0x00 | G2_r | 0x00
OR dst1_reg, tmp1_reg, dst1_reg; dst1_reg = 0x00 | R1_r | G1_r | B1_r ; dst1_reg是像素1的运算结果
OR dst2_reg, tmp2_reg, dst2_reg; dst2_reg = 0x00 | R2_r | G2_r | B2_r ; dst2_reg是像素2的运算结果
6) STW
[ 本帖最后由 carrotchen 于 2012-4-28 16:31 编辑 ]
一周热门 更多>