aboutsummaryrefslogtreecommitdiff
path: root/kernel/string.S
blob: 4fb1ccc6877a7f16a2f6bf01b37ef399e8c2478e (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Defined in include/fbos/string.h
 *
 *     size_t strlen(const char *str)
 *
 * Returns (a0): string length.
 * Parameter (a0): string to measure.
 * Clobbers: t0, t1.
 */
.globl strlen
.type strlen, @function
strlen:
	mv t1, a0
1:
	lbu t0, 0(t1)
	beqz t0, 2f
	addi t1, t1, 1
	j 1b
2:
	sub a0, t1, a0
	ret

/*
 * Defined in include/fbos/string.h
 *
 *     int strcmp(const char *s1, const char *s2)
 *
 * Returns (a0): comparison result as in stdlib.
 * Parameter (a0, a1): strings to compare.
 * Clobbers: t0, t1.
 */
.globl strcmp
.type strcmp, @function
strcmp:
1:
	lbu t0, 0(a0)
	lbu t1, 0(a1)
	addi a0, a0, 1
	addi a1, a1, 1
	bne t0, t1, 2f
	bnez t0, 1b
	li a0, 0
	ret
2:
	sub a0, t0, t1
	ret

/*
 * Defined in include/fbos/string.h
 *
 *     int memcmp(const void *ptr1, const void *ptr2, size_t n)
 *
 * Returns (a0): comparison result as in stdlib.
 * Parameter (a0, a1): strings to compare.
 * Clobbers: t0, t1.
 */
.global memcmp
.type memcmp, @function
memcmp:
1:
	lbu t0, 0(a0)
	lbu t1, 0(a1)
	bne t0, t1, 2f
	addi a0, a0, 1
	addi a1, a1, 1
	addi a2, a2, -1
	bnez a2, 1b
	li a0, 0
	ret
2:
	sub a0, t0, t1
	ret