diff options
author | David S. Miller <[email protected]> | 2008-12-09 04:09:07 -0800 |
---|---|---|
committer | David S. Miller <[email protected]> | 2008-12-09 04:09:07 -0800 |
commit | 18cdae68e7bb24f33883e58f366cde38ea89ba17 (patch) | |
tree | 891b87b5e3c0b605f5e7d2b9809282b67c005293 /arch/sparc/lib/memcmp_64.S | |
parent | ae984d72e0632782dd98c3fcf469b9045ad0d449 (diff) |
sparc: Commonize memcmp assembler.
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'arch/sparc/lib/memcmp_64.S')
-rw-r--r-- | arch/sparc/lib/memcmp_64.S | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/arch/sparc/lib/memcmp_64.S b/arch/sparc/lib/memcmp_64.S deleted file mode 100644 index d3fdaa898566..000000000000 --- a/arch/sparc/lib/memcmp_64.S +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Sparc64 optimized memcmp code. - * - * Copyright (C) 1997 Jakub Jelinek ([email protected]) - * Copyright (C) 2000 David S. Miller ([email protected]) - */ - - .text - .align 32 - .globl __memcmp, memcmp -__memcmp: -memcmp: - cmp %o2, 0 ! IEU1 Group -loop: be,pn %icc, ret_0 ! CTI - nop ! IEU0 - ldub [%o0], %g7 ! LSU Group - ldub [%o1], %g3 ! LSU Group - sub %o2, 1, %o2 ! IEU0 - add %o0, 1, %o0 ! IEU1 - add %o1, 1, %o1 ! IEU0 Group - subcc %g7, %g3, %g3 ! IEU1 Group - be,pt %icc, loop ! CTI - cmp %o2, 0 ! IEU1 Group - -ret_n0: retl - mov %g3, %o0 -ret_0: retl - mov 0, %o0 |