blob: a03b1c750bfed32e061b93fcfa45c81f9c9ecdad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/string.h>
Al Viro784d5692016-01-11 11:04:34 -05002#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Paolo Ciarrocchif73920c2008-02-22 23:09:56 +01004char *strstr(const char *cs, const char *ct)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005{
6int d0, d1;
Paolo Ciarrocchif73920c2008-02-22 23:09:56 +01007register char *__res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008__asm__ __volatile__(
9 "movl %6,%%edi\n\t"
10 "repne\n\t"
11 "scasb\n\t"
12 "notl %%ecx\n\t"
13 "decl %%ecx\n\t" /* NOTE! This also sets Z if searchstring='' */
14 "movl %%ecx,%%edx\n"
15 "1:\tmovl %6,%%edi\n\t"
16 "movl %%esi,%%eax\n\t"
17 "movl %%edx,%%ecx\n\t"
18 "repe\n\t"
19 "cmpsb\n\t"
20 "je 2f\n\t" /* also works for empty string, see above */
21 "xchgl %%eax,%%esi\n\t"
22 "incl %%esi\n\t"
23 "cmpb $0,-1(%%eax)\n\t"
24 "jne 1b\n\t"
25 "xorl %%eax,%%eax\n\t"
26 "2:"
Paolo Ciarrocchi209b5802008-08-02 21:24:45 +020027 : "=a" (__res), "=&c" (d0), "=&S" (d1)
28 : "0" (0), "1" (0xffffffff), "2" (cs), "g" (ct)
29 : "dx", "di");
Linus Torvalds1da177e2005-04-16 15:20:36 -070030return __res;
31}
Al Viro784d5692016-01-11 11:04:34 -050032EXPORT_SYMBOL(strstr);