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
7d1e4787
Commit
7d1e4787
authored
Jun 28, 2019
by
Jeroen Demeyer
Committed by
Stefan Behnel
Jun 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add nargs variable in args-parsing code (GH-3005)
parent
9b6a02f7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
25 deletions
+30
-25
Cython/Compiler/Naming.py
Cython/Compiler/Naming.py
+1
-0
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+29
-25
No files found.
Cython/Compiler/Naming.py
View file @
7d1e4787
...
@@ -67,6 +67,7 @@ interned_prefixes = {
...
@@ -67,6 +67,7 @@ interned_prefixes = {
ctuple_type_prefix
=
pyrex_prefix
+
"ctuple_"
ctuple_type_prefix
=
pyrex_prefix
+
"ctuple_"
args_cname
=
pyrex_prefix
+
"args"
args_cname
=
pyrex_prefix
+
"args"
nargs_cname
=
pyrex_prefix
+
"nargs"
generator_cname
=
pyrex_prefix
+
"generator"
generator_cname
=
pyrex_prefix
+
"generator"
sent_value_cname
=
pyrex_prefix
+
"sent_value"
sent_value_cname
=
pyrex_prefix
+
"sent_value"
pykwdlist_cname
=
pyrex_prefix
+
"pyargnames"
pykwdlist_cname
=
pyrex_prefix
+
"pyargnames"
...
...
Cython/Compiler/Nodes.py
View file @
7d1e4787
...
@@ -3516,6 +3516,11 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3516,6 +3516,11 @@ class DefNodeWrapper(FuncDefNode):
if
entry
.
is_arg
:
if
entry
.
is_arg
:
code
.
put_var_declaration
(
entry
)
code
.
put_var_declaration
(
entry
)
# Assign nargs variable as len(args)
if
self
.
signature_has_generic_args
():
code
.
putln
(
"const Py_ssize_t %s = PyTuple_GET_SIZE(%s);"
%
(
Naming
.
nargs_cname
,
Naming
.
args_cname
))
def
generate_argument_parsing_code
(
self
,
env
,
code
):
def
generate_argument_parsing_code
(
self
,
env
,
code
):
# Generate fast equivalent of PyArg_ParseTuple call for
# Generate fast equivalent of PyArg_ParseTuple call for
# generic arguments, if any, including args/kwargs
# generic arguments, if any, including args/kwargs
...
@@ -3574,10 +3579,9 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3574,10 +3579,9 @@ class DefNodeWrapper(FuncDefNode):
if
not
self
.
star_arg
:
if
not
self
.
star_arg
:
code
.
globalstate
.
use_utility_code
(
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
"RaiseArgTupleInvalid"
,
"FunctionArguments.c"
))
UtilityCode
.
load_cached
(
"RaiseArgTupleInvalid"
,
"FunctionArguments.c"
))
code
.
putln
(
"if (unlikely(PyTuple_GET_SIZE(%s) > 0)) {"
%
code
.
putln
(
"if (unlikely(%s > 0)) {"
%
Naming
.
nargs_cname
)
Naming
.
args_cname
)
code
.
put
(
'__Pyx_RaiseArgtupleInvalid("%s", 1, 0, 0, %s); return %s;'
%
(
code
.
put
(
'__Pyx_RaiseArgtupleInvalid("%s", 1, 0, 0, PyTuple_GET_SIZE(%s)); return %s;'
%
(
self
.
name
,
Naming
.
nargs_cname
,
self
.
error_value
()))
self
.
name
,
Naming
.
args_cname
,
self
.
error_value
()))
code
.
putln
(
"}"
)
code
.
putln
(
"}"
)
if
self
.
starstar_arg
:
if
self
.
starstar_arg
:
...
@@ -3620,9 +3624,9 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3620,9 +3624,9 @@ class DefNodeWrapper(FuncDefNode):
if
self
.
self_in_stararg
and
not
self
.
target
.
is_staticmethod
:
if
self
.
self_in_stararg
and
not
self
.
target
.
is_staticmethod
:
# need to create a new tuple with 'self' inserted as first item
# need to create a new tuple with 'self' inserted as first item
code
.
put
(
"%s = PyTuple_New(
PyTuple_GET_SIZE(%s)+
1); if (unlikely(!%s)) "
%
(
code
.
put
(
"%s = PyTuple_New(
%s +
1); if (unlikely(!%s)) "
%
(
self
.
star_arg
.
entry
.
cname
,
self
.
star_arg
.
entry
.
cname
,
Naming
.
args_cname
,
Naming
.
n
args_cname
,
self
.
star_arg
.
entry
.
cname
))
self
.
star_arg
.
entry
.
cname
))
if
self
.
starstar_arg
and
self
.
starstar_arg
.
entry
.
cf_used
:
if
self
.
starstar_arg
and
self
.
starstar_arg
.
entry
.
cf_used
:
code
.
putln
(
"{"
)
code
.
putln
(
"{"
)
...
@@ -3637,8 +3641,8 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3637,8 +3641,8 @@ class DefNodeWrapper(FuncDefNode):
code
.
putln
(
"PyTuple_SET_ITEM(%s, 0, %s);"
%
(
code
.
putln
(
"PyTuple_SET_ITEM(%s, 0, %s);"
%
(
self
.
star_arg
.
entry
.
cname
,
Naming
.
self_cname
))
self
.
star_arg
.
entry
.
cname
,
Naming
.
self_cname
))
temp
=
code
.
funcstate
.
allocate_temp
(
PyrexTypes
.
c_py_ssize_t_type
,
manage_ref
=
False
)
temp
=
code
.
funcstate
.
allocate_temp
(
PyrexTypes
.
c_py_ssize_t_type
,
manage_ref
=
False
)
code
.
putln
(
"for (%s=0; %s <
PyTuple_GET_SIZE(%s)
; %s++) {"
%
(
code
.
putln
(
"for (%s=0; %s <
%s
; %s++) {"
%
(
temp
,
temp
,
Naming
.
args_cname
,
temp
))
temp
,
temp
,
Naming
.
n
args_cname
,
temp
))
code
.
putln
(
"PyObject* item = PyTuple_GET_ITEM(%s, %s);"
%
(
code
.
putln
(
"PyObject* item = PyTuple_GET_ITEM(%s, %s);"
%
(
Naming
.
args_cname
,
temp
))
Naming
.
args_cname
,
temp
))
code
.
put_incref
(
"item"
,
py_object_type
)
code
.
put_incref
(
"item"
,
py_object_type
)
...
@@ -3754,15 +3758,15 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3754,15 +3758,15 @@ class DefNodeWrapper(FuncDefNode):
compare
=
'!='
compare
=
'!='
else
:
else
:
compare
=
'<'
compare
=
'<'
code
.
putln
(
'} else if (
PyTuple_GET_SIZE(%s)
%s %d) {'
%
(
code
.
putln
(
'} else if (
%s
%s %d) {'
%
(
Naming
.
args_cname
,
compare
,
min_positional_args
))
Naming
.
n
args_cname
,
compare
,
min_positional_args
))
code
.
put_goto
(
argtuple_error_label
)
code
.
put_goto
(
argtuple_error_label
)
if
self
.
num_required_kw_args
:
if
self
.
num_required_kw_args
:
# pure error case: keywords required but not passed
# pure error case: keywords required but not passed
if
max_positional_args
>
min_positional_args
and
not
self
.
star_arg
:
if
max_positional_args
>
min_positional_args
and
not
self
.
star_arg
:
code
.
putln
(
'} else if (
PyTuple_GET_SIZE(%s)
> %d) {'
%
(
code
.
putln
(
'} else if (
%s
> %d) {'
%
(
Naming
.
args_cname
,
max_positional_args
))
Naming
.
n
args_cname
,
max_positional_args
))
code
.
put_goto
(
argtuple_error_label
)
code
.
put_goto
(
argtuple_error_label
)
code
.
putln
(
'} else {'
)
code
.
putln
(
'} else {'
)
for
i
,
arg
in
enumerate
(
kw_only_args
):
for
i
,
arg
in
enumerate
(
kw_only_args
):
...
@@ -3788,7 +3792,7 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3788,7 +3792,7 @@ class DefNodeWrapper(FuncDefNode):
else
:
else
:
# parse the positional arguments from the variable length
# parse the positional arguments from the variable length
# args tuple and reject illegal argument tuple sizes
# args tuple and reject illegal argument tuple sizes
code
.
putln
(
'switch (
PyTuple_GET_SIZE(%s)) {'
%
Naming
.
args_cname
)
code
.
putln
(
'switch (
%s) {'
%
Naming
.
n
args_cname
)
if
self
.
star_arg
:
if
self
.
star_arg
:
code
.
putln
(
'default:'
)
code
.
putln
(
'default:'
)
reversed_args
=
list
(
enumerate
(
positional_args
))[::
-
1
]
reversed_args
=
list
(
enumerate
(
positional_args
))[::
-
1
]
...
@@ -3827,10 +3831,10 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3827,10 +3831,10 @@ class DefNodeWrapper(FuncDefNode):
code
.
put_label
(
argtuple_error_label
)
code
.
put_label
(
argtuple_error_label
)
code
.
globalstate
.
use_utility_code
(
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
"RaiseArgTupleInvalid"
,
"FunctionArguments.c"
))
UtilityCode
.
load_cached
(
"RaiseArgTupleInvalid"
,
"FunctionArguments.c"
))
code
.
put
(
'__Pyx_RaiseArgtupleInvalid("%s", %d, %d, %d,
PyTuple_GET_SIZE(%s)
); '
%
(
code
.
put
(
'__Pyx_RaiseArgtupleInvalid("%s", %d, %d, %d,
%s
); '
%
(
self
.
name
,
has_fixed_positional_count
,
self
.
name
,
has_fixed_positional_count
,
min_positional_args
,
max_positional_args
,
min_positional_args
,
max_positional_args
,
Naming
.
args_cname
))
Naming
.
n
args_cname
))
code
.
putln
(
code
.
error_goto
(
self
.
pos
))
code
.
putln
(
code
.
error_goto
(
self
.
pos
))
def
generate_arg_assignment
(
self
,
arg
,
item
,
code
):
def
generate_arg_assignment
(
self
,
arg
,
item
,
code
):
...
@@ -3869,12 +3873,12 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3869,12 +3873,12 @@ class DefNodeWrapper(FuncDefNode):
code
.
put_gotref
(
self
.
starstar_arg
.
entry
.
cname
)
code
.
put_gotref
(
self
.
starstar_arg
.
entry
.
cname
)
if
self
.
star_arg
:
if
self
.
star_arg
:
self
.
star_arg
.
entry
.
xdecref_cleanup
=
0
self
.
star_arg
.
entry
.
xdecref_cleanup
=
0
code
.
putln
(
'if (
PyTuple_GET_SIZE(%s)
> %d) {'
%
(
code
.
putln
(
'if (
%s
> %d) {'
%
(
Naming
.
args_cname
,
Naming
.
n
args_cname
,
max_positional_args
))
max_positional_args
))
code
.
putln
(
'%s = PyTuple_GetSlice(%s, %d,
PyTuple_GET_SIZE(%s)
);'
%
(
code
.
putln
(
'%s = PyTuple_GetSlice(%s, %d,
%s
);'
%
(
self
.
star_arg
.
entry
.
cname
,
Naming
.
args_cname
,
self
.
star_arg
.
entry
.
cname
,
Naming
.
args_cname
,
max_positional_args
,
Naming
.
args_cname
))
max_positional_args
,
Naming
.
n
args_cname
))
code
.
putln
(
"if (unlikely(!%s)) {"
%
self
.
star_arg
.
entry
.
cname
)
code
.
putln
(
"if (unlikely(!%s)) {"
%
self
.
star_arg
.
entry
.
cname
)
if
self
.
starstar_arg
:
if
self
.
starstar_arg
:
code
.
put_decref_clear
(
self
.
starstar_arg
.
entry
.
cname
,
py_object_type
)
code
.
put_decref_clear
(
self
.
starstar_arg
.
entry
.
cname
,
py_object_type
)
...
@@ -3918,9 +3922,8 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3918,9 +3922,8 @@ class DefNodeWrapper(FuncDefNode):
num_required_posonly_args
+=
1
num_required_posonly_args
+=
1
code
.
putln
(
'Py_ssize_t kw_args;'
)
code
.
putln
(
'Py_ssize_t kw_args;'
)
code
.
putln
(
'const Py_ssize_t pos_args = PyTuple_GET_SIZE(%s);'
%
Naming
.
args_cname
)
# copy the values from the args tuple and check that it's not too long
# copy the values from the args tuple and check that it's not too long
code
.
putln
(
'switch (
pos_args) {'
)
code
.
putln
(
'switch (
%s) {'
%
Naming
.
nargs_cname
)
if
self
.
star_arg
:
if
self
.
star_arg
:
code
.
putln
(
'default:'
)
code
.
putln
(
'default:'
)
...
@@ -3968,7 +3971,7 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3968,7 +3971,7 @@ class DefNodeWrapper(FuncDefNode):
if
last_required_arg
<
max_positional_args
:
if
last_required_arg
<
max_positional_args
:
last_required_arg
=
max_positional_args
-
1
last_required_arg
=
max_positional_args
-
1
if
max_positional_args
>
num_pos_only_args
:
if
max_positional_args
>
num_pos_only_args
:
code
.
putln
(
'switch (
pos_args) {'
)
code
.
putln
(
'switch (
%s) {'
%
Naming
.
nargs_cname
)
for
i
,
arg
in
enumerate
(
all_args
[
num_pos_only_args
:
last_required_arg
+
1
],
num_pos_only_args
):
for
i
,
arg
in
enumerate
(
all_args
[
num_pos_only_args
:
last_required_arg
+
1
],
num_pos_only_args
):
if
max_positional_args
>
num_pos_only_args
and
i
<=
max_positional_args
:
if
max_positional_args
>
num_pos_only_args
and
i
<=
max_positional_args
:
if
i
!=
num_pos_only_args
:
if
i
!=
num_pos_only_args
:
...
@@ -4042,10 +4045,11 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -4042,10 +4045,11 @@ class DefNodeWrapper(FuncDefNode):
# pos-only arguments from the number of positional arguments we got.
# pos-only arguments from the number of positional arguments we got.
# If we get a negative number then none of the keyword arguments were
# If we get a negative number then none of the keyword arguments were
# passed as positional args.
# passed as positional args.
code
.
putln
(
'const Py_ssize_t kwd_pos_args = (pos_args < %d) ? 0 : (pos_args - %d);'
%
(
code
.
putln
(
'Py_ssize_t kwd_pos_args = %s - %d;'
%
(
num_pos_only_args
,
num_pos_only_args
))
Naming
.
nargs_cname
,
num_pos_only_args
))
code
.
putln
(
'if (unlikely(kwd_pos_args < 0)) kwd_pos_args = 0;'
)
elif
max_positional_args
>
0
:
elif
max_positional_args
>
0
:
code
.
putln
(
'const Py_ssize_t kwd_pos_args =
pos_args;'
)
code
.
putln
(
'const Py_ssize_t kwd_pos_args =
%s;'
%
Naming
.
nargs_cname
)
if
max_positional_args
==
0
:
if
max_positional_args
==
0
:
pos_arg_count
=
"0"
pos_arg_count
=
"0"
...
...
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