strnlen_user.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (c) 1996, 1998, 1999 by Ralf Baechle
  7.  * Copyright (c) 1999 Silicon Graphics, Inc.
  8.  */
  9. #include <asm/asm.h>
  10. #include <asm/offset.h>
  11. #include <asm/regdef.h>
  12. #include <asm/sgidefs.h>
  13. #define EX(insn,reg,addr,handler)
  14. 9: insn reg, addr;
  15. .section __ex_table,"a";
  16. PTR 9b, handler;
  17. .previous
  18. /*
  19.  * Return the size of a string (including the ending 0)
  20.  *
  21.  * Return 0 for error, len on string but at max a1 otherwise
  22.  */
  23. LEAF(__strnlen_user_asm)
  24. ld v0, THREAD_CURDS($28) # pointer ok?
  25. and v0, ta0
  26. bltz v0, fault
  27. EXPORT(__strnlen_user_nocheck_asm)
  28. move v0, a0
  29. daddu a1, a0 # stop pointer
  30. 1: beq v0, a1, 1f # limit reached?
  31. EX(lb, ta0, (v0), fault)
  32. daddiu v0, 1
  33. bnez ta0, 1b
  34. 1: dsubu v0, a0
  35. jr ra
  36. END(__strnlen_user_asm)
  37. .section __ex_table,"a"
  38. PTR 1b, fault
  39. .previous
  40. fault: move v0, zero
  41. jr ra