aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu/x86/mem.h
blob: 4849ed289a074c8dd43026a97a5c0615aa3e6d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CPU_X86_MEM_H
#define CPU_X86_MEM_H

/* Optimized generic x86 assembly for clearing memory */
static inline void clear_memory(void *addr, unsigned long size)
{
	asm volatile(
		"1: \n\t"
		"movl %0, (%1)\n\t"
		"addl $4, %1\n\t"
		"subl $4, %2\n\t"
		"jnz 1b\n\t"
		: /* No outputs */
		: "a" (0), "D" (addr), "c" (size)
		);
}

#endif /* CPU_X86_MEM_H */