blob: 38f37df056f72ea6f93c0c11d15bc8c80103c785 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/string.h>
Al Viro784d5692016-01-11 11:04:34 -05003#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Paolo Ciarrocchif73920c2008-02-22 23:09:56 +01005char *strstr(const char *cs, const char *ct)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006{
7int d0, d1;
Paolo Ciarrocchif73920c2008-02-22 23:09:56 +01008register char *__res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009__asm__ __volatile__(
10 "movl %6,%%edi\n\t"
11 "repne\n\t"
12 "scasb\n\t"
13 "notl %%ecx\n\t"
14 "decl %%ecx\n\t" /* NOTE! This also sets Z if searchstring='' */
15 "movl %%ecx,%%edx\n"
16 "1:\tmovl %6,%%edi\n\t"
17 "movl %%esi,%%eax\n\t"
18 "movl %%edx,%%ecx\n\t"
19 "repe\n\t"
20 "cmpsb\n\t"
21 "je 2f\n\t" /* also works for empty string, see above */
22 "xchgl %%eax,%%esi\n\t"
23 "incl %%esi\n\t"
24 "cmpb $0,-1(%%eax)\n\t"
25 "jne 1b\n\t"
26 "xorl %%eax,%%eax\n\t"
27 "2:"
Paolo Ciarrocchi209b5802008-08-02 21:24:45 +020028 : "=a" (__res), "=&c" (d0), "=&S" (d1)
29 : "0" (0), "1" (0xffffffff), "2" (cs), "g" (ct)
30 : "dx", "di");
Linus Torvalds1da177e2005-04-16 15:20:36 -070031return __res;
32}
Al Viro784d5692016-01-11 11:04:34 -050033EXPORT_SYMBOL(strstr);