ev67-strrchr.S 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * arch/alpha/lib/ev67-strrchr.S
  3. * 21264 version by Rick Gorton <rick.gorton@alpha-processor.com>
  4. *
  5. * Finds length of a 0-terminated string. Optimized for the
  6. * Alpha architecture:
  7. *
  8. * - memory accessed as aligned quadwords only
  9. * - uses bcmpge to compare 8 bytes in parallel
  10. *
  11. * Much of the information about 21264 scheduling/coding comes from:
  12. * Compiler Writer's Guide for the Alpha 21264
  13. * abbreviated as 'CWG' in other comments here
  14. * ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html
  15. * Scheduling notation:
  16. * E - either cluster
  17. * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
  18. * L - lower subcluster; L0 - subcluster L0; L1 - subcluster L1
  19. */
  20. #include <asm/export.h>
  21. #include <asm/regdef.h>
  22. .set noreorder
  23. .set noat
  24. .align 4
  25. .ent strrchr
  26. .globl strrchr
  27. strrchr:
  28. .frame sp, 0, ra
  29. .prologue 0
  30. and a1, 0xff, t2 # E : 00000000000000ch
  31. insbl a1, 1, t4 # U : 000000000000ch00
  32. insbl a1, 2, t5 # U : 0000000000ch0000
  33. ldq_u t0, 0(a0) # L : load first quadword Latency=3
  34. mov zero, t6 # E : t6 is last match aligned addr
  35. or t2, t4, a1 # E : 000000000000chch
  36. sll t5, 8, t3 # U : 00000000ch000000
  37. mov zero, t8 # E : t8 is last match byte compare mask
  38. andnot a0, 7, v0 # E : align source addr
  39. or t5, t3, t3 # E : 00000000chch0000
  40. sll a1, 32, t2 # U : 0000chch00000000
  41. sll a1, 48, t4 # U : chch000000000000
  42. or t4, a1, a1 # E : chch00000000chch
  43. or t2, t3, t2 # E : 0000chchchch0000
  44. or a1, t2, a1 # E : chchchchchchchch
  45. lda t5, -1 # E : build garbage mask
  46. cmpbge zero, t0, t1 # E : bits set iff byte == zero
  47. mskqh t5, a0, t4 # E : Complete garbage mask
  48. xor t0, a1, t2 # E : make bytes == c zero
  49. cmpbge zero, t4, t4 # E : bits set iff byte is garbage
  50. cmpbge zero, t2, t3 # E : bits set iff byte == c
  51. andnot t1, t4, t1 # E : clear garbage from null test
  52. andnot t3, t4, t3 # E : clear garbage from char test
  53. bne t1, $eos # U : did we already hit the terminator?
  54. /* Character search main loop */
  55. $loop:
  56. ldq t0, 8(v0) # L : load next quadword
  57. cmovne t3, v0, t6 # E : save previous comparisons match
  58. nop # : Latency=2, extra map slot (keep nop with cmov)
  59. nop
  60. cmovne t3, t3, t8 # E : Latency=2, extra map slot
  61. nop # : keep with cmovne
  62. addq v0, 8, v0 # E :
  63. xor t0, a1, t2 # E :
  64. cmpbge zero, t0, t1 # E : bits set iff byte == zero
  65. cmpbge zero, t2, t3 # E : bits set iff byte == c
  66. beq t1, $loop # U : if we havnt seen a null, loop
  67. nop
  68. /* Mask out character matches after terminator */
  69. $eos:
  70. negq t1, t4 # E : isolate first null byte match
  71. and t1, t4, t4 # E :
  72. subq t4, 1, t5 # E : build a mask of the bytes up to...
  73. or t4, t5, t4 # E : ... and including the null
  74. and t3, t4, t3 # E : mask out char matches after null
  75. cmovne t3, t3, t8 # E : save it, if match found Latency=2, extra map slot
  76. nop # : Keep with cmovne
  77. nop
  78. cmovne t3, v0, t6 # E :
  79. nop # : Keep with cmovne
  80. /* Locate the address of the last matched character */
  81. ctlz t8, t2 # U0 : Latency=3 (0x40 for t8=0)
  82. nop
  83. cmoveq t8, 0x3f, t2 # E : Compensate for case when no match is seen
  84. nop # E : hide the cmov latency (2) behind ctlz latency
  85. lda t5, 0x3f($31) # E :
  86. subq t5, t2, t5 # E : Normalize leading zero count
  87. addq t6, t5, v0 # E : and add to quadword address
  88. ret # L0 : Latency=3
  89. nop
  90. nop
  91. .end strrchr
  92. EXPORT_SYMBOL(strrchr)