summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/strchr.S
blob: 0a2a5aa52e2e5046e54a0461acc29813a7480140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#define NEW

.text
.global strchr
strchr:
	mov	%esi,%edx
	mov	0x4(%esp,1),%esi
	mov	0x8(%esp,1),%cl
	cld
.L1:
	lods	(%esi),%eax
	cmp	%al,%cl
	jz .Lafound
	test	%al,%al
	jz .Lnotfound

	cmp	%ah,%cl
	jz .Lbfound
	test	%ah,%ah
	jz .Lnotfound

	shr	$16,%eax
	cmp	%al,%cl
	jz .Lcfound
	test	%al,%al
	jz .Lnotfound

	cmp	%ah,%cl
	jz .Ldfound
	test	%ah,%ah

	jnz .L1
.Lnotfound:
	sub	%eax,%eax
	mov	%edx,%esi
	ret
.Lafound:
	dec	%esi
.Lbfound:
	dec	%esi
.Lcfound:
	dec	%esi
.Ldfound:
	mov	%esi,%eax
	mov	%edx,%esi
	dec	%eax
	ret