 da1a4cef9e
			
		
	
	
		da1a4cef9e
		
	
	
	
	
		
			
			Helper function for dpa_w_ph, dpax_w_ph, dps_w_ph and dpsx_w_ph incorrectly defines halfword vector elements as unsigned values. This results in wrong output which is not triggered in the tests as they also follow this logic. Signed-off-by: Petar Jovanovic <petarj@mips.com> Reviewed-by: Eric Johnson <ericj@mips.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
		
			
				
	
	
		
			45 lines
		
	
	
		
			940 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			940 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include<stdio.h>
 | |
| #include<assert.h>
 | |
| 
 | |
| int main()
 | |
| {
 | |
|     int rs, rt;
 | |
|     int ach = 5, acl = 5;
 | |
|     int resulth, resultl;
 | |
| 
 | |
|     rs     = 0x00FF00FF;
 | |
|     rt     = 0x00010002;
 | |
|     resulth = 0x04;
 | |
|     resultl = 0xFFFFFD08;
 | |
|     __asm
 | |
|         ("mthi  %0, $ac1\n\t"
 | |
|          "mtlo  %1, $ac1\n\t"
 | |
|          "dps.w.ph $ac1, %2, %3\n\t"
 | |
|          "mfhi  %0, $ac1\n\t"
 | |
|          "mflo  %1, $ac1\n\t"
 | |
|          : "+r"(ach), "+r"(acl)
 | |
|          : "r"(rs), "r"(rt)
 | |
|         );
 | |
|     assert(ach == resulth);
 | |
|     assert(acl == resultl);
 | |
| 
 | |
|     ach = 6, acl = 7;
 | |
|     rs     = 0xFFFF00FF;
 | |
|     rt     = 0xFFFF0002;
 | |
|     resulth = 0x05;
 | |
|     resultl = 0xFFFFFE08;
 | |
|     __asm
 | |
|         ("mthi  %0, $ac1\n\t"
 | |
|          "mtlo  %1, $ac1\n\t"
 | |
|          "dps.w.ph $ac1, %2, %3\n\t"
 | |
|          "mfhi  %0, $ac1\n\t"
 | |
|          "mflo  %1, $ac1\n\t"
 | |
|          : "+r"(ach), "+r"(acl)
 | |
|          : "r"(rs), "r"(rt)
 | |
|         );
 | |
|     assert(ach == resulth);
 | |
|     assert(acl == resultl);
 | |
| 
 | |
|     return 0;
 | |
| }
 |