提交 890890cb 编写于 作者: A Alexey Dobriyan 提交者: Ingo Molnar

x86/i386: Use less assembly in strlen(), speed things up a bit

Current i386 strlen() hardcodes NOT/DEC sequence. DEC is
mentioned to be suboptimal on Core2. So, put only REPNE SCASB
sequence in assembly, compiler can do the rest.

The difference in generated code is like below (MCORE2=y):

	<strlen>:
		push   %edi
		mov    $0xffffffff,%ecx
		mov    %eax,%edi
		xor    %eax,%eax
		repnz scas %es:(%edi),%al
		not    %ecx

	-	dec    %ecx
	-	mov    %ecx,%eax
	+	lea    -0x1(%ecx),%eax

		pop    %edi
		ret
Signed-off-by: NAlexey Dobriyan <adobriyan@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Jan Beulich <JBeulich@suse.com>
Link: http://lkml.kernel.org/r/20111211181319.GA17097@p183.telecom.bySigned-off-by: NIngo Molnar <mingo@elte.hu>
上级 79f1ddd0
...@@ -164,15 +164,13 @@ EXPORT_SYMBOL(strchr); ...@@ -164,15 +164,13 @@ EXPORT_SYMBOL(strchr);
size_t strlen(const char *s) size_t strlen(const char *s)
{ {
int d0; int d0;
int res; size_t res;
asm volatile("repne\n\t" asm volatile("repne\n\t"
"scasb\n\t" "scasb"
"notl %0\n\t"
"decl %0"
: "=c" (res), "=&D" (d0) : "=c" (res), "=&D" (d0)
: "1" (s), "a" (0), "0" (0xffffffffu) : "1" (s), "a" (0), "0" (0xffffffffu)
: "memory"); : "memory");
return res; return ~res - 1;
} }
EXPORT_SYMBOL(strlen); EXPORT_SYMBOL(strlen);
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册