DSP汇编中的循环问题

2019-03-26 16:36发布

  我的板子是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 编辑 ] 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
18条回答
carrotchen
2019-03-27 08:33
1. 你的代码的循环体比较少,采用指令重排只能节省一两条指令,所以优化的意义并不明显。
LDW .D1T1 *A4++[1], A_m ;A_m = *m
||LDW .D2T2 *B4++[1], B_n ;A_n = *n
NOP 5
MPY .M1X A_m,B_n,A_s ; A_S = m * n       
NOP 1
SUB .S1 A_loopcount, 1,A_loopcount ; -------> 提到MPY之前
||STW .D1 A_s,*p_result++[1] ; result = A_S
||[A_loopcount] B .S2 loop ; -------> 也提到MPY之前,并根据Delay slot重新设置LDW之后的NOP值
NOP 5

2. 乘数BYTE*m, BYTE*n,是存成8位还是16位的数?
如果是8位,m n不都是有符号数,循环次数又是4的整数倍,可以用MPYSU4, MPYU4, MPYUS4指令,需3个Delay Slot;数组必须4字节对齐,用LDW指令一次读取4个byte

如果是16位数,数组须4字节对齐,用LDW指令一次读取2个short,分别用MPY和MPYH计算低16位、高16位的乘积结果;也可以MPY2指令,需3个delay slot

3. 乘积结果是BYTE *r,这个有疑问。一般情况下8位乘8位的结果需用16位保存,16位乘16位的结果需用32位保存,否则就会溢出,除非你能很明确,乘数的值小于16 (以8位无符号数为例)。

一周热门 更多>