1 #ifndef _BLACKFIN_STRING_H_
2 #define _BLACKFIN_STRING_H_
4 #ifdef __KERNEL__ /* only set these up for kernel code */
6 #define __HAVE_ARCH_STRCPY
7 extern inline char *strcpy(char *dest
, const char *src
)
12 __asm__
__volatile__ (
18 : "+&a" (dest
), "+&a" (src
), "=&d" (temp
)
25 #define __HAVE_ARCH_STRNCPY
26 extern inline char *strncpy(char *dest
, const char *src
, size_t n
)
34 __asm__
__volatile__ (
42 "if ! cc jump 1b (bp);"
45 /* if src is shorter than n, we need to null pad bytes now */
54 : "+&a" (dest
), "+&a" (src
), "+&da" (n
), "=&d" (temp
)
61 #define __HAVE_ARCH_STRCMP
62 extern inline int strcmp(const char *cs
, const char *ct
)
64 /* need to use int's here so the char's in the assembly don't get
65 * sign extended incorrectly when we don't want them to be
69 __asm__
__volatile__ (
71 "%2 = B[%0++] (Z);" /* get *cs */
72 "%3 = B[%1++] (Z);" /* get *ct */
73 "CC = %2 == %3;" /* compare a byte */
74 "if ! cc jump 2f;" /* not equal, break out */
75 "CC = %2;" /* at end of cs? */
76 "if cc jump 1b (bp);" /* no, keep going */
77 "jump.s 3f;" /* strings are equal */
79 "%2 = %2 - %3;" /* *cs - *ct */
81 : "+&a" (cs
), "+&a" (ct
), "=&d" (__res1
), "=&d" (__res2
)
88 #define __HAVE_ARCH_STRNCMP
89 extern inline int strncmp(const char *cs
, const char *ct
, size_t count
)
91 /* need to use int's here so the char's in the assembly don't get
92 * sign extended incorrectly when we don't want them to be
99 __asm__
__volatile__ (
101 "%3 = B[%0++] (Z);" /* get *cs */
102 "%4 = B[%1++] (Z);" /* get *ct */
103 "CC = %3 == %4;" /* compare a byte */
104 "if ! cc jump 3f;" /* not equal, break out */
105 "CC = %3;" /* at end of cs? */
106 "if ! cc jump 4f;" /* yes, all done */
107 "%2 += -1;" /* no, adjust count */
109 "if ! cc jump 1b;" /* more to do, keep going */
111 "%3 = 0;" /* strings are equal */
114 "%3 = %3 - %4;" /* *cs - *ct */
116 : "+&a" (cs
), "+&a" (ct
), "+&da" (count
), "=&d" (__res1
), "=&d" (__res2
)
123 #define __HAVE_ARCH_MEMSET
124 extern void *memset(void *s
, int c
, size_t count
);
125 #define __HAVE_ARCH_MEMCPY
126 extern void *memcpy(void *d
, const void *s
, size_t count
);
127 #define __HAVE_ARCH_MEMCMP
128 extern int memcmp(const void *, const void *, __kernel_size_t
);
129 #define __HAVE_ARCH_MEMCHR
130 extern void *memchr(const void *s
, int c
, size_t n
);
131 #define __HAVE_ARCH_MEMMOVE
132 extern void *memmove(void *dest
, const void *src
, size_t count
);
134 #endif /*__KERNEL__*/
135 #endif /* _BLACKFIN_STRING_H_ */