| 
									
										
										
										
											2005-10-30 23:08:03 +00:00
										 |  |  | /* | 
					
						
							|  |  |  |  *  linux/arch/arm/lib/muldi3.S | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Author:     Nicolas Pitre | 
					
						
							|  |  |  |  *  Created:    Oct 19, 2005 | 
					
						
							|  |  |  |  *  Copyright:  Monta Vista Software, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute it and/or modify
 | 
					
						
							|  |  |  |  *  it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  *  published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/linkage.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __ARMEB__ | 
					
						
							|  |  |  | #define xh r0 | 
					
						
							|  |  |  | #define xl r1 | 
					
						
							|  |  |  | #define yh r2 | 
					
						
							|  |  |  | #define yl r3 | 
					
						
							|  |  |  | #else | 
					
						
							|  |  |  | #define xl r0 | 
					
						
							|  |  |  | #define xh r1 | 
					
						
							|  |  |  | #define yl r2 | 
					
						
							|  |  |  | #define yh r3 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ENTRY(__muldi3) | 
					
						
							| 
									
										
										
										
											2006-01-14 16:18:29 +00:00
										 |  |  | ENTRY(__aeabi_lmul) | 
					
						
							| 
									
										
										
										
											2005-10-30 23:08:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mul	xh, yl, xh | 
					
						
							|  |  |  | 	mla	xh, xl, yh, xh | 
					
						
							| 
									
										
										
										
											2006-03-08 17:25:33 +00:00
										 |  |  | 	mov	ip, xl, lsr #16 | 
					
						
							|  |  |  | 	mov	yh, yl, lsr #16 | 
					
						
							| 
									
										
										
										
											2005-10-30 23:08:03 +00:00
										 |  |  | 	bic	xl, xl, ip, lsl #16 | 
					
						
							|  |  |  | 	bic	yl, yl, yh, lsl #16 | 
					
						
							|  |  |  | 	mla	xh, yh, ip, xh | 
					
						
							|  |  |  | 	mul	yh, xl, yh | 
					
						
							|  |  |  | 	mul	xl, yl, xl | 
					
						
							|  |  |  | 	mul	ip, yl, ip | 
					
						
							|  |  |  | 	adds	xl, xl, yh, lsl #16 | 
					
						
							|  |  |  | 	adc	xh, xh, yh, lsr #16 | 
					
						
							|  |  |  | 	adds	xl, xl, ip, lsl #16 | 
					
						
							|  |  |  | 	adc	xh, xh, ip, lsr #16 | 
					
						
							|  |  |  | 	mov	pc, lr | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-28 11:22:32 +01:00
										 |  |  | ENDPROC(__muldi3) | 
					
						
							|  |  |  | ENDPROC(__aeabi_lmul) |