Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
3b98c83a
Commit
3b98c83a
authored
Mar 21, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimise unicode.split() and unicode.splitlines()
parent
c2de390d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
10 deletions
+56
-10
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+56
-10
No files found.
Cython/Compiler/Optimize.py
View file @
3b98c83a
...
@@ -1405,8 +1405,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
...
@@ -1405,8 +1405,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
PyrexTypes
.
CFuncTypeArg
(
"dict"
,
PyrexTypes
.
py_object_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"dict"
,
PyrexTypes
.
py_object_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"key"
,
PyrexTypes
.
py_object_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"key"
,
PyrexTypes
.
py_object_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"default"
,
PyrexTypes
.
py_object_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"default"
,
PyrexTypes
.
py_object_type
,
None
),
],
])
exception_value
=
"NULL"
)
def
_handle_simple_method_dict_get
(
self
,
node
,
args
,
is_unbound_method
):
def
_handle_simple_method_dict_get
(
self
,
node
,
args
,
is_unbound_method
):
"""Replace dict.get() by a call to PyDict_GetItem().
"""Replace dict.get() by a call to PyDict_GetItem().
...
@@ -1422,19 +1421,68 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
...
@@ -1422,19 +1421,68 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
'get'
,
is_unbound_method
,
args
,
'get'
,
is_unbound_method
,
args
,
utility_code
=
dict_getitem_default_utility_code
)
utility_code
=
dict_getitem_default_utility_code
)
PyUnicode_Splitlines_func_type
=
PyrexTypes
.
CFuncType
(
Builtin
.
list_type
,
[
PyrexTypes
.
CFuncTypeArg
(
"str"
,
Builtin
.
unicode_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"keepends"
,
PyrexTypes
.
c_bint_type
,
None
),
])
def
_handle_simple_method_unicode_splitlines
(
self
,
node
,
args
,
is_unbound_method
):
"""Replace unicode.splitlines(...) by a direct call to the
corresponding C-API function.
"""
if
len
(
args
)
not
in
(
1
,
2
):
self
.
_error_wrong_arg_count
(
'unicode.splitlines'
,
node
,
args
,
"1 or 2"
)
return
node
if
len
(
args
)
<
2
:
args
.
append
(
ExprNodes
.
BoolNode
(
node
.
pos
,
value
=
False
))
else
:
args
[
1
]
=
args
[
1
].
coerce_to
(
PyrexTypes
.
c_bint_type
,
self
.
env_stack
[
-
1
])
return
self
.
_substitute_method_call
(
node
,
"PyUnicode_Splitlines"
,
self
.
PyUnicode_Splitlines_func_type
,
'splitlines'
,
is_unbound_method
,
args
)
PyUnicode_Split_func_type
=
PyrexTypes
.
CFuncType
(
Builtin
.
list_type
,
[
PyrexTypes
.
CFuncTypeArg
(
"str"
,
Builtin
.
unicode_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"sep"
,
PyrexTypes
.
py_object_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"maxsplit"
,
PyrexTypes
.
c_py_ssize_t_type
,
None
),
]
)
def
_handle_simple_method_unicode_split
(
self
,
node
,
args
,
is_unbound_method
):
"""Replace unicode.split(...) by a direct call to the
corresponding C-API function.
"""
if
len
(
args
)
not
in
(
1
,
2
,
3
):
self
.
_error_wrong_arg_count
(
'unicode.split'
,
node
,
args
,
"1-3"
)
return
node
if
len
(
args
)
<
2
:
args
.
append
(
ExprNodes
.
NullNode
(
node
.
pos
))
if
len
(
args
)
<
3
:
args
.
append
(
ExprNodes
.
IntNode
(
node
.
pos
,
value
=
"-1"
,
type
=
PyrexTypes
.
c_py_ssize_t_type
))
else
:
args
[
2
]
=
args
[
2
].
coerce_to
(
PyrexTypes
.
c_py_ssize_t_type
,
self
.
env_stack
[
-
1
])
return
self
.
_substitute_method_call
(
node
,
"PyUnicode_Split"
,
self
.
PyUnicode_Split_func_type
,
'split'
,
is_unbound_method
,
args
)
PyUnicode_AsEncodedString_func_type
=
PyrexTypes
.
CFuncType
(
PyUnicode_AsEncodedString_func_type
=
PyrexTypes
.
CFuncType
(
Builtin
.
bytes_type
,
[
Builtin
.
bytes_type
,
[
PyrexTypes
.
CFuncTypeArg
(
"obj"
,
Builtin
.
unicode_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"obj"
,
Builtin
.
unicode_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"encoding"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"encoding"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"errors"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"errors"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
],
])
exception_value
=
"NULL"
)
PyUnicode_AsXyzString_func_type
=
PyrexTypes
.
CFuncType
(
PyUnicode_AsXyzString_func_type
=
PyrexTypes
.
CFuncType
(
Builtin
.
bytes_type
,
[
Builtin
.
bytes_type
,
[
PyrexTypes
.
CFuncTypeArg
(
"obj"
,
Builtin
.
unicode_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"obj"
,
Builtin
.
unicode_type
,
None
),
],
])
exception_value
=
"NULL"
)
_special_encodings
=
[
'UTF8'
,
'UTF16'
,
'Latin1'
,
'ASCII'
,
_special_encodings
=
[
'UTF8'
,
'UTF16'
,
'Latin1'
,
'ASCII'
,
'unicode_escape'
,
'raw_unicode_escape'
]
'unicode_escape'
,
'raw_unicode_escape'
]
...
@@ -1498,8 +1546,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
...
@@ -1498,8 +1546,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
PyrexTypes
.
CFuncTypeArg
(
"string"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"string"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"size"
,
PyrexTypes
.
c_py_ssize_t_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"size"
,
PyrexTypes
.
c_py_ssize_t_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"errors"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"errors"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
],
])
exception_value
=
"NULL"
)
PyUnicode_Decode_func_type
=
PyrexTypes
.
CFuncType
(
PyUnicode_Decode_func_type
=
PyrexTypes
.
CFuncType
(
Builtin
.
unicode_type
,
[
Builtin
.
unicode_type
,
[
...
@@ -1507,8 +1554,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
...
@@ -1507,8 +1554,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
PyrexTypes
.
CFuncTypeArg
(
"size"
,
PyrexTypes
.
c_py_ssize_t_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"size"
,
PyrexTypes
.
c_py_ssize_t_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"encoding"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"encoding"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"errors"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
PyrexTypes
.
CFuncTypeArg
(
"errors"
,
PyrexTypes
.
c_char_ptr_type
,
None
),
],
])
exception_value
=
"NULL"
)
def
_handle_simple_method_bytes_decode
(
self
,
node
,
args
,
is_unbound_method
):
def
_handle_simple_method_bytes_decode
(
self
,
node
,
args
,
is_unbound_method
):
"""Replace char*.decode() by a direct C-API call to the
"""Replace char*.decode() by a direct C-API call to the
...
...
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