Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
		
			
				
	
	
		
			39 lines
		
	
	
		
			632 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			632 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "io.h"
 | 
						|
 | 
						|
int main(void)
 | 
						|
{
 | 
						|
    long long rd, rs, rt;
 | 
						|
    long long result;
 | 
						|
 | 
						|
    rs     = 0x11777066;
 | 
						|
    rt     = 0x55AA70FF;
 | 
						|
    result = 0x02;
 | 
						|
    __asm
 | 
						|
        ("cmpgu.eq.qb %0, %1, %2\n\t"
 | 
						|
         : "=r"(rd)
 | 
						|
         : "r"(rs), "r"(rt)
 | 
						|
        );
 | 
						|
 | 
						|
    if (rd != result) {
 | 
						|
        printf("cmpgu.eq.ph wrong\n");
 | 
						|
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
 | 
						|
    rs     = 0x11777066;
 | 
						|
    rt     = 0x11777066;
 | 
						|
    result = 0x0F;
 | 
						|
    __asm
 | 
						|
        ("cmpgu.eq.qb %0, %1, %2\n\t"
 | 
						|
         : "=r"(rd)
 | 
						|
         : "r"(rs), "r"(rt)
 | 
						|
        );
 | 
						|
    if (rd != result) {
 | 
						|
        printf("cmpgu.eq.ph wrong\n");
 | 
						|
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |