Files
Nicholas Piggin a00971e194 libc/string: speed up common string functions
Use compiler builtins for the string functions, and compile the
libc/string/ directory with -O2.

This reduces instructions booting skiboot in mambo by 2.9 million in
slow-sim mode, or 3.8 in normal mode, for less than 1kB image size
increase.

This can result in the compiler warning more cases of string function
problems.

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
2019-05-20 14:20:29 +10:00

55 lines
1.3 KiB
C

/******************************************************************************
* Copyright (c) 2004, 2008 IBM Corporation
* All rights reserved.
* This program and the accompanying materials
* are made available under the terms of the BSD License
* which accompanies this distribution, and is available at
* http://www.opensource.org/licenses/bsd-license.php
*
* Contributors:
* IBM Corporation - initial implementation
*****************************************************************************/
#define CACHE_LINE_SIZE 128
#include <stddef.h>
void *memset(void *dest, int c, size_t size);
void *memset(void *dest, int c, size_t size)
{
unsigned char *d = (unsigned char *)dest;
unsigned long big_c = 0;
#if defined(__powerpc__) || defined(__powerpc64__)
if (size > CACHE_LINE_SIZE && c==0) {
while ((unsigned long long)d % CACHE_LINE_SIZE) {
*d++ = (unsigned char)c;
size--;
}
while (size >= CACHE_LINE_SIZE) {
asm volatile ("dcbz 0,%0\n" : : "r"(d) : "memory");
d+= CACHE_LINE_SIZE;
size-= CACHE_LINE_SIZE;
}
}
#endif
if (c) {
big_c = c;
big_c |= (big_c << 8) | big_c;
big_c |= (big_c << 16) | big_c;
big_c |= (big_c << 32) | big_c;
}
while (size >= 8 && c == 0) {
*((unsigned long *)d) = big_c;
d+=8;
size-=8;
}
while (size-- > 0) {
*d++ = (unsigned char)c;
}
return dest;
}