1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/string.h>
3 #include <linux/export.h>
5 char *strstr(const char *cs
, const char *ct
)
14 "decl %%ecx\n\t" /* NOTE! This also sets Z if searchstring='' */
16 "1:\tmovl %6,%%edi\n\t"
17 "movl %%esi,%%eax\n\t"
18 "movl %%edx,%%ecx\n\t"
21 "je 2f\n\t" /* also works for empty string, see above */
22 "xchgl %%eax,%%esi\n\t"
24 "cmpb $0,-1(%%eax)\n\t"
26 "xorl %%eax,%%eax\n\t"
28 : "=a" (__res
), "=&c" (d0
), "=&S" (d1
)
29 : "0" (0), "1" (0xffffffff), "2" (cs
), "g" (ct
)
33 EXPORT_SYMBOL(strstr
);