Skip to content
Permalink
696ac77484
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (17 sloc) 477 Bytes
#if IS_IN (libc)
# define VEC_SIZE 16
# define VEC(i) xmm##i
/* Don't use movups and movaps since it will get larger nop paddings
for alignment. */
# define VMOVU movdqu
# define VMOVA movdqa
# define VDUP_TO_VEC0_AND_SET_RETURN(d, r) \
movd d, %xmm0; \
movq r, %rax; \
punpcklbw %xmm0, %xmm0; \
punpcklwd %xmm0, %xmm0; \
pshufd $0, %xmm0, %xmm0
# define SECTION(p) p
# define MEMSET_SYMBOL(p,s) p##_sse2_##s
# include "memset-vec-unaligned-erms.S"
#endif