Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
		
			
				
	
	
		
			32 lines
		
	
	
		
			511 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			511 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include<stdio.h>
 | 
						|
#include<assert.h>
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    int rd, rs, rt;
 | 
						|
    int result;
 | 
						|
 | 
						|
    rs     = 0x11777066;
 | 
						|
    rt     = 0x55AA70FF;
 | 
						|
    result = 0x0F;
 | 
						|
    __asm
 | 
						|
        ("cmpgu.le.qb %0, %1, %2\n\t"
 | 
						|
         : "=r"(rd)
 | 
						|
         : "r"(rs), "r"(rt)
 | 
						|
        );
 | 
						|
 | 
						|
    assert(rd == result);
 | 
						|
 | 
						|
    rs     = 0x11777066;
 | 
						|
    rt     = 0x11766066;
 | 
						|
    result = 0x09;
 | 
						|
    __asm
 | 
						|
        ("cmpgu.le.qb %0, %1, %2\n\t"
 | 
						|
         : "=r"(rd)
 | 
						|
         : "r"(rs), "r"(rt)
 | 
						|
        );
 | 
						|
    assert(rd == result);
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |