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
9d51115e
Commit
9d51115e
authored
Mar 23, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refcount some more stuff
Not sure how I missed the dict.cpp file
parent
46c382f8
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
59 additions
and
32 deletions
+59
-32
src/capi/abstract.cpp
src/capi/abstract.cpp
+1
-1
src/capi/object.cpp
src/capi/object.cpp
+1
-0
src/runtime/dict.cpp
src/runtime/dict.cpp
+45
-26
src/runtime/list.cpp
src/runtime/list.cpp
+9
-4
src/runtime/types.cpp
src/runtime/types.cpp
+3
-1
No files found.
src/capi/abstract.cpp
View file @
9d51115e
...
...
@@ -415,7 +415,7 @@ static int recursive_isinstance(PyObject* inst, PyObject* cls) noexcept {
// We don't need to worry about __getattr__, since the default __class__ will always resolve.
bool
has_custom_class
=
inst
->
cls
->
has___class__
||
inst
->
cls
->
has_getattribute
;
if
(
!
has_custom_class
)
{
assert
(
PyObject_GetAttr
(
inst
,
__class__
)
==
inst
->
cls
);
assert
(
autoDecref
(
PyObject_GetAttr
(
inst
,
__class__
)
)
==
inst
->
cls
);
}
else
{
c
=
PyObject_GetAttr
(
inst
,
__class__
);
if
(
!
c
)
...
...
src/capi/object.cpp
View file @
9d51115e
...
...
@@ -191,6 +191,7 @@ static PyObject* _generic_dir(PyObject* obj) noexcept {
}
else
if
(
dict
->
cls
==
attrwrapper_cls
)
{
auto
new_dict
=
PyDict_New
();
PyDict_Update
(
new_dict
,
dict
);
Py_DECREF
(
dict
);
dict
=
new_dict
;
}
else
if
(
!
PyDict_Check
(
dict
))
{
Py_DECREF
(
dict
);
...
...
src/runtime/dict.cpp
View file @
9d51115e
...
...
@@ -35,6 +35,23 @@ BoxedClass* dictitervalue_cls = NULL;
BoxedClass
*
dictiteritem_cls
=
NULL
;
}
static
void
_dictSetStolen
(
BoxedDict
*
self
,
BoxAndHash
k
,
STOLEN
(
Box
*
)
v
)
{
Box
*&
slot
=
self
->
d
[
k
];
Box
*
old_val
=
slot
;
slot
=
v
;
if
(
old_val
)
{
Py_DECREF
(
old_val
);
}
else
{
Py_INCREF
(
k
.
value
);
}
}
static
void
_dictSet
(
BoxedDict
*
self
,
BoxAndHash
k
,
Box
*
v
)
{
_dictSetStolen
(
self
,
k
,
incref
(
v
));
}
Box
*
dictRepr
(
BoxedDict
*
self
)
{
std
::
vector
<
char
>
chars
;
int
status
=
Py_ReprEnter
((
PyObject
*
)
self
);
...
...
@@ -238,7 +255,7 @@ template <enum ExceptionStyle S> Box* dictGetitem(BoxedDict* self, Box* k) noexc
// Special-case defaultdict, assuming that it's the main time we will actually hit this.
// We could just use a single runtime IC here, or have a small cache that maps type->runtimeic.
// Or use a polymorphic runtime ic.
assert
(
0
&&
"check refcountin
G
"
);
assert
(
0
&&
"check refcountin
g
"
);
static
BoxedClass
*
defaultdict_cls
=
NULL
;
static
CallattrIC
defaultdict_ic
;
if
(
defaultdict_cls
==
NULL
&&
strcmp
(
self
->
cls
->
tp_name
,
"collections.defaultdict"
)
==
0
)
{
...
...
@@ -283,6 +300,16 @@ extern "C" PyObject* PyDict_New() noexcept {
// The performance should hopefully be comparable to the CPython fast case, since we can use
// runtimeICs.
extern
"C"
int
PyDict_SetItem
(
PyObject
*
mp
,
PyObject
*
_key
,
PyObject
*
_item
)
noexcept
{
if
(
PyDict_Check
(
mp
))
{
try
{
_dictSet
(
static_cast
<
BoxedDict
*>
(
mp
),
_key
,
_item
);
}
catch
(
ExcInfo
e
)
{
setCAPIException
(
e
);
return
-
1
;
}
return
0
;
}
ASSERT
(
PyDict_Check
(
mp
)
||
mp
->
cls
==
attrwrapper_cls
,
"%s"
,
getTypeName
(
mp
));
assert
(
mp
);
...
...
@@ -404,17 +431,7 @@ extern "C" BORROWED(PyObject*) PyDict_GetItemString(PyObject* dict, const char*
}
Box
*
dictSetitem
(
BoxedDict
*
self
,
Box
*
k
,
Box
*
v
)
{
Box
*&
pos
=
self
->
d
[
k
];
Py_INCREF
(
v
);
Box
*
old
=
pos
;
pos
=
v
;
if
(
old
)
{
Py_DECREF
(
old
);
}
else
{
Py_INCREF
(
k
);
}
_dictSet
(
self
,
k
,
v
);
Py_RETURN_NONE
;
}
...
...
@@ -424,7 +441,6 @@ Box* dictDelitem(BoxedDict* self, Box* k) {
raiseExcHelper
(
TypeError
,
"descriptor '__delitem__' requires a 'dict' object but received a '%s'"
,
getTypeName
(
self
));
assert
(
0
&&
"check refcounting"
);
auto
it
=
self
->
d
.
find
(
k
);
if
(
it
==
self
->
d
.
end
())
{
raiseExcHelper
(
KeyError
,
k
);
...
...
@@ -433,6 +449,7 @@ Box* dictDelitem(BoxedDict* self, Box* k) {
Box
*
v
=
it
->
second
;
self
->
d
.
erase
(
it
);
Py_DECREF
(
v
);
Py_DECREF
(
k
);
Py_RETURN_NONE
;
}
...
...
@@ -513,7 +530,9 @@ Box* dictPop(BoxedDict* self, Box* k, Box* d) {
}
Box
*
rtn
=
it
->
second
;
Box
*
old_k
=
it
->
first
.
value
;
self
->
d
.
erase
(
it
);
Py_DECREF
(
old_k
);
return
rtn
;
}
...
...
@@ -579,7 +598,9 @@ extern "C" int PyDict_Contains(PyObject* op, PyObject* key) noexcept {
if
(
op
->
cls
==
attrwrapper_cls
)
{
if
(
key
->
cls
==
str_cls
)
{
BoxedString
*
key_str
=
(
BoxedString
*
)
key
;
Py_INCREF
(
key_str
);
internStringMortalInplace
(
key_str
);
AUTO_DECREF
(
key_str
);
return
unwrapAttrWrapper
(
op
)
->
hasattr
(
key_str
);
}
...
...
@@ -613,7 +634,8 @@ Box* dictFromkeys(Box* cls, Box* iterable, Box* default_value) {
}
}
else
{
for
(
Box
*
e
:
iterable
->
pyElements
())
{
dictSetitem
(
rtn
,
e
,
default_value
);
AUTO_DECREF
(
e
);
_dictSet
(
rtn
,
e
,
default_value
);
}
}
...
...
@@ -655,6 +677,7 @@ Box* dictNe(BoxedDict* self, Box* _rhs) {
Box
*
eq
=
dictEq
(
self
,
_rhs
);
if
(
eq
==
NotImplemented
)
return
eq
;
AUTO_DECREF
(
eq
);
if
(
eq
==
True
)
Py_RETURN_FALSE
;
Py_RETURN_TRUE
;
...
...
@@ -676,7 +699,7 @@ extern "C" Box* dictNew(Box* _cls, BoxedTuple* args, BoxedDict* kwargs) {
void
dictMerge
(
BoxedDict
*
self
,
Box
*
other
)
{
if
(
PyDict_Check
(
other
))
{
for
(
const
auto
&
p
:
static_cast
<
BoxedDict
*>
(
other
)
->
d
)
self
->
d
[
p
.
first
]
=
p
.
second
;
_dictSet
(
self
,
p
.
first
,
p
.
second
)
;
return
;
}
...
...
@@ -692,7 +715,8 @@ void dictMerge(BoxedDict* self, Box* other) {
AUTO_DECREF
(
keys
);
for
(
Box
*
k
:
keys
->
pyElements
())
{
self
->
d
[
k
]
=
getitemInternal
<
CXX
>
(
other
,
k
);
AUTO_DECREF
(
k
);
_dictSetStolen
(
self
,
k
,
getitemInternal
<
CXX
>
(
other
,
k
));
}
}
...
...
@@ -709,16 +733,14 @@ void dictMergeFromSeq2(BoxedDict* self, Box* other) {
raiseExcHelper
(
ValueError
,
"dictionary update sequence element #%d has length %ld; 2 is required"
,
idx
,
list
->
size
);
assert
(
0
&&
"bad refcounting if key already exists"
);
self
->
d
[
incref
(
list
->
elts
->
elts
[
0
])]
=
incref
(
list
->
elts
->
elts
[
1
]);
_dictSet
(
self
,
list
->
elts
->
elts
[
0
],
list
->
elts
->
elts
[
1
]);
}
else
if
(
element
->
cls
==
tuple_cls
)
{
BoxedTuple
*
tuple
=
static_cast
<
BoxedTuple
*>
(
element
);
if
(
tuple
->
size
()
!=
2
)
raiseExcHelper
(
ValueError
,
"dictionary update sequence element #%d has length %ld; 2 is required"
,
idx
,
tuple
->
size
());
assert
(
0
&&
"bad refcounting if key already exists"
);
self
->
d
[
incref
(
tuple
->
elts
[
0
])]
=
incref
(
tuple
->
elts
[
1
]);
_dictSet
(
self
,
tuple
->
elts
[
0
],
tuple
->
elts
[
1
]);
}
else
raiseExcHelper
(
TypeError
,
"cannot convert dictionary update sequence element #%d to a sequence"
,
idx
);
...
...
@@ -760,7 +782,7 @@ Box* dictUpdate(BoxedDict* self, BoxedTuple* args, BoxedDict* kwargs) {
if
(
args
->
size
())
{
Box
*
arg
=
args
->
elts
[
0
];
static
BoxedString
*
keys_str
=
getStaticString
(
"keys"
);
if
(
getattrInternal
<
ExceptionStyle
::
CXX
>
(
arg
,
keys_str
))
{
if
(
autoDecref
(
getattrInternal
<
ExceptionStyle
::
CXX
>
(
arg
,
keys_str
)
))
{
dictMerge
(
self
,
arg
);
}
else
{
dictMergeFromSeq2
(
self
,
arg
);
...
...
@@ -781,17 +803,14 @@ extern "C" Box* dictInit(BoxedDict* self, BoxedTuple* args, BoxedDict* kwargs) {
if
(
args_sz
>
1
)
raiseExcHelper
(
TypeError
,
"dict expected at most 1 arguments, got %d"
,
args_sz
);
dictUpdate
(
self
,
args
,
kwargs
);
autoDecref
(
dictUpdate
(
self
,
args
,
kwargs
)
);
if
(
kwargs
)
{
// handle keyword arguments by merging (possibly over positional entries per CPy)
assert
(
kwargs
->
cls
==
dict_cls
);
for
(
const
auto
&
p
:
kwargs
->
d
)
{
assert
(
0
&&
"bad refcounting if key already exists"
);
Py_INCREF
(
p
.
first
.
value
);
Py_INCREF
(
p
.
second
);
self
->
d
[
p
.
first
]
=
p
.
second
;
_dictSet
(
self
,
p
.
first
,
p
.
second
);
}
}
...
...
src/runtime/list.cpp
View file @
9d51115e
...
...
@@ -901,7 +901,6 @@ public:
};
void
listSort
(
BoxedList
*
self
,
Box
*
cmp
,
Box
*
key
,
Box
*
reverse
)
{
assert
(
0
&&
"check refcounting"
);
assert
(
PyList_Check
(
self
));
if
(
cmp
==
None
)
...
...
@@ -918,6 +917,7 @@ void listSort(BoxedList* self, Box* cmp, Box* key, Box* reverse) {
// I also don't know if std::stable_sort is exception-safe.
if
(
cmp
)
{
assert
(
!
key
);
std
::
stable_sort
<
Box
**
,
PyCmpComparer
>
(
self
->
elts
->
elts
,
self
->
elts
->
elts
+
self
->
size
,
PyCmpComparer
(
cmp
));
}
else
{
int
num_keys_added
=
0
;
...
...
@@ -925,7 +925,9 @@ void listSort(BoxedList* self, Box* cmp, Box* key, Box* reverse) {
for
(
int
i
=
0
;
i
<
num_keys_added
;
i
++
)
{
Box
**
obj_loc
=
&
self
->
elts
->
elts
[
i
];
assert
((
*
obj_loc
)
->
cls
==
tuple_cls
);
*
obj_loc
=
static_cast
<
BoxedTuple
*>
(
*
obj_loc
)
->
elts
[
2
];
BoxedTuple
*
t
=
static_cast
<
BoxedTuple
*>
(
*
obj_loc
);
*
obj_loc
=
t
->
elts
[
2
];
Py_DECREF
(
t
);
}
};
...
...
@@ -935,11 +937,13 @@ void listSort(BoxedList* self, Box* cmp, Box* key, Box* reverse) {
Box
**
obj_loc
=
&
self
->
elts
->
elts
[
i
];
Box
*
key_val
=
runtimeCall
(
key
,
ArgPassSpec
(
1
),
*
obj_loc
,
NULL
,
NULL
,
NULL
,
NULL
);
AUTO_DECREF
(
key_val
);
// Add the index as part of the new tuple so that the comparison never hits the
// original object.
// TODO we could potentially make this faster by copying the CPython approach of
// creating special sortwrapper objects that compare only based on the key.
Box
*
new_obj
=
BoxedTuple
::
create
({
key_val
,
boxInt
(
i
),
*
obj_loc
});
Box
*
new_obj
=
BoxedTuple
::
create
({
key_val
,
autoDecref
(
boxInt
(
i
)
),
*
obj_loc
});
*
obj_loc
=
new_obj
;
num_keys_added
++
;
...
...
@@ -960,7 +964,8 @@ void listSort(BoxedList* self, Box* cmp, Box* key, Box* reverse) {
}
if
(
nonzero
(
reverse
))
{
listReverse
(
self
);
Box
*
r
=
listReverse
(
self
);
Py_DECREF
(
r
);
}
}
...
...
src/runtime/types.cpp
View file @
9d51115e
...
...
@@ -3320,10 +3320,12 @@ done:
static
Box
*
objectClass
(
Box
*
obj
,
void
*
context
)
{
assert
(
obj
->
cls
!=
instance_cls
);
// should override __class__ in classobj
return
obj
->
cls
;
return
incref
(
obj
->
cls
)
;
}
static
void
objectSetClass
(
Box
*
obj
,
Box
*
val
,
void
*
context
)
{
RELEASE_ASSERT
(
0
,
"check refcounting"
);
if
(
!
PyType_Check
(
val
))
raiseExcHelper
(
TypeError
,
"__class__ must be set to new-style class, not '%s' object"
,
val
->
cls
->
tp_name
);
...
...
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