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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
7231dff1
Commit
7231dff1
authored
Feb 02, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring to skip generating arg tuple unpacking code if we know there will be keyword arguments
parent
94aede41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
28 deletions
+37
-28
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+37
-28
No files found.
Cython/Compiler/Nodes.py
View file @
7231dff1
...
...
@@ -1249,17 +1249,34 @@ class DefNode(FuncDefNode):
error
(
arg
.
pos
,
"Cannot convert Python object argument to type '%s' (when parsing input arguments)"
%
arg
.
type
)
error_return_code
=
"return %s;"
%
self
.
error_value
()
argformat
=
'"%s"'
%
string
.
join
(
arg_formats
,
""
)
if
has_star_or_kw_args
:
self
.
generate_stararg_getting_code
(
code
)
pt_arglist
=
[
Naming
.
args_cname
,
Naming
.
kwds_cname
,
argformat
,
Naming
.
kwdlist_cname
]
+
arg_addrs
pt_argstring
=
string
.
join
(
pt_arglist
,
", "
)
old_error_label
=
code
.
new_error_label
()
our_error_label
=
code
.
error_label
end_label
=
code
.
new_label
()
# Unpack inplace if it's simple
self
.
generate_argument_tuple_parsing_code
(
positional_args
,
arg_formats
,
arg_addrs
,
code
)
code
.
error_label
=
old_error_label
code
.
put_goto
(
end_label
)
code
.
put_label
(
our_error_label
)
if
has_star_or_kw_args
:
self
.
put_stararg_decrefs
(
code
)
self
.
generate_arg_decref
(
self
.
star_arg
,
code
)
if
self
.
starstar_arg
:
if
self
.
starstar_arg
.
entry
.
xdecref_cleanup
:
code
.
put_var_xdecref
(
self
.
starstar_arg
.
entry
)
else
:
code
.
put_var_decref
(
self
.
starstar_arg
.
entry
)
code
.
putln
(
"return %s;"
%
self
.
error_value
())
code
.
put_label
(
end_label
)
def
generate_argument_tuple_parsing_code
(
self
,
positional_args
,
arg_formats
,
arg_addrs
,
code
):
# Unpack inplace if it's simple
if
not
self
.
num_required_kw_args
:
min_positional_args
=
self
.
num_required_args
-
self
.
num_required_kw_args
max_positional_args
=
len
(
positional_args
)
if
len
(
self
.
args
)
>
0
and
self
.
args
[
0
].
is_self_arg
:
...
...
@@ -1301,28 +1318,20 @@ class DefNode(FuncDefNode):
code
.
putln
(
'}'
)
code
.
putln
(
'}'
)
code
.
putln
(
'else {'
)
code
.
putln
(
'if (unlikely(!PyArg_ParseTupleAndKeywords(%s))) %s'
%
(
pt_argstring
,
code
.
error_goto
(
self
.
pos
)))
self
.
generate_argument_conversion_code
(
code
)
code
.
putln
(
'}'
)
code
.
error_label
=
old_error_label
code
.
put_goto
(
end_label
)
code
.
put_label
(
our_error_label
)
if
has_star_or_kw_args
:
self
.
put_stararg_decrefs
(
code
)
self
.
generate_arg_decref
(
self
.
star_arg
,
code
)
if
self
.
starstar_arg
:
if
self
.
starstar_arg
.
entry
.
xdecref_cleanup
:
code
.
put_var_xdecref
(
self
.
starstar_arg
.
entry
)
else
:
code
.
put_var_decref
(
self
.
starstar_arg
.
entry
)
code
.
putln
(
error_return_code
)
code
.
put_label
(
end_label
)
code
.
putln
(
'else {'
)
argformat
=
'"%s"'
%
string
.
join
(
arg_formats
,
""
)
pt_arglist
=
[
Naming
.
args_cname
,
Naming
.
kwds_cname
,
argformat
,
Naming
.
kwdlist_cname
]
+
arg_addrs
pt_argstring
=
string
.
join
(
pt_arglist
,
", "
)
code
.
putln
(
'if (unlikely(!PyArg_ParseTupleAndKeywords(%s))) %s'
%
(
pt_argstring
,
code
.
error_goto
(
self
.
pos
)))
self
.
generate_argument_conversion_code
(
code
)
if
not
self
.
num_required_kw_args
:
code
.
putln
(
'}'
)
def
put_stararg_decrefs
(
self
,
code
):
if
self
.
star_arg
:
...
...
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