summaryrefslogtreecommitdiffstats
path: root/memset.c
blob: e034dbeae5edb1184f10cc775f10f156caa00f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "config.h"

#ifdef USE_FASTMEMSET
#if defined(HAVE_SSE) || defined(HAVE_SSE2)
/* (C) 2001 Csabai Csaba <csibi@diablo.ovinet.hu> */
inline void *fast_memset(void *ptr, long val, long num) 
{
    __asm__ __volatile__(
	"cmpxchg8 (%2)"
	: "=a" (val), "=d" (num)
	: "r" (ptr), "0" (val), "1" (num)
	:"memory");

    return(ptr);
}
#endif
#endif