| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 | #ifndef _LINUX_STRING_H_#define _LINUX_STRING_H_#include <dl-sysdep.h> // for do_remstatic size_t _dl_strlen(const char * str);static char *_dl_strcat(char *dst, const char *src);static char * _dl_strcpy(char * dst,const char *src);static int _dl_strcmp(const char * s1,const char * s2);static int _dl_strncmp(const char * s1,const char * s2,size_t len);static char * _dl_strchr(const char * str,int c);static char *_dl_strrchr(const char *str, int c);static char *_dl_strstr(const char *s1, const char *s2);static void * _dl_memcpy(void * dst, const void * src, size_t len);static int _dl_memcmp(const void * s1,const void * s2,size_t len);static void *_dl_memset(void * str,int c,size_t len);static char *_dl_get_last_path_component(char *path);static char *_dl_simple_ltoa(char * local, unsigned long i);static char *_dl_simple_ltoahex(char * local, unsigned long i);#ifndef NULL#define NULL ((void *) 0)#endifstatic inline size_t _dl_strlen(const char * str){	register const char *ptr = (char *) str-1;	while (*++ptr);	return (ptr - str);}static inline char *_dl_strcat(char *dst, const char *src){	register char *ptr = dst-1;	src--;	while (*++ptr)		;/* empty */	ptr--;	while ((*++ptr = *++src) != 0)		;/* empty */	return dst;}static inline char * _dl_strcpy(char * dst,const char *src){	register char *ptr = dst;		dst--;src--;	while ((*++dst = *++src) != 0);			return ptr;}static inline int _dl_strcmp(const char * s1,const char * s2){	register unsigned char c1, c2;	s1--;s2--;	do {		c1 = (unsigned char) *++s1;		c2 = (unsigned char) *++s2;		if (c1 == '\0')			return c1 - c2;	}	while (c1 == c2);	return c1 - c2;}static inline int _dl_strncmp(const char * s1,const char * s2,size_t len){	register unsigned char c1 = '\0';	register unsigned char c2 = '\0';	s1--;s2--;	while (len > 0) {		c1 = (unsigned char) *++s1;		c2 = (unsigned char) *++s2;		if (c1 == '\0' || c1 != c2)			return c1 - c2;		len--;	}	return c1 - c2;}static inline char * _dl_strchr(const char * str,int c){	register char ch;	str--;	do {		if ((ch = *++str) == c)			return (char *) str;	}	while (ch);	return 0;}static inline char *_dl_strrchr(const char *str, int c){    register char *prev = 0;    register char *ptr = (char *) str-1;    while (*++ptr != '\0') {	if (*ptr == c)	    prev = ptr;    }    if (c == '\0')	return(ptr);    return(prev);}static inline char *_dl_strstr(const char *s1, const char *s2){    register const char *s = s1;    register const char *p = s2;    do {        if (!*p) {	    return (char *) s1;;	}	if (*p == *s) {	    ++p;	    ++s;	} else {	    p = s2;	    if (!*s) {	      return NULL;	    }	    s = ++s1;	}    } while (1);}static inline void * _dl_memcpy(void * dst, const void * src, size_t len){	register char *a = dst-1;	register const char *b = src-1;	while (len) {		*++a = *++b;		--len;	}	return dst;}static inline int _dl_memcmp(const void * s1,const void * s2,size_t len){	unsigned char *c1 = (unsigned char *)s1-1;	unsigned char *c2 = (unsigned char *)s2-1;	while (len) {		if (*++c1 != *++c2)			return *c1 - *c2;		len--;	}	return 0;}#if defined(powerpc)/* Will generate smaller and faster code due to loop unrolling.*/static inline void *_dl_memset(void *to, int c, size_t n){        unsigned long chunks;        unsigned long *tmp_to;	unsigned char *tmp_char;        chunks = n / 4;        tmp_to = to + n;        c = c << 8 | c;        c = c << 16 | c;        if (!chunks)                goto lessthan4;        do {                *--tmp_to = c;        } while (--chunks); lessthan4:        n = n % 4;        if (!n ) return to;        tmp_char = (unsigned char *)tmp_to;        do {                *--tmp_char = c;        } while (--n);        return to;}#elsestatic inline void * _dl_memset(void * str,int c,size_t len){	register char *a = str;	while (len--)		*a++ = c;	return str;}#endifstatic inline char *_dl_get_last_path_component(char *path){	register char *ptr = path-1;	while (*++ptr)		;/* empty */	/* strip trailing slashes */	while (ptr != path && *--ptr == '/') {		*ptr = '\0';	}	/* find last component */	while (ptr != path && *--ptr != '/')		;/* empty */	return ptr == path ? ptr : ptr+1;}/* Early on, we can't call printf, so use this to print out * numbers using the SEND_STDERR() macro.  Avoid using mod * or using long division */static inline char *_dl_simple_ltoa(char * local, unsigned long i){	/* 21 digits plus null terminator, good for 64-bit or smaller ints */	char *p = &local[22];	*--p = '\0';	do {	    char temp;	    do_rem(temp, i, 10);	    *--p = '0' + temp;	    i /= 10;	} while (i > 0);	return p;}static inline char *_dl_simple_ltoahex(char * local, unsigned long i){	/* 21 digits plus null terminator, good for 64-bit or smaller ints */	char *p = &local[22];	*--p = '\0';	do {		char temp = i & 0xf;		if (temp <= 0x09)		    *--p = '0' + temp;		else		    *--p = 'a' - 0x0a + temp;		i >>= 4;	} while (i > 0);	*--p = 'x';	*--p = '0';	return p;}#if defined(mc68000) || defined(__arm__) || defined(__mips__) || defined(__sh__) ||  defined(__powerpc__)/* On some arches constant strings are referenced through the GOT. *//* XXX Requires load_addr to be defined. */#define SEND_STDERR(X)				\  { const char *__s = (X);			\    if (__s < (const char *) load_addr) __s += load_addr;	\    _dl_write (2, __s, _dl_strlen (__s));	\  }#else#define SEND_STDERR(X) _dl_write(2, X, _dl_strlen(X));#endif/* Some targets may have to override this to something that doesn't   reference constant strings through the GOT.  This macro should be   preferred over SEND_STDERR for constant strings before we complete   bootstrap.  */#ifndef SEND_EARLY_STDERR# define SEND_EARLY_STDERR(S) SEND_STDERR(S)#endif#define SEND_ADDRESS_STDERR(X, add_a_newline) { \    char tmp[22], *tmp1; \    _dl_memset(tmp, 0, sizeof(tmp)); \    tmp1=_dl_simple_ltoahex( tmp, (unsigned long)(X)); \    _dl_write(2, tmp1, _dl_strlen(tmp1)); \    if (add_a_newline) { \	tmp[0]='\n'; \	_dl_write(2, tmp, 1); \    } \};#define SEND_NUMBER_STDERR(X, add_a_newline) { \    char tmp[22], *tmp1; \    _dl_memset(tmp, 0, sizeof(tmp)); \    tmp1=_dl_simple_ltoa( tmp, (unsigned long)(X)); \    _dl_write(2, tmp1, _dl_strlen(tmp1)); \    if (add_a_newline) { \	tmp[0]='\n'; \	_dl_write(2, tmp, 1); \    } \};#endif
 |