strrchr.S 592 B

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Based on arch/arm/lib/strrchr.S
  4. *
  5. * Copyright (C) 1995-2000 Russell King
  6. * Copyright (C) 2013 ARM Ltd.
  7. */
  8. #include <linux/linkage.h>
  9. #include <asm/assembler.h>
  10. /*
  11. * Find the last occurrence of a character in a string.
  12. *
  13. * Parameters:
  14. * x0 - str
  15. * x1 - c
  16. * Returns:
  17. * x0 - address of last occurrence of 'c' or 0
  18. */
  19. SYM_FUNC_START_WEAK_PI(strrchr)
  20. mov x3, #0
  21. and w1, w1, #0xff
  22. 1: ldrb w2, [x0], #1
  23. cbz w2, 2f
  24. cmp w2, w1
  25. b.ne 1b
  26. sub x3, x0, #1
  27. b 1b
  28. 2: mov x0, x3
  29. ret
  30. SYM_FUNC_END_PI(strrchr)
  31. EXPORT_SYMBOL_NOKASAN(strrchr)