cregit-Linux how code gets into the kernel

Release 4.14 arch/s390/include/asm/string.h

/* SPDX-License-Identifier: GPL-2.0 */
/*
 *  S390 version
 *    Copyright IBM Corp. 1999
 *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
 */

#ifndef _S390_STRING_H_

#define _S390_STRING_H_

#ifndef _LINUX_TYPES_H
#include <linux/types.h>
#endif


#define __HAVE_ARCH_MEMCHR	
/* inline & arch function */

#define __HAVE_ARCH_MEMCMP	
/* arch function */

#define __HAVE_ARCH_MEMCPY	
/* gcc builtin & arch function */

#define __HAVE_ARCH_MEMMOVE	
/* gcc builtin & arch function */

#define __HAVE_ARCH_MEMSCAN	
/* inline & arch function */

#define __HAVE_ARCH_MEMSET	
/* gcc builtin & arch function */

#define __HAVE_ARCH_STRCAT	
/* inline & arch function */

#define __HAVE_ARCH_STRCMP	
/* arch function */

#define __HAVE_ARCH_STRCPY	
/* inline & arch function */

#define __HAVE_ARCH_STRLCAT	
/* arch function */

#define __HAVE_ARCH_STRLCPY	
/* arch function */

#define __HAVE_ARCH_STRLEN	
/* inline & arch function */

#define __HAVE_ARCH_STRNCAT	
/* arch function */

#define __HAVE_ARCH_STRNCPY	
/* arch function */

#define __HAVE_ARCH_STRNLEN	
/* inline & arch function */

#define __HAVE_ARCH_STRRCHR	
/* arch function */

#define __HAVE_ARCH_STRSTR	
/* arch function */

/* Prototypes for non-inlined arch strings functions. */
extern int memcmp(const void *, const void *, size_t);
extern void *memcpy(void *, const void *, size_t);
extern void *memset(void *, int, size_t);
extern void *memmove(void *, const void *, size_t);
extern int strcmp(const char *,const char *);
extern size_t strlcat(char *, const char *, size_t);
extern size_t strlcpy(char *, const char *, size_t);
extern char *strncat(char *, const char *, size_t);
extern char *strncpy(char *, const char *, size_t);
extern char *strrchr(const char *, int);
extern char *strstr(const char *, const char *);


#undef __HAVE_ARCH_STRCHR

#undef __HAVE_ARCH_STRNCHR

#undef __HAVE_ARCH_STRNCMP

#undef __HAVE_ARCH_STRPBRK

#undef __HAVE_ARCH_STRSEP

#undef __HAVE_ARCH_STRSPN

#if !defined(IN_ARCH_STRING_C)


static inline void *memchr(const void * s, int c, size_t n) { register int r0 asm("0") = (char) c; const void *ret = s + n; asm volatile( "0: srst %0,%1\n" " jo 0b\n" " jl 1f\n" " la %0,0\n" "1:" : "+a" (ret), "+&a" (s) : "d" (r0) : "cc", "memory"); return (void *) ret; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton3058.82%125.00%
Linus Torvalds (pre-git)1937.25%125.00%
Linus Torvalds11.96%125.00%
Heiko Carstens11.96%125.00%
Total51100.00%4100.00%


static inline void *memscan(void *s, int c, size_t n) { register int r0 asm("0") = (char) c; const void *ret = s + n; asm volatile( "0: srst %0,%1\n" " jo 0b\n" : "+a" (ret), "+&a" (s) : "d" (r0) : "cc", "memory"); return (void *) ret; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4998.00%150.00%
Heiko Carstens12.00%150.00%
Total50100.00%2100.00%


static inline char *strcat(char *dst, const char *src) { register int r0 asm("0") = 0; unsigned long dummy; char *ret = dst; asm volatile( "0: srst %0,%1\n" " jo 0b\n" "1: mvst %0,%2\n" " jo 1b" : "=&a" (dummy), "+a" (dst), "+a" (src) : "d" (r0), "0" (0) : "cc", "memory" ); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4093.02%133.33%
Linus Torvalds (pre-git)24.65%133.33%
Martin Schwidefsky12.33%133.33%
Total43100.00%3100.00%


static inline char *strcpy(char *dst, const char *src) { register int r0 asm("0") = 0; char *ret = dst; asm volatile( "0: mvst %0,%1\n" " jo 0b" : "+&a" (dst), "+&a" (src) : "d" (r0) : "cc", "memory"); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2051.28%125.00%
Andrew Morton1743.59%125.00%
Martin Schwidefsky12.56%125.00%
Linus Torvalds12.56%125.00%
Total39100.00%4100.00%


static inline size_t strlen(const char *s) { register unsigned long r0 asm("0") = 0; const char *tmp = s; asm volatile( "0: srst %0,%1\n" " jo 0b" : "+d" (r0), "+a" (tmp) : : "cc", "memory"); return r0 - (unsigned long) s; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton2764.29%125.00%
Linus Torvalds (pre-git)1330.95%125.00%
Linus Torvalds12.38%125.00%
Heiko Carstens12.38%125.00%
Total42100.00%4100.00%


static inline size_t strnlen(const char * s, size_t n) { register int r0 asm("0") = 0; const char *tmp = s; const char *end = s + n; asm volatile( "0: srst %0,%1\n" " jo 0b" : "+a" (end), "+a" (tmp) : "d" (r0) : "cc", "memory"); return end - s; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton3367.35%125.00%
Linus Torvalds (pre-git)1428.57%125.00%
Heiko Carstens12.04%125.00%
Linus Torvalds12.04%125.00%
Total49100.00%4100.00%

#else /* IN_ARCH_STRING_C */ void *memchr(const void * s, int c, size_t n); void *memscan(void *s, int c, size_t n); char *strcat(char *dst, const char *src); char *strcpy(char *dst, const char *src); size_t strlen(const char *s); size_t strnlen(const char * s, size_t n); #endif /* !IN_ARCH_STRING_C */ #endif /* __S390_STRING_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton34054.14%111.11%
Linus Torvalds (pre-git)11918.95%111.11%
Rusty Russell8313.22%111.11%
Linus Torvalds599.39%111.11%
Heiko Carstens243.82%333.33%
Martin Schwidefsky20.32%111.11%
Greg Kroah-Hartman10.16%111.11%
Total628100.00%9100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.