2016-01-09 17:28:43 -05:00
|
|
|
PEP: 509
|
2016-01-11 10:16:46 -05:00
|
|
|
Title: Add a private version to dict
|
2016-01-09 17:28:43 -05:00
|
|
|
Version: $Revision$
|
|
|
|
Last-Modified: $Date$
|
|
|
|
Author: Victor Stinner <victor.stinner@gmail.com>
|
|
|
|
Status: Draft
|
|
|
|
Type: Standards Track
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
Created: 4-January-2016
|
|
|
|
Python-Version: 3.6
|
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
========
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Add a new private version to builtin ``dict`` type, incremented at each
|
|
|
|
change, to implement fast guards on namespaces.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
|
|
|
|
Rationale
|
|
|
|
=========
|
|
|
|
|
|
|
|
In Python, the builtin ``dict`` type is used by many instructions. For
|
|
|
|
example, the ``LOAD_GLOBAL`` instruction searchs for a variable in the
|
|
|
|
global namespace, or in the builtins namespace (two dict lookups).
|
|
|
|
Python uses ``dict`` for the builtins namespace, globals namespace, type
|
|
|
|
namespaces, instance namespaces, etc. The local namespace (namespace of
|
|
|
|
a function) is usually optimized to an array, but it can be a dict too.
|
|
|
|
|
|
|
|
Python is hard to optimize because almost everything is mutable: builtin
|
|
|
|
functions, function code, global variables, local variables, ... can be
|
|
|
|
modified at runtime. Implementing optimizations respecting the Python
|
2016-01-11 04:18:52 -05:00
|
|
|
semantics requires to detect when "something changes": we will call
|
|
|
|
these checks "guards".
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
The speedup of optimizations depends on the speed of guard checks. This
|
2016-01-11 10:16:46 -05:00
|
|
|
PEP proposes to add a version to dictionaries to implement fast guards
|
|
|
|
on namespaces.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Dictionary lookups can be skipped if the version does not change which
|
|
|
|
is the common case for most namespaces. The performance of a guard does
|
|
|
|
not depend on the number of watched dictionary entries, complexity of
|
|
|
|
O(1), if the dictionary version does not change.
|
|
|
|
|
|
|
|
Example of optimization: copy the value of a global variable to function
|
|
|
|
constants. This optimization requires a guard on the global variable to
|
2016-01-09 17:28:43 -05:00
|
|
|
check if it was modified. If the variable is modified, the variable must
|
2016-01-11 10:16:46 -05:00
|
|
|
be loaded at runtime when the function is called, instead of using the
|
|
|
|
constant.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-10 18:28:46 -05:00
|
|
|
See the `PEP 510 -- Specialized functions with guards
|
|
|
|
<https://www.python.org/dev/peps/pep-0510/>`_ for the concrete usage of
|
|
|
|
guards to specialize functions and for the rationale on Python static
|
|
|
|
optimizers.
|
|
|
|
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
Guard example
|
|
|
|
=============
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Pseudo-code of an fast guard to check if a dictionary key was modified
|
|
|
|
(created, updated or deleted) using an hypothetical
|
|
|
|
``get_dict_version(dict)`` function::
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
UNSET = object()
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
class GuardDictKey:
|
2016-01-09 17:28:43 -05:00
|
|
|
def __init__(self, dict, key):
|
|
|
|
self.dict = dict
|
|
|
|
self.key = key
|
|
|
|
self.value = dict.get(key, UNSET)
|
2016-01-11 10:16:46 -05:00
|
|
|
self.version = get_dict_version(dict)
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
def check(self):
|
|
|
|
"""Return True if the dictionary value did not changed."""
|
2016-01-11 10:16:46 -05:00
|
|
|
version = get_dict_version(self.dict)
|
2016-01-09 17:28:43 -05:00
|
|
|
if version == self.version:
|
|
|
|
# Fast-path: avoid the dictionary lookup
|
|
|
|
return True
|
|
|
|
|
|
|
|
value = self.dict.get(self.key, UNSET)
|
|
|
|
if value == self.value:
|
|
|
|
# another key was modified:
|
|
|
|
# cache the new dictionary version
|
|
|
|
self.version = version
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Usage of the dict version
|
|
|
|
=========================
|
|
|
|
|
|
|
|
Specialized functions using guards
|
|
|
|
----------------------------------
|
|
|
|
|
|
|
|
The `PEP 510 -- Specialized functions with guards
|
|
|
|
<https://www.python.org/dev/peps/pep-0510/>`_ proposes an API to support
|
|
|
|
specialized functions with guards. It allows to implement static
|
|
|
|
optimizers for Python without breaking the Python semantics.
|
|
|
|
|
|
|
|
Example of a static Python optimizer: the astoptimizer of the `FAT
|
|
|
|
Python <http://faster-cpython.readthedocs.org/fat_python.html>`_ project
|
|
|
|
implements many optimizations which require guards on namespaces.
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
* Call pure builtins: to replace ``len("abc")`` with ``3``, guards on
|
|
|
|
``builtins.__dict__['len']`` and ``globals()['len']`` are required
|
|
|
|
* Loop unrolling: to unroll the loop ``for i in range(...): ...``,
|
|
|
|
guards on ``builtins.__dict__['range']`` and ``globals()['range']``
|
|
|
|
are required
|
|
|
|
|
|
|
|
|
|
|
|
Pyjion
|
|
|
|
------
|
|
|
|
|
2016-01-11 10:27:47 -05:00
|
|
|
According of Brett Cannon, one of the two main developers of Pyjion,
|
|
|
|
Pyjion can also benefit from dictionary version to implement
|
|
|
|
optimizations.
|
2016-01-11 10:16:46 -05:00
|
|
|
|
2016-01-11 10:27:47 -05:00
|
|
|
Pyjion is a JIT compiler for Python based upon CoreCLR (Microsoft .NET
|
|
|
|
Core runtime).
|
2016-01-11 10:16:46 -05:00
|
|
|
|
|
|
|
|
|
|
|
Unladen Swallow
|
|
|
|
---------------
|
|
|
|
|
2016-01-11 10:27:47 -05:00
|
|
|
Even if dictionary version was not explicitly mentionned, optimization
|
|
|
|
globals and builtins lookup was part of the Unladen Swallow plan:
|
|
|
|
"Implement one of the several proposed schemes for speeding lookups of
|
|
|
|
globals and builtins." Source: `Unladen Swallow ProjectPlan
|
2016-01-11 10:16:46 -05:00
|
|
|
<https://code.google.com/p/unladen-swallow/wiki/ProjectPlan>`_.
|
|
|
|
|
2016-01-11 10:27:47 -05:00
|
|
|
Unladen Swallow is a fork of CPython 2.6.1 adding a JIT compiler
|
|
|
|
implemented with LLVM. The project stopped in 2011: `Unladen Swallow
|
|
|
|
Retrospective
|
2016-01-11 10:16:46 -05:00
|
|
|
<http://qinsb.blogspot.com.au/2011/03/unladen-swallow-retrospective.html>`_.
|
|
|
|
|
|
|
|
|
2016-01-09 17:28:43 -05:00
|
|
|
Changes
|
|
|
|
=======
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Add a ``PY_INT64_T ma_version`` field to the ``PyDictObject`` structure:
|
|
|
|
64-bit unsigned integer. New empty dictionaries are initilized to
|
|
|
|
version ``0``. The version is incremented at each change:
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
* ``clear()`` if the dict was non-empty
|
|
|
|
* ``pop(key)`` if the key exists
|
|
|
|
* ``popitem()`` if the dict is non-empty
|
|
|
|
* ``setdefault(key, value)`` if the `key` does not exist
|
|
|
|
* ``__detitem__(key)`` if the key exists
|
|
|
|
* ``__setitem__(key, value)`` if the `key` doesn't exist or if the value
|
|
|
|
is different
|
|
|
|
* ``update(...)`` if new values are different than existing values (the
|
|
|
|
version can be incremented multiple times)
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Example using an hypothetical ``get_dict_version(dict)`` function::
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
>>> d = {}
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
0
|
|
|
|
>>> d['key'] = 'value'
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
1
|
|
|
|
>>> d['key'] = 'new value'
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
2
|
|
|
|
>>> del d['key']
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
3
|
|
|
|
|
|
|
|
If a dictionary is created with items, the version is also incremented
|
|
|
|
at each dictionary insertion. Example::
|
|
|
|
|
|
|
|
>>> d=dict(x=7, y=33)
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
2
|
|
|
|
|
|
|
|
The version is not incremented is an existing key is modified to the
|
|
|
|
same value, but only the identifier of the value is tested, not the
|
|
|
|
content of the value. Example::
|
|
|
|
|
|
|
|
>>> d={}
|
|
|
|
>>> value = object()
|
|
|
|
>>> d['key'] = value
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
2
|
|
|
|
>>> d['key'] = value
|
2016-01-11 10:16:46 -05:00
|
|
|
>>> get_dict_version(d)
|
2016-01-09 17:28:43 -05:00
|
|
|
2
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
CPython uses some singleton like integers in the range [-5; 257],
|
|
|
|
empty tuple, empty strings, Unicode strings of a single character in
|
|
|
|
the range [U+0000; U+00FF], etc. When a key is set twice to the same
|
|
|
|
singleton, the version is not modified.
|
|
|
|
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Implementation
|
|
|
|
==============
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
The `issue #26058: PEP 509: Add ma_version to PyDictObject
|
|
|
|
<https://bugs.python.org/issue26058>`_ contains a patch implementing
|
|
|
|
this PEP.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
On pybench and timeit microbenchmarks, the patch does not seem to add
|
|
|
|
any overhead on dictionary operations.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
When the version does not change, ``PyDict_GetItem()`` takes 14.8 ns for
|
|
|
|
a dictioanry lookup, whereas a guard check only takes 3.8 ns. Moreover,
|
|
|
|
a guard can watch multiple keys. For example, for an optimization using
|
|
|
|
10 global variables in a function, the check costs 148 ns for 10 dict
|
|
|
|
lookups, whereas the guard still only cost 3.8 ns when the version does
|
|
|
|
not change (39x as fast).
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Integer overflow
|
|
|
|
================
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
The implementation uses the C unsigned integer type ``PY_INT64_T`` to
|
|
|
|
store the version, a 64 bits unsigned integer. The C code uses
|
|
|
|
``version++``. On integer overflow, the version is wrapped to ``0`` (and
|
|
|
|
then continue to be incremented) according to the C standard.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
After an integer overflow, a guard can succeed whereas the watched
|
|
|
|
dictionary key was modified. The bug occurs if the dictionary is
|
|
|
|
modified at least ``2 ** 64`` times between two checks of the guard and
|
|
|
|
if the new version (theorical value with no integer overflow) is equal
|
|
|
|
to the old version modulo ``2 ** 64``.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
If a dictionary is modified each nanosecond, an overflow takes longer
|
|
|
|
than 584 years. Using a 32-bit version, the overflow occurs only after 4
|
|
|
|
seconds. That's why a 64-bit unsigned type is also used on 32-bit
|
|
|
|
systems.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
A risk of a bug every 584 years is acceptable.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
|
|
|
|
Alternatives
|
|
|
|
============
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Expose the version at Python level as a read-only __version__ property
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
The first version of the PEP proposed to expose the dictionary version
|
|
|
|
as a read-only ``__version__`` property at Python level, and also to add
|
|
|
|
the property to ``collections.UserDict`` (since this type must mimick
|
|
|
|
the ``dict`` API).
|
|
|
|
|
|
|
|
There are multiple issues:
|
|
|
|
|
|
|
|
* To be consistent and avoid bad surprises, the version must be added to
|
|
|
|
all mapping type. Implementing a new mapping type would require extra
|
|
|
|
work for no benefit, since the version is only required on the
|
|
|
|
``dict`` type in practice.
|
|
|
|
* All Python implementations must implement this new property, it gives
|
|
|
|
more work to other implementations, whereas they may not use the
|
|
|
|
dictionary version at all.
|
|
|
|
* The ``__version__`` can be wrapped on integer overflow. It is error
|
|
|
|
prone: using ``dict.__version__ <= guard_version`` is wrong,
|
|
|
|
``dict.__version__ == guard_version`` must be used instead to reduce
|
|
|
|
the risk of bug on integer overflow (even if the integer overflow is
|
|
|
|
unlikely in practice).
|
|
|
|
* Exposing the dictioanry version can lead the
|
|
|
|
false assumption on performances. Checking ``dict.__version__`` at
|
|
|
|
the Python level is not faster than a dictionary lookup. The lookup
|
|
|
|
has a cost of 48.7 ns and checking a guard has a cost of 47.5 ns, the
|
|
|
|
difference is only 1.2 ns (3%)::
|
|
|
|
|
|
|
|
|
|
|
|
$ ./python -m timeit -s 'd = {str(i):i for i in range(100)}' 'd["33"] == 33'
|
|
|
|
10000000 loops, best of 3: 0.0487 usec per loop
|
|
|
|
$ ./python -m timeit -s 'd = {str(i):i for i in range(100)}' 'd.__version__ == 100'
|
|
|
|
10000000 loops, best of 3: 0.0475 usec per loop
|
|
|
|
|
|
|
|
Bikeshedding on the property name:
|
2016-01-09 18:30:32 -05:00
|
|
|
|
|
|
|
* ``__cache_token__``: name proposed by Nick Coghlan, name coming from
|
|
|
|
`abc.get_cache_token()
|
|
|
|
<https://docs.python.org/3/library/abc.html#abc.get_cache_token>`_.
|
|
|
|
* ``__version__``
|
|
|
|
* ``__timestamp__``
|
|
|
|
|
|
|
|
|
2016-01-09 17:28:43 -05:00
|
|
|
Add a version to each dict entry
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
A single version per dictionary requires to keep a strong reference to
|
|
|
|
the value which can keep the value alive longer than expected. If we add
|
|
|
|
also a version per dictionary entry, the guard can rely on the entry
|
|
|
|
version and so avoid the strong reference to the value (only strong
|
|
|
|
references to a dictionary and key are needed).
|
|
|
|
|
|
|
|
Changes: add a ``getversion(key)`` method to dictionary which returns
|
|
|
|
``None`` if the key doesn't exist. When a key is created or modified,
|
|
|
|
the entry version is set to the dictionary version which is incremented
|
|
|
|
at each change (create, modify, delete).
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Pseudo-code of an fast guard to check if a dict key was modified using
|
|
|
|
``getversion()``::
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
UNSET = object()
|
|
|
|
|
|
|
|
class Guard:
|
|
|
|
def __init__(self, dict, key):
|
|
|
|
self.dict = dict
|
|
|
|
self.key = key
|
2016-01-11 10:16:46 -05:00
|
|
|
self.dict_version = get_dict_version(dict)
|
2016-01-09 17:28:43 -05:00
|
|
|
self.entry_version = dict.getversion(key)
|
|
|
|
|
|
|
|
def check(self):
|
|
|
|
"""Return True if the dictionary value did not changed."""
|
2016-01-11 10:16:46 -05:00
|
|
|
dict_version = get_dict_version(self.dict)
|
2016-01-09 17:28:43 -05:00
|
|
|
if dict_version == self.version:
|
|
|
|
# Fast-path: avoid the dictionary lookup
|
|
|
|
return True
|
|
|
|
|
|
|
|
# lookup in the dictionary, but get the entry version,
|
|
|
|
#not the value
|
|
|
|
entry_version = self.dict.getversion(self.key)
|
|
|
|
if entry_version == self.entry_version:
|
|
|
|
# another key was modified:
|
|
|
|
# cache the new dictionary version
|
|
|
|
self.dict_version = dict_version
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
This main drawback of this option is the impact on the memory footprint.
|
|
|
|
It increases the size of each dictionary entry, so the overhead depends
|
|
|
|
on the number of buckets (dictionary entries, used or unused yet). For
|
|
|
|
example, it increases the size of each dictionary entry by 8 bytes on
|
|
|
|
64-bit system if we use ``size_t``.
|
|
|
|
|
|
|
|
In Python, the memory footprint matters and the trend is more to reduce
|
|
|
|
it. Examples:
|
|
|
|
|
|
|
|
* `PEP 393 -- Flexible String Representation
|
|
|
|
<https://www.python.org/dev/peps/pep-0393/>`_
|
|
|
|
* `PEP 412 -- Key-Sharing Dictionary
|
|
|
|
<https://www.python.org/dev/peps/pep-0412/>`_
|
|
|
|
|
|
|
|
|
|
|
|
Add a new dict subtype
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Add a new ``verdict`` type, subtype of ``dict``. When guards are needed,
|
|
|
|
use the ``verdict`` for namespaces (module namespace, type namespace,
|
|
|
|
instance namespace, etc.) instead of ``dict``.
|
|
|
|
|
|
|
|
Leave the ``dict`` type unchanged to not add any overhead (memory
|
|
|
|
footprint) when guards are not needed.
|
|
|
|
|
|
|
|
Technical issue: a lot of C code in the wild, including CPython core,
|
|
|
|
expect the exact ``dict`` type. Issues:
|
|
|
|
|
|
|
|
* ``exec()`` requires a ``dict`` for globals and locals. A lot of code
|
|
|
|
use ``globals={}``. It is not possible to cast the ``dict`` to a
|
|
|
|
``dict`` subtype because the caller expects the ``globals`` parameter
|
|
|
|
to be modified (``dict`` is mutable).
|
|
|
|
* Functions call directly ``PyDict_xxx()`` functions, instead of calling
|
|
|
|
``PyObject_xxx()`` if the object is a ``dict`` subtype
|
|
|
|
* ``PyDict_CheckExact()`` check fails on ``dict`` subtype, whereas some
|
|
|
|
functions require the exact ``dict`` type.
|
|
|
|
* ``Python/ceval.c`` does not completly supports dict subtypes for
|
|
|
|
namespaces
|
|
|
|
|
|
|
|
|
|
|
|
The ``exec()`` issue is a blocker issue.
|
|
|
|
|
|
|
|
Other issues:
|
|
|
|
|
|
|
|
* The garbage collector has a special code to "untrack" ``dict``
|
|
|
|
instances. If a ``dict`` subtype is used for namespaces, the garbage
|
|
|
|
collector may be unable to break some reference cycles.
|
|
|
|
* Some functions have a fast-path for ``dict`` which would not be taken
|
|
|
|
for ``dict`` subtypes, and so it would make Python a little bit
|
|
|
|
slower.
|
|
|
|
|
|
|
|
|
|
|
|
Prior Art
|
|
|
|
=========
|
|
|
|
|
2016-01-10 18:15:41 -05:00
|
|
|
Method cache and type version tag
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
In 2007, Armin Rigo wrote a patch to to implement a cache of methods. It
|
|
|
|
was merged into Python 2.6. The patch adds a "type attribute cache
|
|
|
|
version tag" (``tp_version_tag``) and a "valid version tag" flag to
|
|
|
|
types (the ``PyTypeObject`` structure).
|
|
|
|
|
|
|
|
The type version tag is not available at the Python level.
|
|
|
|
|
|
|
|
The version tag has the C type ``unsigned int``. The cache is a global
|
|
|
|
hash table of 4096 entries, shared by all types. The cache is global to
|
|
|
|
"make it fast, have a deterministic and low memory footprint, and be
|
|
|
|
easy to invalidate". Each cache entry has a version tag. A global
|
|
|
|
version tag is used to create the next version tag, it also has the C
|
|
|
|
type ``unsigned int``.
|
|
|
|
|
|
|
|
By default, a type has its "valid version tag" flag cleared to indicate
|
|
|
|
that the version tag is invalid. When the first method of the type is
|
|
|
|
cached, the version tag and the "valid version tag" flag are set. When a
|
|
|
|
type is modified, the "valid version tag" flag of the type and its
|
|
|
|
subclasses is cleared. Later, when a cache entry of these types is used,
|
|
|
|
the entry is removed because its version tag is outdated.
|
|
|
|
|
|
|
|
On integer overflow, the whole cache is cleared and the global version
|
|
|
|
tag is reset to ``0``.
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
See `Method cache (issue #1685986)
|
|
|
|
<https://bugs.python.org/issue1685986>`_ and `Armin's method cache
|
|
|
|
optimization updated for Python 2.6 (issue #1700288)
|
2016-01-10 18:15:41 -05:00
|
|
|
<https://bugs.python.org/issue1700288>`_.
|
|
|
|
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Globals / builtins cache
|
|
|
|
------------------------
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
In 2010, Antoine Pitrou proposed a `Globals / builtins cache (issue
|
|
|
|
#10401) <http://bugs.python.org/issue10401>`_ which adds a private
|
|
|
|
``ma_version`` field to the ``PyDictObject`` structure (``dict`` type),
|
|
|
|
the field has the C type ``Py_ssize_t``.
|
|
|
|
|
|
|
|
The patch adds a "global and builtin cache" to functions and frames, and
|
|
|
|
changes ``LOAD_GLOBAL`` and ``STORE_GLOBAL`` instructions to use the
|
|
|
|
cache.
|
|
|
|
|
|
|
|
The change on the ``PyDictObject`` structure is very similar to this
|
|
|
|
PEP.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
|
|
|
|
Cached globals+builtins lookup
|
|
|
|
------------------------------
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
In 2006, Andrea Griffini proposed a patch implementing a `Cached
|
|
|
|
globals+builtins lookup optimization
|
|
|
|
<https://bugs.python.org/issue1616125>`_. The patch adds a private
|
|
|
|
``timestamp`` field to the ``PyDictObject`` structure (``dict`` type),
|
|
|
|
the field has the C type ``size_t``.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Thread on python-dev: `About dictionary lookup caching
|
2016-01-09 17:28:43 -05:00
|
|
|
<https://mail.python.org/pipermail/python-dev/2006-December/070348.html>`_.
|
|
|
|
|
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
Guard against changing dict during iteration
|
|
|
|
--------------------------------------------
|
2016-01-09 17:28:43 -05:00
|
|
|
|
2016-01-11 10:16:46 -05:00
|
|
|
In 2013, Serhiy Storchaka proposed `Guard against changing dict during
|
|
|
|
iteration (issue #19332) <https://bugs.python.org/issue19332>`_ which
|
|
|
|
adds a ``ma_count`` field to the ``PyDictObject`` structure (``dict``
|
|
|
|
type), the field has the C type ``size_t``. This field is incremented
|
|
|
|
when the dictionary is modified, and so is very similar to the proposed
|
|
|
|
dictionary version.
|
|
|
|
|
|
|
|
Sadly, the dictionary version proposed in this PEP doesn't help to
|
|
|
|
detect dictionary mutation. The dictionary version changes when values
|
|
|
|
are replaced, whereas modifying dictionary values while iterating on
|
|
|
|
dictionary keys is legit in Python.
|
2016-01-09 17:28:43 -05:00
|
|
|
|
|
|
|
|
|
|
|
PySizer
|
|
|
|
-------
|
|
|
|
|
|
|
|
`PySizer <http://pysizer.8325.org/>`_: a memory profiler for Python,
|
|
|
|
Google Summer of Code 2005 project by Nick Smallbone.
|
|
|
|
|
|
|
|
This project has a patch for CPython 2.4 which adds ``key_time`` and
|
|
|
|
``value_time`` fields to dictionary entries. It uses a global
|
|
|
|
process-wide counter for dictionaries, incremented each time that a
|
|
|
|
dictionary is modified. The times are used to decide when child objects
|
|
|
|
first appeared in their parent objects.
|
|
|
|
|
|
|
|
|
|
|
|
Discussion
|
|
|
|
==========
|
|
|
|
|
|
|
|
Thread on the python-ideas mailing list: `RFC: PEP: Add dict.__version__
|
|
|
|
<https://mail.python.org/pipermail/python-ideas/2016-January/037702.html>`_.
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
=========
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|