Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
38d3b280
Commit
38d3b280
authored
Sep 02, 2015
by
Marius Wachtler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add tp_nextiter implementation for our iterators
parent
7eec7fa2
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
88 additions
and
21 deletions
+88
-21
src/runtime/dict.cpp
src/runtime/dict.cpp
+1
-1
src/runtime/dict.h
src/runtime/dict.h
+1
-0
src/runtime/inline/dict.cpp
src/runtime/inline/dict.cpp
+9
-2
src/runtime/inline/list.cpp
src/runtime/inline/list.cpp
+24
-13
src/runtime/inline/tuple.cpp
src/runtime/inline/tuple.cpp
+10
-2
src/runtime/inline/xrange.cpp
src/runtime/inline/xrange.cpp
+13
-0
src/runtime/list.cpp
src/runtime/list.cpp
+5
-3
src/runtime/list.h
src/runtime/list.h
+2
-0
src/runtime/set.cpp
src/runtime/set.cpp
+9
-0
src/runtime/str.cpp
src/runtime/str.cpp
+12
-0
src/runtime/tuple.cpp
src/runtime/tuple.cpp
+1
-0
src/runtime/tuple.h
src/runtime/tuple.h
+1
-0
No files found.
src/runtime/dict.cpp
View file @
38d3b280
...
...
@@ -848,8 +848,8 @@ void setupDict() {
dict_iterator_cls
->
giveAttr
(
"__iter__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
dictIterIter
,
typeFromClass
(
dict_iterator_cls
),
1
)));
dict_iterator_cls
->
giveAttr
(
"next"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
dictIterNext
,
UNKNOWN
,
1
)));
dict_iterator_cls
->
freeze
();
dict_iterator_cls
->
tp_iternext
=
dictiter_next
;
// Manually set some tp_* slots *after* calling freeze() -> fixup_slot_dispatchers().
// fixup_slot_dispatchers will insert a wrapper like slot_tp_init into tp_init, which calls the python-level
...
...
src/runtime/dict.h
View file @
38d3b280
...
...
@@ -49,6 +49,7 @@ Box* dictIterItems(Box* self);
Box
*
dictIterIter
(
Box
*
self
);
Box
*
dictIterHasnext
(
Box
*
self
);
i1
dictIterHasnextUnboxed
(
Box
*
self
);
Box
*
dictiter_next
(
Box
*
self
)
noexcept
;
Box
*
dictIterNext
(
Box
*
self
);
class
BoxedDictView
:
public
Box
{
...
...
src/runtime/inline/dict.cpp
View file @
38d3b280
...
...
@@ -56,12 +56,12 @@ Box* dictIterHasnext(Box* s) {
return
boxBool
(
dictIterHasnextUnboxed
(
s
));
}
Box
*
dict
IterNext
(
Box
*
s
)
{
Box
*
dict
iter_next
(
Box
*
s
)
noexcept
{
assert
(
s
->
cls
==
dict_iterator_cls
);
BoxedDictIterator
*
self
=
static_cast
<
BoxedDictIterator
*>
(
s
);
if
(
self
->
it
==
self
->
itEnd
)
r
aiseExcHelper
(
StopIteration
,
""
)
;
r
eturn
NULL
;
Box
*
rtn
=
nullptr
;
if
(
self
->
type
==
BoxedDictIterator
::
KeyIterator
)
{
...
...
@@ -75,6 +75,13 @@ Box* dictIterNext(Box* s) {
return
rtn
;
}
Box
*
dictIterNext
(
Box
*
s
)
{
auto
*
rtn
=
dictiter_next
(
s
);
if
(
!
rtn
)
raiseExcHelper
(
StopIteration
,
""
);
return
rtn
;
}
BoxedDictView
::
BoxedDictView
(
BoxedDict
*
d
)
:
d
(
d
)
{
}
...
...
src/runtime/inline/list.cpp
View file @
38d3b280
...
...
@@ -65,31 +65,35 @@ i1 listiterHasnextUnboxed(Box* s) {
return
ans
;
}
template
<
ExceptionStyle
S
>
Box
*
listiterNext
(
Box
*
s
)
noexcept
(
S
==
CAPI
)
{
Box
*
listiter_next
(
Box
*
s
)
noexcept
{
assert
(
s
->
cls
==
list_iterator_cls
);
BoxedListIterator
*
self
=
static_cast
<
BoxedListIterator
*>
(
s
);
if
(
!
self
->
l
)
{
if
(
S
==
CAPI
)
{
PyErr_SetObject
(
StopIteration
,
None
);
if
(
!
self
->
l
)
return
NULL
;
}
else
raiseExcHelper
(
StopIteration
,
""
);
}
if
(
!
(
self
->
pos
>=
0
&&
self
->
pos
<
self
->
l
->
size
))
{
self
->
l
=
NULL
;
return
NULL
;
}
Box
*
rtn
=
self
->
l
->
elts
->
elts
[
self
->
pos
];
self
->
pos
++
;
return
rtn
;
}
template
<
ExceptionStyle
S
>
Box
*
listiterNext
(
Box
*
s
)
noexcept
(
S
==
CAPI
)
{
Box
*
rtn
=
listiter_next
(
s
);
if
(
!
rtn
)
{
if
(
S
==
CAPI
)
{
PyErr_SetObject
(
StopIteration
,
None
);
return
NULL
;
}
else
raiseExcHelper
(
StopIteration
,
""
);
}
Box
*
rtn
=
self
->
l
->
elts
->
elts
[
self
->
pos
];
self
->
pos
++
;
return
rtn
;
}
// force instantiation:
template
Box
*
listiterNext
<
CAPI
>(
Box
*
);
template
Box
*
listiterNext
<
CXX
>(
Box
*
);
...
...
@@ -114,12 +118,12 @@ i1 listreviterHasnextUnboxed(Box* s) {
return
self
->
pos
>=
0
;
}
Box
*
listreviter
Next
(
Box
*
s
)
{
Box
*
listreviter
_next
(
Box
*
s
)
noexcept
{
assert
(
s
->
cls
==
list_reverse_iterator_cls
);
BoxedListIterator
*
self
=
static_cast
<
BoxedListIterator
*>
(
s
);
if
(
!
(
self
->
pos
>=
0
&&
self
->
pos
<
self
->
l
->
size
))
{
r
aiseExcHelper
(
StopIteration
,
""
)
;
r
eturn
NULL
;
}
Box
*
rtn
=
self
->
l
->
elts
->
elts
[
self
->
pos
];
...
...
@@ -127,6 +131,13 @@ Box* listreviterNext(Box* s) {
return
rtn
;
}
Box
*
listreviterNext
(
Box
*
s
)
{
Box
*
rtn
=
listreviter_next
(
s
);
if
(
!
rtn
)
raiseExcHelper
(
StopIteration
,
""
);
return
rtn
;
}
const
int
BoxedList
::
INITIAL_CAPACITY
=
8
;
// TODO the inliner doesn't want to inline these; is there any point to having them in the inline section?
...
...
src/runtime/inline/tuple.cpp
View file @
38d3b280
...
...
@@ -43,16 +43,24 @@ i1 tupleiterHasnextUnboxed(Box* s) {
return
self
->
pos
<
self
->
t
->
size
();
}
Box
*
tupleiter
Next
(
Box
*
s
)
{
Box
*
tupleiter
_next
(
Box
*
s
)
noexcept
{
assert
(
s
->
cls
==
tuple_iterator_cls
);
BoxedTupleIterator
*
self
=
static_cast
<
BoxedTupleIterator
*>
(
s
);
if
(
!
(
self
->
pos
>=
0
&&
self
->
pos
<
self
->
t
->
size
()))
{
r
aiseExcHelper
(
StopIteration
,
""
)
;
r
eturn
NULL
;
}
Box
*
rtn
=
self
->
t
->
elts
[
self
->
pos
];
self
->
pos
++
;
return
rtn
;
}
Box
*
tupleiterNext
(
Box
*
s
)
{
Box
*
rtn
=
tupleiter_next
(
s
);
if
(
!
rtn
)
{
raiseExcHelper
(
StopIteration
,
""
);
}
return
rtn
;
}
}
src/runtime/inline/xrange.cpp
View file @
38d3b280
...
...
@@ -102,6 +102,18 @@ public:
return
boxBool
(
xrangeIteratorHasnextUnboxed
(
s
));
}
static
Box
*
xrangeIterator_next
(
Box
*
s
)
noexcept
{
assert
(
s
->
cls
==
xrange_iterator_cls
);
BoxedXrangeIterator
*
self
=
static_cast
<
BoxedXrangeIterator
*>
(
s
);
if
(
!
xrangeIteratorHasnextUnboxed
(
s
))
return
NULL
;
i64
rtn
=
self
->
cur
;
self
->
cur
+=
self
->
step
;
return
boxInt
(
rtn
);
}
static
i64
xrangeIteratorNextUnboxed
(
Box
*
s
)
__attribute__
((
visibility
(
"default"
)))
{
assert
(
s
->
cls
==
xrange_iterator_cls
);
BoxedXrangeIterator
*
self
=
static_cast
<
BoxedXrangeIterator
*>
(
s
);
...
...
@@ -228,5 +240,6 @@ void setupXrange() {
xrange_iterator_cls
->
freeze
();
xrange_iterator_cls
->
tpp_hasnext
=
BoxedXrangeIterator
::
xrangeIteratorHasnextUnboxed
;
xrange_iterator_cls
->
tp_iternext
=
BoxedXrangeIterator
::
xrangeIterator_next
;
}
}
src/runtime/list.cpp
View file @
38d3b280
...
...
@@ -1267,12 +1267,13 @@ void setupList() {
list_iterator_cls
->
giveAttr
(
"__iter__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
listIterIter
,
typeFromClass
(
list_iterator_cls
),
1
)));
CLFunction
*
listiter_next
=
boxRTFunction
((
void
*
)
listiterNext
<
CXX
>
,
UNKNOWN
,
1
);
addRTFunction
(
listiter_next
,
(
void
*
)
listiterNext
<
CAPI
>
,
UNKNOWN
,
CAPI
);
list_iterator_cls
->
giveAttr
(
"next"
,
new
BoxedFunction
(
listiter_next
));
CLFunction
*
listiter_next
_func
=
boxRTFunction
((
void
*
)
listiterNext
<
CXX
>
,
UNKNOWN
,
1
);
addRTFunction
(
listiter_next
_func
,
(
void
*
)
listiterNext
<
CAPI
>
,
UNKNOWN
,
CAPI
);
list_iterator_cls
->
giveAttr
(
"next"
,
new
BoxedFunction
(
listiter_next
_func
));
list_iterator_cls
->
freeze
();
list_iterator_cls
->
tpp_hasnext
=
listiterHasnextUnboxed
;
list_iterator_cls
->
tp_iternext
=
listiter_next
;
list_reverse_iterator_cls
->
giveAttr
(
"__name__"
,
boxString
(
"listreverseiterator"
));
...
...
@@ -1284,6 +1285,7 @@ void setupList() {
list_reverse_iterator_cls
->
giveAttr
(
"next"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
listreviterNext
,
UNKNOWN
,
1
)));
list_reverse_iterator_cls
->
freeze
();
list_reverse_iterator_cls
->
tp_iternext
=
listreviter_next
;
}
void
teardownList
()
{
...
...
src/runtime/list.h
View file @
38d3b280
...
...
@@ -38,10 +38,12 @@ Box* listIterIter(Box* self);
Box
*
listiterHasnext
(
Box
*
self
);
i1
listiterHasnextUnboxed
(
Box
*
self
);
template
<
ExceptionStyle
S
>
Box
*
listiterNext
(
Box
*
self
)
noexcept
(
S
==
CAPI
);
Box
*
listiter_next
(
Box
*
s
)
noexcept
;
Box
*
listReversed
(
Box
*
self
);
Box
*
listreviterHasnext
(
Box
*
self
);
i1
listreviterHasnextUnboxed
(
Box
*
self
);
Box
*
listreviterNext
(
Box
*
self
);
Box
*
listreviter_next
(
Box
*
s
)
noexcept
;
void
listSort
(
BoxedList
*
self
,
Box
*
cmp
,
Box
*
key
,
Box
*
reverse
);
extern
"C"
Box
*
listAppend
(
Box
*
self
,
Box
*
v
);
}
...
...
src/runtime/set.cpp
View file @
38d3b280
...
...
@@ -71,6 +71,14 @@ Box* setiteratorNext(BoxedSetIterator* self) {
return
self
->
next
();
}
Box
*
setiter_next
(
Box
*
_self
)
noexcept
{
RELEASE_ASSERT
(
_self
->
cls
==
set_iterator_cls
,
""
);
BoxedSetIterator
*
self
=
(
BoxedSetIterator
*
)
_self
;
if
(
!
self
->
hasNext
())
return
NULL
;
return
self
->
next
();
}
Box
*
setiteratorIter
(
BoxedSetIterator
*
self
)
{
RELEASE_ASSERT
(
self
->
cls
==
set_iterator_cls
,
""
);
return
self
;
...
...
@@ -537,6 +545,7 @@ void setupSet() {
new
BoxedFunction
(
boxRTFunction
((
void
*
)
setiteratorHasnext
,
BOXED_BOOL
,
1
)));
set_iterator_cls
->
giveAttr
(
"next"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
setiteratorNext
,
UNKNOWN
,
1
)));
set_iterator_cls
->
freeze
();
set_iterator_cls
->
tp_iternext
=
setiter_next
;
set_cls
->
giveAttr
(
"__new__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
setNew
,
UNKNOWN
,
2
,
1
,
false
,
false
),
{
None
}));
...
...
src/runtime/str.cpp
View file @
38d3b280
...
...
@@ -2401,6 +2401,17 @@ public:
return
characters
[
c
&
UCHAR_MAX
];
}
static
Box
*
next_capi
(
Box
*
_self
)
noexcept
{
assert
(
_self
->
cls
==
str_iterator_cls
);
auto
self
=
(
BoxedStringIterator
*
)
_self
;
if
(
!
hasnextUnboxed
(
self
))
return
NULL
;
char
c
=
*
self
->
it
;
++
self
->
it
;
return
characters
[
c
&
UCHAR_MAX
];
}
static
void
gcHandler
(
GCVisitor
*
v
,
Box
*
b
)
{
Box
::
gcHandler
(
v
,
b
);
BoxedStringIterator
*
it
=
(
BoxedStringIterator
*
)
b
;
...
...
@@ -2796,6 +2807,7 @@ void setupStr() {
str_iterator_cls
->
giveAttr
(
"next"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
BoxedStringIterator
::
next
,
STR
,
1
)));
str_iterator_cls
->
freeze
();
str_iterator_cls
->
tpp_hasnext
=
(
BoxedClass
::
pyston_inquiry
)
BoxedStringIterator
::
hasnextUnboxed
;
str_iterator_cls
->
tp_iternext
=
BoxedStringIterator
::
next_capi
;
str_cls
->
tp_as_buffer
=
&
string_as_buffer
;
str_cls
->
tp_print
=
string_print
;
...
...
src/runtime/tuple.cpp
View file @
38d3b280
...
...
@@ -625,6 +625,7 @@ void setupTuple() {
tuple_iterator_cls
->
freeze
();
tuple_iterator_cls
->
tpp_hasnext
=
tupleiterHasnextUnboxed
;
tuple_iterator_cls
->
tp_iternext
=
tupleiter_next
;
}
void
teardownTuple
()
{
...
...
src/runtime/tuple.h
View file @
38d3b280
...
...
@@ -36,6 +36,7 @@ Box* tupleIter(Box* self) noexcept;
Box
*
tupleIterIter
(
Box
*
self
);
Box
*
tupleiterHasnext
(
Box
*
self
);
i1
tupleiterHasnextUnboxed
(
Box
*
self
);
Box
*
tupleiter_next
(
Box
*
self
)
noexcept
;
Box
*
tupleiterNext
(
Box
*
self
);
}
...
...
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