Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
		
			
				
	
	
		
			41 lines
		
	
	
		
			741 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			741 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include<stdio.h>
 | 
						|
#include<assert.h>
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    int rd, rs, rt, dsp;
 | 
						|
    int result, resultdsp;
 | 
						|
 | 
						|
    rs = 0x8000;
 | 
						|
    rt = 0x8000;
 | 
						|
    result = 0x7FFFFFFF;
 | 
						|
    resultdsp = 1;
 | 
						|
 | 
						|
    __asm
 | 
						|
        ("muleq_s.w.phr %0, %2, %3\n\t"
 | 
						|
         "rddsp %1\n\t"
 | 
						|
         : "=r"(rd), "=r"(dsp)
 | 
						|
         : "r"(rs), "r"(rt)
 | 
						|
        );
 | 
						|
    dsp = (dsp >> 21) & 0x01;
 | 
						|
    assert(rd  == result);
 | 
						|
    assert(dsp == resultdsp);
 | 
						|
 | 
						|
    rs = 0x1234;
 | 
						|
    rt = 0x4321;
 | 
						|
    result = 0x98be968;
 | 
						|
    resultdsp = 1;
 | 
						|
 | 
						|
    __asm
 | 
						|
        ("muleq_s.w.phr %0, %2, %3\n\t"
 | 
						|
         "rddsp %1\n\t"
 | 
						|
         : "=r"(rd), "=r"(dsp)
 | 
						|
         : "r"(rs), "r"(rt)
 | 
						|
        );
 | 
						|
    dsp = (dsp >> 21) & 0x01;
 | 
						|
    assert(rd  == result);
 | 
						|
    assert(dsp == resultdsp);
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |