memset_64.S 3.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/* Copyright 2002 Andi Kleen, SuSE Labs */
2 3 4

#include <linux/linkage.h>
#include <asm/dwarf2.h>
5 6
#include <asm/cpufeature.h>
#include <asm/alternative-asm.h>
7

L
Linus Torvalds 已提交
8
/*
9 10 11
 * ISO C memset - set a memory block to a byte value. This function uses fast
 * string to get better performance than the original function. The code is
 * simpler and shorter than the orignal function as well.
L
Linus Torvalds 已提交
12 13 14 15 16 17 18
 *	
 * rdi   destination
 * rsi   value (char) 
 * rdx   count (bytes) 
 * 
 * rax   original destination
 */	
19 20
	.section .altinstr_replacement, "ax", @progbits
.Lmemset_c:
21
	movq %rdi,%r9
22 23 24
	movq %rdx,%rcx
	andl $7,%edx
	shrq $3,%rcx
25 26 27
	/* expand byte value  */
	movzbl %sil,%esi
	movabs $0x0101010101010101,%rax
28
	imulq %rsi,%rax
29
	rep stosq
30
	movl %edx,%ecx
31 32 33
	rep stosb
	movq %r9,%rax
	ret
34 35
.Lmemset_e:
	.previous
36

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
/*
 * ISO C memset - set a memory block to a byte value. This function uses
 * enhanced rep stosb to override the fast string function.
 * The code is simpler and shorter than the fast string function as well.
 *
 * rdi   destination
 * rsi   value (char)
 * rdx   count (bytes)
 *
 * rax   original destination
 */
	.section .altinstr_replacement, "ax", @progbits
.Lmemset_c_e:
	movq %rdi,%r9
	movb %sil,%al
52
	movq %rdx,%rcx
53 54 55 56 57 58
	rep stosb
	movq %r9,%rax
	ret
.Lmemset_e_e:
	.previous

59 60
.weak memset

61 62 63
ENTRY(memset)
ENTRY(__memset)
	CFI_STARTPROC
64 65 66 67 68
	movq %rdi,%r10

	/* expand byte value  */
	movzbl %sil,%ecx
	movabs $0x0101010101010101,%rax
69
	imulq  %rcx,%rax
70 71 72 73 74

	/* align dst */
	movl  %edi,%r9d
	andl  $7,%r9d
	jnz  .Lbad_alignment
75
	CFI_REMEMBER_STATE
76 77
.Lafter_bad_alignment:

78 79
	movq  %rdx,%rcx
	shrq  $6,%rcx
80 81 82 83
	jz	 .Lhandle_tail

	.p2align 4
.Lloop_64:
84
	decq  %rcx
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	movq  %rax,(%rdi)
	movq  %rax,8(%rdi)
	movq  %rax,16(%rdi)
	movq  %rax,24(%rdi)
	movq  %rax,32(%rdi)
	movq  %rax,40(%rdi)
	movq  %rax,48(%rdi)
	movq  %rax,56(%rdi)
	leaq  64(%rdi),%rdi
	jnz    .Lloop_64

	/* Handle tail in loops. The loops should be faster than hard
	   to predict jump tables. */
	.p2align 4
.Lhandle_tail:
100
	movl	%edx,%ecx
101 102 103 104 105 106 107 108 109 110 111
	andl    $63&(~7),%ecx
	jz 		.Lhandle_7
	shrl	$3,%ecx
	.p2align 4
.Lloop_8:
	decl   %ecx
	movq  %rax,(%rdi)
	leaq  8(%rdi),%rdi
	jnz    .Lloop_8

.Lhandle_7:
112
	andl	$7,%edx
113 114 115
	jz      .Lende
	.p2align 4
.Lloop_1:
116
	decl    %edx
117 118 119 120 121 122 123 124
	movb 	%al,(%rdi)
	leaq	1(%rdi),%rdi
	jnz     .Lloop_1

.Lende:
	movq	%r10,%rax
	ret

125
	CFI_RESTORE_STATE
126
.Lbad_alignment:
127
	cmpq $7,%rdx
128 129 130 131 132
	jbe	.Lhandle_7
	movq %rax,(%rdi)	/* unaligned store */
	movq $8,%r8
	subq %r9,%r8
	addq %r8,%rdi
133
	subq %r8,%rdx
134
	jmp .Lafter_bad_alignment
135 136 137 138
.Lfinal:
	CFI_ENDPROC
ENDPROC(memset)
ENDPROC(__memset)
139

140 141 142 143 144 145 146 147 148 149 150
	/* Some CPUs support enhanced REP MOVSB/STOSB feature.
	 * It is recommended to use this when possible.
	 *
	 * If enhanced REP MOVSB/STOSB feature is not available, use fast string
	 * instructions.
	 *
	 * Otherwise, use original memset function.
	 *
	 * In .altinstructions section, ERMS feature is placed after REG_GOOD
         * feature to implement the right patch order.
	 */
151
	.section .altinstructions,"a"
152
	altinstruction_entry __memset,.Lmemset_c,X86_FEATURE_REP_GOOD,\
153
			     .Lfinal-__memset,.Lmemset_e-.Lmemset_c,0
154
	altinstruction_entry __memset,.Lmemset_c_e,X86_FEATURE_ERMS, \
155
			     .Lfinal-__memset,.Lmemset_e_e-.Lmemset_c_e,0
156
	.previous