diff options
author | Mark Shannon <mark@hotpy.org> | 2021-09-17 11:20:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 11:20:51 (GMT) |
commit | 064464fc38269e70f7e3a34cb25fc9085ab85782 (patch) | |
tree | 685df2fa53696910d4968ef900aadaebbbf4035d /Python | |
parent | cb07838ab756564988b1ffd23871f1222a832446 (diff) | |
download | cpython-064464fc38269e70f7e3a34cb25fc9085ab85782.zip cpython-064464fc38269e70f7e3a34cb25fc9085ab85782.tar.gz cpython-064464fc38269e70f7e3a34cb25fc9085ab85782.tar.bz2 |
bpo-45219: Factor dictkey indexing (GH-28389)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/specialize.c | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/Python/specialize.c b/Python/specialize.c index 398524c..1ab79bf 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -489,7 +489,7 @@ specialize_module_load_attr( SPECIALIZATION_FAIL(opcode, SPEC_FAIL_OUT_OF_RANGE); return -1; } - uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState(dict); + uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState(dict->ma_keys); if (keys_version == 0) { SPECIALIZATION_FAIL(opcode, SPEC_FAIL_OUT_OF_VERSIONS); return -1; @@ -601,23 +601,19 @@ specialize_dict_access( } // We found an instance with a __dict__. PyDictObject *dict = (PyDictObject *)*dictptr; + PyDictKeysObject *keys = dict->ma_keys; if ((type->tp_flags & Py_TPFLAGS_HEAPTYPE) - && dict->ma_keys == ((PyHeapTypeObject*)type)->ht_cached_keys + && keys == ((PyHeapTypeObject*)type)->ht_cached_keys ) { // Keys are shared assert(PyUnicode_CheckExact(name)); - Py_hash_t hash = PyObject_Hash(name); - if (hash == -1) { - return -1; - } - PyObject *value; - Py_ssize_t index = _Py_dict_lookup(dict, name, hash, &value); + Py_ssize_t index = _PyDictKeys_StringLookup(keys, name); assert (index != DKIX_ERROR); if (index != (uint16_t)index) { SPECIALIZATION_FAIL(base_op, SPEC_FAIL_OUT_OF_RANGE); return 0; } - uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState(dict); + uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState(keys); if (keys_version == 0) { SPECIALIZATION_FAIL(base_op, SPEC_FAIL_OUT_OF_VERSIONS); return 0; @@ -966,7 +962,7 @@ _Py_Specialize_LoadMethod(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name, goto fail; } } - keys_version = _PyDictKeys_GetVersionForCurrentState(owner_dict); + keys_version = _PyDictKeys_GetVersionForCurrentState(owner_dict->ma_keys); if (keys_version == 0) { SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS); goto fail; @@ -1020,17 +1016,17 @@ _Py_Specialize_LoadGlobal( if (!PyDict_CheckExact(globals)) { goto fail; } - if (((PyDictObject *)globals)->ma_keys->dk_kind != DICT_KEYS_UNICODE) { + PyDictKeysObject * globals_keys = ((PyDictObject *)globals)->ma_keys; + Py_ssize_t index = _PyDictKeys_StringLookup(globals_keys, name); + if (index == DKIX_ERROR) { + SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_NON_STRING_OR_SPLIT); goto fail; } - PyObject *value = NULL; - Py_ssize_t index = _PyDict_GetItemHint((PyDictObject *)globals, name, -1, &value); - assert (index != DKIX_ERROR); if (index != DKIX_EMPTY) { if (index != (uint16_t)index) { goto fail; } - uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState((PyDictObject *)globals); + uint32_t keys_version = _PyDictKeys_GetVersionForCurrentState(globals_keys); if (keys_version == 0) { goto fail; } @@ -1042,20 +1038,23 @@ _Py_Specialize_LoadGlobal( if (!PyDict_CheckExact(builtins)) { goto fail; } - if (((PyDictObject *)builtins)->ma_keys->dk_kind != DICT_KEYS_UNICODE) { + PyDictKeysObject * builtin_keys = ((PyDictObject *)builtins)->ma_keys; + index = _PyDictKeys_StringLookup(builtin_keys, name); + if (index == DKIX_ERROR) { + SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_NON_STRING_OR_SPLIT); goto fail; } - index = _PyDict_GetItemHint((PyDictObject *)builtins, name, -1, &value); - assert (index != DKIX_ERROR); if (index != (uint16_t)index) { goto fail; } - uint32_t globals_version = _PyDictKeys_GetVersionForCurrentState((PyDictObject *)globals); + uint32_t globals_version = _PyDictKeys_GetVersionForCurrentState(globals_keys); if (globals_version == 0) { + SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_VERSIONS); goto fail; } - uint32_t builtins_version = _PyDictKeys_GetVersionForCurrentState((PyDictObject *)builtins); + uint32_t builtins_version = _PyDictKeys_GetVersionForCurrentState(builtin_keys); if (builtins_version == 0) { + SPECIALIZATION_FAIL(LOAD_GLOBAL, SPEC_FAIL_OUT_OF_VERSIONS); goto fail; } cache1->module_keys_version = globals_version; |