+1999-06-13 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
+
+ * sysdeps/generic/strchr.c: Include <memcopy.h> and use reg_char
+ for character to search, to help the compiler.
+ * sysdeps/generic/strchrnul.c: Likewise.
+ * sysdeps/generic/memchr.c: Likewise.
+ * sysdeps/generic/memccpy.c: Likewise.
+ * sysdeps/generic/rawmemchr.c: Likewise. Fix comment.
+
1999-06-13 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/memchr.S: New file.
-/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Boston, MA 02111-1307, USA. */
#include <string.h>
+#include <memcopy.h>
#undef __memccpy
#undef memccpy
{
register const char *s = src;
register char *d = dest;
- register const int x = (unsigned char) c;
+ register const reg_char x = (unsigned char) c;
register size_t i = n;
while (i-- > 0)
-/* Copyright (C) 1991, 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1996, 1997, 1999 Free Software Foundation, Inc.
Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
with help from Dan Sahlin (dan@sics.se) and
commentary by Jim Blandy (jimb@ai.mit.edu);
#if defined (_LIBC)
# include <string.h>
+# include <memcopy.h>
+#else
+# define reg_char char
#endif
#if defined (HAVE_LIMITS_H) || defined (_LIBC)
/* Search no more than N bytes of S for C. */
__ptr_t
-memchr (s, c, n)
+memchr (s, c_in, n)
const __ptr_t s;
- int c;
+ int c_in;
size_t n;
{
const unsigned char *char_ptr;
const unsigned long int *longword_ptr;
unsigned long int longword, magic_bits, charmask;
+ unsigned reg_char c;
- c = (unsigned char) c;
+ c = (unsigned char) c_in;
/* Handle the first few characters by reading one character at a time.
Do this until CHAR_PTR is aligned on a longword boundary. */
#if defined (_LIBC)
# include <string.h>
+# include <memcopy.h>
+#else
+# define reg_char char
#endif
#if defined (HAVE_LIMITS_H) || defined (_LIBC)
#undef memchr
-/* Search no more than N bytes of S for C. */
+/* Find the first occurrence of C in S. */
__ptr_t
-__rawmemchr (s, c)
+__rawmemchr (s, c_in)
const __ptr_t s;
- int c;
+ int c_in;
{
const unsigned char *char_ptr;
const unsigned long int *longword_ptr;
unsigned long int longword, magic_bits, charmask;
+ unsigned reg_char c;
- c = (unsigned char) c;
+ c = (unsigned char) c_in;
/* Handle the first few characters by reading one character at a time.
Do this until CHAR_PTR is aligned on a longword boundary. */
-/* Copyright (C) 1991, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 93, 94, 95, 96, 97, 99 Free Software Foundation, Inc.
Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
with help from Dan Sahlin (dan@sics.se) and
bug fix and commentary by Jim Blandy (jimb@ai.mit.edu);
Boston, MA 02111-1307, USA. */
#include <string.h>
+#include <memcopy.h>
#undef strchr
/* Find the first occurrence of C in S. */
char *
-strchr (s, c)
+strchr (s, c_in)
const char *s;
- int c;
+ int c_in;
{
const unsigned char *char_ptr;
const unsigned long int *longword_ptr;
unsigned long int longword, magic_bits, charmask;
+ unsigned reg_char c;
- c = (unsigned char) c;
+ c = (unsigned char) c_in;
/* Handle the first few characters by reading one character at a time.
Do this until CHAR_PTR is aligned on a longword boundary. */
Boston, MA 02111-1307, USA. */
#include <string.h>
+#include <memcopy.h>
#undef __strchrnul
#undef strchrnul
/* Find the first occurrence of C in S or the final NUL byte. */
char *
-__strchrnul (s, c)
+__strchrnul (s, c_in)
const char *s;
- int c;
+ int c_in;
{
const unsigned char *char_ptr;
const unsigned long int *longword_ptr;
unsigned long int longword, magic_bits, charmask;
+ unsigned reg_char c;
- c = (unsigned char) c;
+ c = (unsigned char) c_in;
/* Handle the first few characters by reading one character at a time.
Do this until CHAR_PTR is aligned on a longword boundary. */