Merge remote-tracking branch 'vfio/next'
[deliverable/linux.git] / arch / x86 / lib / strstr_32.c
CommitLineData
1da177e4 1#include <linux/string.h>
784d5699 2#include <linux/export.h>
1da177e4 3
f73920cd 4char *strstr(const char *cs, const char *ct)
1da177e4
LT
5{
6int d0, d1;
f73920cd 7register char *__res;
1da177e4
LT
8__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:"
209b580f
PC
27 : "=a" (__res), "=&c" (d0), "=&S" (d1)
28 : "0" (0), "1" (0xffffffff), "2" (cs), "g" (ct)
29 : "dx", "di");
1da177e4
LT
30return __res;
31}
784d5699 32EXPORT_SYMBOL(strstr);
This page took 0.784004 seconds and 5 git commands to generate.