summaryrefslogtreecommitdiff
path: root/rgo/src/memfill.S
blob: c22547e44f5b4e77146ec2ccc9fd58179f9d51c7 (plain) (blame)
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
/*
	Copyright 2022 Gabriel Jensen

	This file is part of rgo.

	rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

	rgo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

	You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>. 
*/

#include <rgo.h>

.global rgo_memfill

rgo_memfill:
	/*
		void const * ptr
		size_t       num
		uint8_t      val
	*/
#if defined(__i386__)
	/* eax: Address of the current element. */
	movl 0x4(%esp),%eax
	/* ecx: Address of the element after the last element. */
	movl 0x4(%esp),%ecx
	addl 0x8(%esp),%ecx
	/* rdx: Byte value. */
	movb 0xC(%esp),%dl
.loop:
	cmpl %eax,%ecx
	je .done /* Exit loop if we have reached the final element. */
	movb %dl,(%eax)
	incl %eax
	jmp .loop /* Continue to next element. */
.done:
	ret
#elif defined(__x86_64__)
	/* rax: Address of the current element. */
	movq %rdi,%rax
	/* rax: Address of the element after the last element. */
	movq %rdi,%rcx
	addq %rsi,%rcx
.loop:
	cmpq %rcx,%rax
	je .done /* Exit loop if we have reached the final element. */
	movb %dl,(%rax)
	incq %rax
	jmp .loop /* Continue to next element. */
.done:
	ret
#endif