From 0bea5c010822d29aa9e614f86ee4e71cac7876cb Mon Sep 17 00:00:00 2001 From: tjr Date: Fri, 9 Jul 2004 15:46:06 +0000 Subject: Add fast paths for conversion of plain ASCII characters. --- lib/libc/locale/utf8.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'lib') diff --git a/lib/libc/locale/utf8.c b/lib/libc/locale/utf8.c index c0fbcf4..bab04f0 100644 --- a/lib/libc/locale/utf8.c +++ b/lib/libc/locale/utf8.c @@ -90,6 +90,13 @@ _UTF8_mbrtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n, /* Incomplete multibyte sequence */ return ((size_t)-2); + if (us->want == 0 && ((ch = (unsigned char)*s) & ~0x7f) == 0) { + /* Fast path for plain ASCII characters. */ + if (pwc != NULL) + *pwc = ch; + return (ch != '\0' ? 1 : 0); + } + if (us->want == 0) { /* * Determine the number of octets that make up this character @@ -198,6 +205,12 @@ _UTF8_wcrtomb(char * __restrict s, wchar_t wc, mbstate_t * __restrict ps) /* Reset to initial shift state (no-op) */ return (1); + if ((wc & ~0x7f) == 0) { + /* Fast path for plain ASCII characters. */ + *s = (char)wc; + return (1); + } + /* * Determine the number of octets needed to represent this character. * We always output the shortest sequence possible. Also specify the -- cgit v1.1