| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-03-25 13:41:47 -05:00
										 |  |  |  * Copyright (C) 1996, 1998, 1999, 2004 by Ralf Baechle | 
					
						
							|  |  |  |  * Copyright (C) 1999 Silicon Graphics, Inc. | 
					
						
							|  |  |  |  * Copyright (C) 2011 MIPS Technologies, Inc. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | #include <asm/asm.h> | 
					
						
							| 
									
										
										
										
											2005-09-09 22:32:31 +02:00
										 |  |  | #include <asm/asm-offsets.h> | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/regdef.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define EX(insn,reg,addr,handler)			\ | 
					
						
							|  |  |  | 9:	insn	reg, addr;				\
 | 
					
						
							|  |  |  | 	.section __ex_table,"a";			\
 | 
					
						
							|  |  |  | 	PTR	9b, handler;				\
 | 
					
						
							|  |  |  | 	.previous | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Return the size of a string (including the ending 0) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Return 0 for error | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | 	.macro __BUILD_STRLEN_ASM func | 
					
						
							|  |  |  | LEAF(__strlen_\func\()_asm) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	LONG_L		v0, TI_ADDR_LIMIT($28)	# pointer ok? | 
					
						
							|  |  |  | 	and		v0, a0 | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | 	bnez		v0, .Lfault\@
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	move		v0, a0 | 
					
						
							| 
									
										
										
										
											2014-01-02 16:04:38 +00:00
										 |  |  | .ifeqs "\func", "kernel" | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | 1:	EX(lbu, v1, (v0), .Lfault\@)
 | 
					
						
							| 
									
										
										
										
											2014-01-02 16:04:38 +00:00
										 |  |  | .else | 
					
						
							|  |  |  | 1:	EX(lbue, v1, (v0), .Lfault\@)
 | 
					
						
							|  |  |  | .endif | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	PTR_ADDIU	v0, 1 | 
					
						
							| 
									
										
										
										
											2013-03-25 13:41:47 -05:00
										 |  |  | 	bnez		v1, 1b | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	PTR_SUBU	v0, a0 | 
					
						
							|  |  |  | 	jr		ra | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | 	END(__strlen_\func\()_asm) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | .Lfault\@:	move		v0, zero
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	jr		ra | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | 	.endm | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-02 16:04:38 +00:00
										 |  |  | #ifndef CONFIG_EVA | 
					
						
							|  |  |  | 	/* Set aliases */ | 
					
						
							|  |  |  | 	.global __strlen_user_asm
 | 
					
						
							|  |  |  | 	.set __strlen_user_asm, __strlen_kernel_asm | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __BUILD_STRLEN_ASM kernel | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_EVA | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.set push
 | 
					
						
							|  |  |  | 	.set eva
 | 
					
						
							| 
									
										
										
										
											2014-01-02 15:55:58 +00:00
										 |  |  | __BUILD_STRLEN_ASM user | 
					
						
							| 
									
										
										
										
											2014-01-02 16:04:38 +00:00
										 |  |  | 	.set pop
 | 
					
						
							|  |  |  | #endif |