Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strcmp.c « microblaze « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbac3878f6a40286060408410049b517c431fdfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* Copyright (c) 2009 Xilinx, Inc.  All rights reserved. 

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are
   met:
   
   1.  Redistributions source code must retain the above copyright notice,
   this list of conditions and the following disclaimer. 
   
   2.  Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution. 
   
   3.  Neither the name of Xilinx nor the names of its contributors may be
   used to endorse or promote products derived from this software without
   specific prior written permission. 
   
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
   IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
   TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
   PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
   TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
  
FUNCTION
	<<strcmp>>---character string compare
	
INDEX
	strcmp

ANSI_SYNOPSIS
	#include <string.h>
	int strcmp(const char *<[a]>, const char *<[b]>);

TRAD_SYNOPSIS
	#include <string.h>
	int strcmp(<[a]>, <[b]>)
	char *<[a]>;
	char *<[b]>;

DESCRIPTION
	<<strcmp>> compares the string at <[a]> to
	the string at <[b]>.

RETURNS
	If <<*<[a]>>> sorts lexicographically after <<*<[b]>>>,
	<<strcmp>> returns a number greater than zero.  If the two
	strings match, <<strcmp>> returns zero.  If <<*<[a]>>>
	sorts lexicographically before <<*<[b]>>>, <<strcmp>> returns a
	number less than zero.

PORTABILITY
<<strcmp>> is ANSI C.

<<strcmp>> requires no supporting OS subroutines.

QUICKREF
	strcmp ansi pure
*/

#include <string.h>
#include <limits.h>

/* Nonzero if either X or Y is not aligned on a "long" boundary.  */
#define UNALIGNED(X, Y) \
  (((long)X & (sizeof (long) - 1)) | ((long)Y & (sizeof (long) - 1)))

/* DETECTNULL returns nonzero if (long)X contains a NULL byte. */
#if LONG_MAX == 2147483647L
#define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080)
#else
#if LONG_MAX == 9223372036854775807L
#define DETECTNULL(X) (((X) - 0x0101010101010101) & ~(X) & 0x8080808080808080)
#else
#error long int is not a 32bit or 64bit type.
#endif
#endif

#ifndef DETECTNULL
#error long int is not a 32bit or 64bit byte
#endif

int
_DEFUN (strcmp, (s1, s2),
	_CONST char *s1 _AND
	_CONST char *s2)
{ 

#ifndef HAVE_HW_PCMP

#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
  while (*s1 != '\0' && *s1 == *s2)
    {
      s1++;
      s2++;
    }

  return (*(unsigned char *) s1) - (*(unsigned char *) s2);
#else
  unsigned long *a1;
  unsigned long *a2;

  /* If s1 or s2 are unaligned, then compare bytes. */
  if (!UNALIGNED (s1, s2))
    {  
      /* If s1 and s2 are word-aligned, compare them a word at a time. */
      a1 = (unsigned long*)s1;
      a2 = (unsigned long*)s2;
      while (*a1 == *a2)
        {
          /* To get here, *a1 == *a2, thus if we find a null in *a1,
	     then the strings must be equal, so return zero.  */
          if (DETECTNULL (*a1))
	    return 0;

          a1++;
          a2++;
        }

      /* A difference was detected in last few bytes of s1, so search bytewise */
      s1 = (char*)a1;
      s2 = (char*)a2;
    }

  while (*s1 != '\0' && *s1 == *s2)
    {
      s1++;
      s2++;
    }
  return (*(unsigned char *) s1) - (*(unsigned char *) s2);
#endif /* not PREFER_SIZE_OVER_SPEED */

#else

    asm volatile ("                                          \n\
       or      r9, r0, r0               /* Index register */ \n\
check_alignment:                                             \n\
        andi    r3, r5, 3                                    \n\
        andi    r4, r6, 3                                    \n\
        bnei    r3, try_align_args                           \n\
        bnei    r4, regular_strcmp     /* At this point we don't have a choice */ \n\
cmp_loop:                                                                       \n\
        lw      r3, r5, r9                                                      \n\
        lw      r4, r6, r9                                                      \n\
        pcmpbf  r7, r3, r0              /* See if there is Null byte */                         \n\
        bnei    r7, end_cmp_loop        /* IF yes (r7 > 0) use byte compares in end_cmp_loop */ \n\
        cmpu    r7, r4, r3              /* ELSE compare whole word */                   \n\
        bnei    r7, end_cmp                                                             \n\
        brid    cmp_loop                                                                \n\
        addik   r9, r9, 4               /* delay slot */                                \n\
end_cmp_loop:                                                                           \n\
        lbu     r3, r5, r9              /* byte compare loop */                         \n\
        lbu     r4, r6, r9                                                              \n\
        cmpu    r7, r4, r3              /* Compare bytes */                             \n\
        bnei    r7, end_cmp_early                                                       \n\
        bneid   r3, end_cmp_loop        /* If reached null on one string, terminate */  \n\
        addik   r9, r9, 1               /* delay slot */                        \n\
end_cmp_early:                                                                  \n\
        rtsd    r15, 8                                                          \n\
        or      r3, r0, r7                                                      \n\
try_align_args:                                                                 \n\
        xor     r7, r4, r3                                                      \n\
        bnei    r7, regular_strcmp      /* cannot align args */                 \n\
        rsubik  r10, r3, 4              /* Number of initial bytes to align */  \n\
align_loop:                                                                     \n\
        lbu     r3, r5, r9                                                      \n\
        lbu     r4, r6, r9                                                      \n\
        cmpu    r7, r4, r3                                                      \n\
        bnei    r7, end_cmp                                                     \n\
        beqi    r3, end_cmp                                                     \n\
        addik   r10, r10, -1                                                    \n\
        beqid   r10, cmp_loop                                                   \n\
        addik   r9, r9, 1                                                       \n\
        bri     align_loop                                                      \n\
regular_strcmp:                                                                 \n\
        lbu     r3, r5, r9                                                      \n\
        lbu     r4, r6, r9                                                      \n\
        cmpu    r7, r4, r3                                                      \n\
        bnei    r7, end_cmp                                                     \n\
        beqi    r3, end_cmp                                                     \n\
        brid    regular_strcmp                                                  \n\
        addik   r9, r9, 1                                                       \n\
end_cmp:                                                                        \n\
        rtsd    r15, 8                                                          \n\
        or      r3, r0, r7              /* Return strcmp result */");

#endif /* ! HAVE_HW_PCMP */
}