Fix uses of CALL_MCOUNT in ppc64 assembler sources
[platform/upstream/glibc.git] / sysdeps / powerpc / powerpc64 / power7 / memchr.S
1 /* Optimized memchr implementation for PowerPC64/POWER7 using cmpb insn.
2    Copyright (C) 2010-2013 Free Software Foundation, Inc.
3    Contributed by Luis Machado <luisgpm@br.ibm.com>.
4    This file is part of the GNU C Library.
5
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
19
20 #include <sysdep.h>
21
22 /* int [r3] memchr (char *s [r3], int byte [r4], int size [r5])  */
23         .machine  power7
24 ENTRY (__memchr)
25         CALL_MCOUNT 3
26         dcbt    0,r3
27         clrrdi  r8,r3,3
28         insrdi  r4,r4,8,48
29         add     r7,r3,r5      /* Calculate the last acceptable address.  */
30         insrdi  r4,r4,16,32
31         cmpldi  r5,32
32         li      r9, -1
33         rlwinm  r6,r3,3,26,28 /* Calculate padding.  */
34         insrdi  r4,r4,32,0
35         addi    r7,r7,-1
36 #ifdef __LITTLE_ENDIAN__
37         sld     r9,r9,r6
38 #else
39         srd     r9,r9,r6
40 #endif
41         ble     L(small_range)
42
43         ld      r12,0(r8)     /* Load doubleword from memory.  */
44         cmpb    r3,r12,r4     /* Check for BYTEs in DWORD1.  */
45         and     r3,r3,r9
46         clrldi  r5,r7,61      /* Byte count - 1 in last dword.  */
47         clrrdi  r7,r7,3       /* Address of last doubleword.  */
48         cmpldi  cr7,r3,0      /* Does r3 indicate we got a hit?  */
49         bne     cr7,L(done)
50
51         mtcrf   0x01,r8
52         /* Are we now aligned to a quadword boundary?  If so, skip to
53            the main loop.  Otherwise, go through the alignment code.  */
54         bt      28,L(loop_setup)
55
56         /* Handle DWORD2 of pair.  */
57         ldu     r12,8(r8)
58         cmpb    r3,r12,r4
59         cmpldi  cr7,r3,0
60         bne     cr7,L(done)
61
62 L(loop_setup):
63         /* The last dword we want to read in the loop below is the one
64            containing the last byte of the string, ie. the dword at
65            (s + size - 1) & ~7, or r7.  The first dword read is at
66            r8 + 8, we read 2 * cnt dwords, so the last dword read will
67            be at r8 + 8 + 16 * cnt - 8.  Solving for cnt gives
68            cnt = (r7 - r8) / 16  */
69         sub     r6,r7,r8
70         srdi    r6,r6,4       /* Number of loop iterations.  */
71         mtctr   r6            /* Setup the counter.  */
72
73         /* Main loop to look for BYTE in the string.  Since
74            it's a small loop (8 instructions), align it to 32-bytes.  */
75         .align  5
76 L(loop):
77         /* Load two doublewords, compare and merge in a
78            single register for speed.  This is an attempt
79            to speed up the byte-checking process for bigger strings.  */
80         ld      r12,8(r8)
81         ldu     r11,16(r8)
82         cmpb    r3,r12,r4
83         cmpb    r9,r11,r4
84         or      r6,r9,r3      /* Merge everything in one doubleword.  */
85         cmpldi  cr7,r6,0
86         bne     cr7,L(found)
87         bdnz    L(loop)
88
89         /* We may have one more dword to read.  */
90         cmpld   r8,r7
91         beqlr
92
93         ldu     r12,8(r8)
94         cmpb    r3,r12,r4
95         cmpldi  cr6,r3,0
96         bne     cr6,L(done)
97         blr
98
99         .align  4
100 L(found):
101         /* OK, one (or both) of the doublewords contains BYTE.  Check
102            the first doubleword and decrement the address in case the first
103            doubleword really contains BYTE.  */
104         cmpldi  cr6,r3,0
105         addi    r8,r8,-8
106         bne     cr6,L(done)
107
108         /* BYTE must be in the second doubleword.  Adjust the address
109            again and move the result of cmpb to r3 so we can calculate the
110            pointer.  */
111
112         mr      r3,r9
113         addi    r8,r8,8
114
115         /* r3 has the output of the cmpb instruction, that is, it contains
116            0xff in the same position as BYTE in the original
117            doubleword from the string.  Use that to calculate the pointer.
118            We need to make sure BYTE is *before* the end of the range.  */
119 L(done):
120 #ifdef __LITTLE_ENDIAN__
121         addi    r0,r3,-1
122         andc    r0,r0,r3
123         popcntd r0,r0         /* Count trailing zeros.  */
124 #else
125         cntlzd  r0,r3         /* Count leading zeros before the match.  */
126 #endif
127         cmpld   r8,r7         /* Are we on the last dword?  */
128         srdi    r0,r0,3       /* Convert leading/trailing zeros to bytes.  */
129         add     r3,r8,r0
130         cmpld   cr7,r0,r5     /* If on the last dword, check byte offset.  */
131         bnelr
132         blelr   cr7
133         li      r3,0
134         blr
135
136         .align  4
137 L(null):
138         li      r3,0
139         blr
140
141 /* Deals with size <= 32.  */
142         .align  4
143 L(small_range):
144         cmpldi  r5,0
145         beq     L(null)
146         ld      r12,0(r8)     /* Load word from memory.  */
147         cmpb    r3,r12,r4     /* Check for BYTE in DWORD1.  */
148         and     r3,r3,r9
149         cmpldi  cr7,r3,0
150         clrldi  r5,r7,61      /* Byte count - 1 in last dword.  */
151         clrrdi  r7,r7,3       /* Address of last doubleword.  */
152         cmpld   r8,r7         /* Are we done already?  */
153         bne     cr7,L(done)
154         beqlr
155
156         ldu     r12,8(r8)
157         cmpb    r3,r12,r4
158         cmpldi  cr6,r3,0
159         cmpld   r8,r7
160         bne     cr6,L(done)   /* Found something.  */
161         beqlr                 /* Hit end of string (length).  */
162
163         ldu     r12,8(r8)
164         cmpb    r3,r12,r4
165         cmpldi  cr6,r3,0
166         cmpld   r8,r7
167         bne     cr6,L(done)
168         beqlr
169
170         ldu     r12,8(r8)
171         cmpb    r3,r12,r4
172         cmpldi  cr6,r3,0
173         cmpld   r8,r7
174         bne     cr6,L(done)
175         beqlr
176
177         ldu     r12,8(r8)
178         cmpb    r3,r12,r4
179         cmpldi  cr6,r3,0
180         bne     cr6,L(done)
181         blr
182
183 END (__memchr)
184 weak_alias (__memchr, memchr)
185 libc_hidden_builtin_def (memchr)