1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
From 179766aa2ef06df854bc1d9616bf6f00ce49b7f9 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue, 30 May 2017 14:23:24 +0200
Subject: [PATCH] towupper/towlower: fast path for ascii chars
Make a fast path for ascii chars which is assumed to be the most common
case. This has significant performance benefit on xml json and similar
---
src/ctype/towctrans.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/ctype/towctrans.c b/src/ctype/towctrans.c
index 6af61875..cf13a862 100644
--- a/src/ctype/towctrans.c
+++ b/src/ctype/towctrans.c
@@ -1,3 +1,4 @@
+#include <ctype.h>
#include <wctype.h>
#include "libc.h"
@@ -9,7 +10,6 @@ static const struct {
signed char lower;
unsigned char len;
} casemaps[] = {
- CASEMAP('A','Z','a'),
CASEMAP(0xc0,0xde,0xe0),
CASELACE(0x0100,0x012e),
@@ -257,12 +257,12 @@ static wchar_t __towcase(wchar_t wc, int lower)
wint_t towupper(wint_t wc)
{
- return __towcase(wc, 0);
+ return (unsigned)wc < 128 ? toupper(wc) : __towcase(wc, 0);
}
wint_t towlower(wint_t wc)
{
- return __towcase(wc, 1);
+ return (unsigned)wc < 128 ? tolower(wc) : __towcase(wc, 1);
}
wint_t __towupper_l(wint_t c, locale_t l)
--
2.13.0
|