Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ca5f91b8
Commit
ca5f91b8
authored
May 10, 2012
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy Storchaka.
parent
fda08b08
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
316 additions
and
552 deletions
+316
-552
Misc/NEWS
Misc/NEWS
+3
-0
Objects/stringlib/asciilib.h
Objects/stringlib/asciilib.h
+1
-0
Objects/stringlib/codecs.h
Objects/stringlib/codecs.h
+143
-78
Objects/stringlib/ucs1lib.h
Objects/stringlib/ucs1lib.h
+1
-0
Objects/stringlib/ucs2lib.h
Objects/stringlib/ucs2lib.h
+1
-0
Objects/stringlib/ucs4lib.h
Objects/stringlib/ucs4lib.h
+1
-0
Objects/stringlib/undef.h
Objects/stringlib/undef.h
+1
-0
Objects/unicodeobject.c
Objects/unicodeobject.c
+165
-474
No files found.
Misc/NEWS
View file @
ca5f91b8
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 4?
Core and Builtins
-----------------
- Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy
Storchaka.
- Issue #14700: Fix two broken and undefined-behaviour-inducing overflow checks
in old-style string formatting.
...
...
Objects/stringlib/asciilib.h
View file @
ca5f91b8
...
...
@@ -7,6 +7,7 @@
#define STRINGLIB(F) asciilib_##F
#define STRINGLIB_OBJECT PyUnicodeObject
#define STRINGLIB_SIZEOF_CHAR 1
#define STRINGLIB_MAX_CHAR 0x7Fu
#define STRINGLIB_CHAR Py_UCS1
#define STRINGLIB_TYPE_NAME "unicode"
#define STRINGLIB_PARSE_CODE "U"
...
...
Objects/stringlib/codecs.h
View file @
ca5f91b8
...
...
@@ -15,19 +15,18 @@
# error C 'long' size should be either 4 or 8!
#endif
Py_LOCAL_INLINE
(
int
)
STRINGLIB
(
utf8_
try_decode
)(
const
char
*
start
,
const
char
*
end
,
STRINGLIB_CHAR
*
dest
,
const
char
**
src_pos
,
Py_ssize_t
*
dest_index
)
Py_LOCAL_INLINE
(
Py_UCS4
)
STRINGLIB
(
utf8_
decode
)(
const
char
**
inptr
,
const
char
*
end
,
STRINGLIB_CHAR
*
dest
,
Py_ssize_t
*
outpos
)
{
int
ret
;
Py_ssize_t
n
;
const
char
*
s
=
start
;
Py_UCS4
ch
;
const
char
*
s
=
*
inptr
;
const
char
*
aligned_end
=
(
const
char
*
)
((
size_t
)
end
&
~
LONG_PTR_MASK
);
STRINGLIB_CHAR
*
p
=
dest
;
STRINGLIB_CHAR
*
p
=
dest
+
*
outpos
;
while
(
s
<
end
)
{
Py_UCS4
ch
=
(
unsigned
char
)
*
s
;
ch
=
(
unsigned
char
)
*
s
;
if
(
ch
<
0x80
)
{
/* Fast path for runs of ASCII characters. Given that common UTF-8
...
...
@@ -48,15 +47,33 @@ STRINGLIB(utf8_try_decode)(const char *start, const char *end,
unsigned
long
value
=
*
(
unsigned
long
*
)
_s
;
if
(
value
&
ASCII_CHAR_MASK
)
break
;
_p
[
0
]
=
_s
[
0
];
_p
[
1
]
=
_s
[
1
];
_p
[
2
]
=
_s
[
2
];
_p
[
3
]
=
_s
[
3
];
#if (SIZEOF_LONG == 8)
_p
[
4
]
=
_s
[
4
];
_p
[
5
]
=
_s
[
5
];
_p
[
6
]
=
_s
[
6
];
_p
[
7
]
=
_s
[
7
];
#ifdef BYTEORDER_IS_LITTLE_ENDIAN
_p
[
0
]
=
(
STRINGLIB_CHAR
)(
value
&
0xFFu
);
_p
[
1
]
=
(
STRINGLIB_CHAR
)((
value
>>
8
)
&
0xFFu
);
_p
[
2
]
=
(
STRINGLIB_CHAR
)((
value
>>
16
)
&
0xFFu
);
_p
[
3
]
=
(
STRINGLIB_CHAR
)((
value
>>
24
)
&
0xFFu
);
# if SIZEOF_LONG == 8
_p
[
4
]
=
(
STRINGLIB_CHAR
)((
value
>>
32
)
&
0xFFu
);
_p
[
5
]
=
(
STRINGLIB_CHAR
)((
value
>>
40
)
&
0xFFu
);
_p
[
6
]
=
(
STRINGLIB_CHAR
)((
value
>>
48
)
&
0xFFu
);
_p
[
7
]
=
(
STRINGLIB_CHAR
)((
value
>>
56
)
&
0xFFu
);
# endif
#else
# if SIZEOF_LONG == 8
_p
[
0
]
=
(
STRINGLIB_CHAR
)((
value
>>
56
)
&
0xFFu
);
_p
[
1
]
=
(
STRINGLIB_CHAR
)((
value
>>
48
)
&
0xFFu
);
_p
[
2
]
=
(
STRINGLIB_CHAR
)((
value
>>
40
)
&
0xFFu
);
_p
[
3
]
=
(
STRINGLIB_CHAR
)((
value
>>
32
)
&
0xFFu
);
_p
[
4
]
=
(
STRINGLIB_CHAR
)((
value
>>
24
)
&
0xFFu
);
_p
[
5
]
=
(
STRINGLIB_CHAR
)((
value
>>
16
)
&
0xFFu
);
_p
[
6
]
=
(
STRINGLIB_CHAR
)((
value
>>
8
)
&
0xFFu
);
_p
[
7
]
=
(
STRINGLIB_CHAR
)(
value
&
0xFFu
);
# else
_p
[
0
]
=
(
STRINGLIB_CHAR
)((
value
>>
24
)
&
0xFFu
);
_p
[
1
]
=
(
STRINGLIB_CHAR
)((
value
>>
16
)
&
0xFFu
);
_p
[
2
]
=
(
STRINGLIB_CHAR
)((
value
>>
8
)
&
0xFFu
);
_p
[
3
]
=
(
STRINGLIB_CHAR
)(
value
&
0xFFu
);
# endif
#endif
_s
+=
SIZEOF_LONG
;
_p
+=
SIZEOF_LONG
;
...
...
@@ -67,87 +84,135 @@ STRINGLIB(utf8_try_decode)(const char *start, const char *end,
break
;
ch
=
(
unsigned
char
)
*
s
;
}
if
(
ch
<
0x80
)
{
s
++
;
*
p
++
=
ch
;
continue
;
}
}
if
(
ch
<
0x80
)
{
s
++
;
*
p
++
=
ch
;
continue
;
}
n
=
utf8_code_length
[
ch
];
if
(
s
+
n
>
end
)
{
/* unexpected end of data: the caller will decide whether
it's an error or not */
goto
_error
;
if
(
ch
<
0xC2
)
{
/* invalid sequence
\x80-\xBF -- continuation byte
\xC0-\xC1 -- fake 0000-007F */
goto
InvalidStart
;
}
switch
(
n
)
{
case
0
:
/* invalid start byte */
goto
_error
;
case
1
:
/* internal error */
goto
_error
;
case
2
:
if
((
s
[
1
]
&
0xc0
)
!=
0x80
)
if
(
ch
<
0xE0
)
{
/* \xC2\x80-\xDF\xBF -- 0080-07FF */
Py_UCS4
ch2
;
if
(
end
-
s
<
2
)
{
/* unexpected end of data: the caller will decide whether
it's an error or not */
break
;
}
ch2
=
(
unsigned
char
)
s
[
1
];
if
((
ch2
&
0xC0
)
!=
0x80
)
/* invalid continuation byte */
goto
_error
;
ch
=
((
s
[
0
]
&
0x1f
)
<<
6
)
+
(
s
[
1
]
&
0x3f
);
goto
InvalidContinuation
;
ch
=
(
ch
<<
6
)
+
ch2
-
((
0xC0
<<
6
)
+
0x80
);
assert
((
ch
>
0x007F
)
&&
(
ch
<=
0x07FF
));
s
+=
2
;
if
(
STRINGLIB_MAX_CHAR
<=
0x007F
||
(
STRINGLIB_MAX_CHAR
<
0x07FF
&&
ch
>
STRINGLIB_MAX_CHAR
))
goto
Overflow
;
*
p
++
=
ch
;
break
;
continue
;
}
case
3
:
/*
Decoding UTF-8 sequences in range \xed\xa0\x80-\xed\xbf\xbf
will result in surrogates in range d800-dfff. Surrogates are
not valid UTF-8 so they are rejected.
See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
(table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.tx
t */
if
((
s
[
1
]
&
0xc0
)
!=
0x80
||
(
s
[
2
]
&
0xc0
)
!=
0x80
||
((
unsigned
char
)
s
[
0
]
==
0xE0
&&
(
unsigned
char
)
s
[
1
]
<
0xA0
)
||
((
unsigned
char
)
s
[
0
]
==
0xED
&&
(
unsigned
char
)
s
[
1
]
>
0x9F
)
)
{
if
(
ch
<
0xF0
)
{
/*
\xE0\xA0\x80-\xEF\xBF\xBF -- 0800-FFFF */
Py_UCS4
ch2
,
ch3
;
if
(
end
-
s
<
3
)
{
/* unexpected end of data: the caller will decide whether
it's an error or no
t */
break
;
}
ch2
=
(
unsigned
char
)
s
[
1
];
ch3
=
(
unsigned
char
)
s
[
2
];
if
((
ch2
&
0xC0
)
!=
0x80
||
(
ch3
&
0xC0
)
!=
0x80
)
{
/* invalid continuation byte */
goto
_error
;
goto
InvalidContinuation
;
}
if
(
ch
==
0xE0
)
{
if
(
ch2
<
0xA0
)
/* invalid sequence
\xE0\x80\x80-\xE0\x9F\xBF -- fake 0000-0800 */
goto
InvalidContinuation
;
}
ch
=
((
s
[
0
]
&
0x0f
)
<<
12
)
+
((
s
[
1
]
&
0x3f
)
<<
6
)
+
(
s
[
2
]
&
0x3f
);
else
if
(
ch
==
0xED
&&
ch2
>
0x9F
)
{
/* Decoding UTF-8 sequences in range \xED\xA0\x80-\xED\xBF\xBF
will result in surrogates in range D800-DFFF. Surrogates are
not valid UTF-8 so they are rejected.
See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
(table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
goto
InvalidContinuation
;
}
ch
=
(
ch
<<
12
)
+
(
ch2
<<
6
)
+
ch3
-
((
0xE0
<<
12
)
+
(
0x80
<<
6
)
+
0x80
);
assert
((
ch
>
0x07FF
)
&&
(
ch
<=
0xFFFF
));
s
+=
3
;
if
(
STRINGLIB_MAX_CHAR
<=
0x07FF
||
(
STRINGLIB_MAX_CHAR
<
0xFFFF
&&
ch
>
STRINGLIB_MAX_CHAR
))
goto
Overflow
;
*
p
++
=
ch
;
break
;
continue
;
}
case
4
:
if
((
s
[
1
]
&
0xc0
)
!=
0x80
||
(
s
[
2
]
&
0xc0
)
!=
0x80
||
(
s
[
3
]
&
0xc0
)
!=
0x80
||
((
unsigned
char
)
s
[
0
]
==
0xF0
&&
(
unsigned
char
)
s
[
1
]
<
0x90
)
||
((
unsigned
char
)
s
[
0
]
==
0xF4
&&
(
unsigned
char
)
s
[
1
]
>
0x8F
))
{
if
(
ch
<
0xF5
)
{
/* \xF0\x90\x80\x80-\xF4\x8F\xBF\xBF -- 10000-10FFFF */
Py_UCS4
ch2
,
ch3
,
ch4
;
if
(
end
-
s
<
4
)
{
/* unexpected end of data: the caller will decide whether
it's an error or not */
break
;
}
ch2
=
(
unsigned
char
)
s
[
1
];
ch3
=
(
unsigned
char
)
s
[
2
];
ch4
=
(
unsigned
char
)
s
[
3
];
if
((
ch2
&
0xC0
)
!=
0x80
||
(
ch3
&
0xC0
)
!=
0x80
||
(
ch4
&
0xC0
)
!=
0x80
)
{
/* invalid continuation byte */
goto
_error
;
goto
InvalidContinuation
;
}
if
(
ch
==
0xF0
)
{
if
(
ch2
<
0x90
)
/* invalid sequence
\xF0\x80\x80\x80-\xF0\x80\xBF\xBF -- fake 0000-FFFF */
goto
InvalidContinuation
;
}
ch
=
((
s
[
0
]
&
0x7
)
<<
18
)
+
((
s
[
1
]
&
0x3f
)
<<
12
)
+
((
s
[
2
]
&
0x3f
)
<<
6
)
+
(
s
[
3
]
&
0x3f
);
assert
((
ch
>
0xFFFF
)
&&
(
ch
<=
0x10ffff
));
else
if
(
ch
==
0xF4
&&
ch2
>
0x8F
)
{
/* invalid sequence
\xF4\x90\x80\80- -- 110000- overflow */
goto
InvalidContinuation
;
}
ch
=
(
ch
<<
18
)
+
(
ch2
<<
12
)
+
(
ch3
<<
6
)
+
ch4
-
((
0xF0
<<
18
)
+
(
0x80
<<
12
)
+
(
0x80
<<
6
)
+
0x80
);
assert
((
ch
>
0xFFFF
)
&&
(
ch
<=
0x10FFFF
));
s
+=
4
;
if
(
STRINGLIB_MAX_CHAR
<=
0xFFFF
||
(
STRINGLIB_MAX_CHAR
<
0x10FFFF
&&
ch
>
STRINGLIB_MAX_CHAR
))
goto
Overflow
;
*
p
++
=
ch
;
break
;
continue
;
}
goto
InvalidStart
;
}
ret
=
0
;
goto
_ok
;
_error:
ret
=
-
1
;
_ok:
*
src_pos
=
s
;
*
dest_index
=
p
-
dest
;
return
ret
;
ch
=
0
;
Overflow:
Return:
*
inptr
=
s
;
*
outpos
=
p
-
dest
;
return
ch
;
InvalidStart:
ch
=
1
;
goto
Return
;
InvalidContinuation:
ch
=
2
;
goto
Return
;
}
#undef LONG_PTR_MASK
...
...
Objects/stringlib/ucs1lib.h
View file @
ca5f91b8
...
...
@@ -7,6 +7,7 @@
#define STRINGLIB(F) ucs1lib_##F
#define STRINGLIB_OBJECT PyUnicodeObject
#define STRINGLIB_SIZEOF_CHAR 1
#define STRINGLIB_MAX_CHAR 0xFFu
#define STRINGLIB_CHAR Py_UCS1
#define STRINGLIB_TYPE_NAME "unicode"
#define STRINGLIB_PARSE_CODE "U"
...
...
Objects/stringlib/ucs2lib.h
View file @
ca5f91b8
...
...
@@ -7,6 +7,7 @@
#define STRINGLIB(F) ucs2lib_##F
#define STRINGLIB_OBJECT PyUnicodeObject
#define STRINGLIB_SIZEOF_CHAR 2
#define STRINGLIB_MAX_CHAR 0xFFFFu
#define STRINGLIB_CHAR Py_UCS2
#define STRINGLIB_TYPE_NAME "unicode"
#define STRINGLIB_PARSE_CODE "U"
...
...
Objects/stringlib/ucs4lib.h
View file @
ca5f91b8
...
...
@@ -7,6 +7,7 @@
#define STRINGLIB(F) ucs4lib_##F
#define STRINGLIB_OBJECT PyUnicodeObject
#define STRINGLIB_SIZEOF_CHAR 4
#define STRINGLIB_MAX_CHAR 0x10FFFFu
#define STRINGLIB_CHAR Py_UCS4
#define STRINGLIB_TYPE_NAME "unicode"
#define STRINGLIB_PARSE_CODE "U"
...
...
Objects/stringlib/undef.h
View file @
ca5f91b8
#undef FASTSEARCH
#undef STRINGLIB
#undef STRINGLIB_SIZEOF_CHAR
#undef STRINGLIB_MAX_CHAR
#undef STRINGLIB_CHAR
#undef STRINGLIB_STR
#undef STRINGLIB_LEN
...
...
Objects/unicodeobject.c
View file @
ca5f91b8
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment