2021-06-10 04:46:01 -03:00
|
|
|
#ifndef Py_INTERNAL_DICT_H
|
|
|
|
#define Py_INTERNAL_DICT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
|
|
|
#endif
|
|
|
|
|
2024-04-22 02:57:05 -03:00
|
|
|
#include "pycore_freelist.h" // _PyFreeListState
|
|
|
|
#include "pycore_identifier.h" // _Py_Identifier
|
|
|
|
#include "pycore_object.h" // PyManagedDictPointer
|
|
|
|
#include "pycore_pyatomic_ft_wrappers.h" // FT_ATOMIC_LOAD_SSIZE_ACQUIRE
|
2022-11-16 13:37:29 -04:00
|
|
|
|
2023-07-24 11:02:03 -03:00
|
|
|
// Unsafe flavor of PyDict_GetItemWithError(): no error checking
|
|
|
|
extern PyObject* _PyDict_GetItemWithError(PyObject *dp, PyObject *key);
|
|
|
|
|
2024-07-23 14:30:58 -03:00
|
|
|
// Delete an item from a dict if a predicate is true
|
|
|
|
// Returns -1 on error, 1 if the item was deleted, 0 otherwise
|
|
|
|
// Export for '_asyncio' shared extension
|
|
|
|
PyAPI_FUNC(int) _PyDict_DelItemIf(PyObject *mp, PyObject *key,
|
|
|
|
int (*predicate)(PyObject *value, void *arg),
|
|
|
|
void *arg);
|
2023-07-24 11:02:03 -03:00
|
|
|
|
2023-08-24 17:01:50 -03:00
|
|
|
// "KnownHash" variants
|
|
|
|
// Export for '_asyncio' shared extension
|
|
|
|
PyAPI_FUNC(int) _PyDict_SetItem_KnownHash(PyObject *mp, PyObject *key,
|
|
|
|
PyObject *item, Py_hash_t hash);
|
|
|
|
// Export for '_asyncio' shared extension
|
|
|
|
PyAPI_FUNC(int) _PyDict_DelItem_KnownHash(PyObject *mp, PyObject *key,
|
|
|
|
Py_hash_t hash);
|
|
|
|
extern int _PyDict_Contains_KnownHash(PyObject *, PyObject *, Py_hash_t);
|
|
|
|
|
|
|
|
// "Id" variants
|
|
|
|
extern PyObject* _PyDict_GetItemIdWithError(PyObject *dp,
|
|
|
|
_Py_Identifier *key);
|
|
|
|
extern int _PyDict_ContainsId(PyObject *, _Py_Identifier *);
|
|
|
|
extern int _PyDict_SetItemId(PyObject *dp, _Py_Identifier *key, PyObject *item);
|
|
|
|
extern int _PyDict_DelItemId(PyObject *mp, _Py_Identifier *key);
|
|
|
|
|
|
|
|
extern int _PyDict_Next(
|
|
|
|
PyObject *mp, Py_ssize_t *pos, PyObject **key, PyObject **value, Py_hash_t *hash);
|
|
|
|
|
2023-07-24 11:02:03 -03:00
|
|
|
extern int _PyDict_HasOnlyStringKeys(PyObject *mp);
|
|
|
|
|
|
|
|
extern void _PyDict_MaybeUntrack(PyObject *mp);
|
|
|
|
|
2023-08-24 17:01:50 -03:00
|
|
|
// Export for '_ctypes' shared extension
|
|
|
|
PyAPI_FUNC(Py_ssize_t) _PyDict_SizeOf(PyDictObject *);
|
|
|
|
|
|
|
|
#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
|
|
|
|
|
2023-07-24 11:02:03 -03:00
|
|
|
/* Like PyDict_Merge, but override can be 0, 1 or 2. If override is 0,
|
|
|
|
the first occurrence of a key wins, if override is 1, the last occurrence
|
|
|
|
of a key wins, if override is 2, a KeyError with conflicting key as
|
|
|
|
argument is raised.
|
|
|
|
*/
|
2024-02-29 12:11:28 -04:00
|
|
|
PyAPI_FUNC(int) _PyDict_MergeEx(PyObject *mp, PyObject *other, int override);
|
2023-07-24 11:02:03 -03:00
|
|
|
|
|
|
|
extern void _PyDict_DebugMallocStats(FILE *out);
|
2015-05-30 01:21:39 -03:00
|
|
|
|
2023-08-24 17:01:50 -03:00
|
|
|
|
|
|
|
/* _PyDictView */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
PyDictObject *dv_dict;
|
|
|
|
} _PyDictViewObject;
|
|
|
|
|
|
|
|
extern PyObject* _PyDictView_New(PyObject *, PyTypeObject *);
|
|
|
|
extern PyObject* _PyDictView_Intersect(PyObject* self, PyObject *other);
|
|
|
|
|
2021-12-09 15:59:26 -04:00
|
|
|
/* other API */
|
|
|
|
|
2015-05-30 01:21:39 -03:00
|
|
|
typedef struct {
|
|
|
|
/* Cached hash code of me_key. */
|
|
|
|
Py_hash_t me_hash;
|
|
|
|
PyObject *me_key;
|
|
|
|
PyObject *me_value; /* This field is only meaningful for combined tables */
|
|
|
|
} PyDictKeyEntry;
|
|
|
|
|
2022-03-01 19:09:28 -04:00
|
|
|
typedef struct {
|
|
|
|
PyObject *me_key; /* The key must be Unicode and have hash. */
|
|
|
|
PyObject *me_value; /* This field is only meaningful for combined tables */
|
|
|
|
} PyDictUnicodeEntry;
|
|
|
|
|
2022-02-25 10:41:55 -04:00
|
|
|
extern PyDictKeysObject *_PyDict_NewKeysForClass(void);
|
|
|
|
extern PyObject *_PyDict_FromKeys(PyObject *, PyObject *, PyObject *);
|
|
|
|
|
|
|
|
/* Gets a version number unique to the current state of the keys of dict, if possible.
|
|
|
|
* Returns the version number, or zero if it was not possible to get a version number. */
|
2023-03-08 21:04:16 -04:00
|
|
|
extern uint32_t _PyDictKeys_GetVersionForCurrentState(
|
|
|
|
PyInterpreterState *interp, PyDictKeysObject *dictkeys);
|
2022-02-25 10:41:55 -04:00
|
|
|
|
2022-11-29 07:12:17 -04:00
|
|
|
extern size_t _PyDict_KeysSize(PyDictKeysObject *keys);
|
2022-02-25 10:41:55 -04:00
|
|
|
|
2023-08-09 16:14:50 -03:00
|
|
|
extern void _PyDictKeys_DecRef(PyDictKeysObject *keys);
|
|
|
|
|
2021-05-28 05:54:10 -03:00
|
|
|
/* _Py_dict_lookup() returns index of entry which can be used like DK_ENTRIES(dk)[index].
|
2016-09-07 21:40:12 -03:00
|
|
|
* -1 when no entry found, -3 when compare raises error.
|
|
|
|
*/
|
2022-02-25 10:41:55 -04:00
|
|
|
extern Py_ssize_t _Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr);
|
2024-04-04 16:26:07 -03:00
|
|
|
extern Py_ssize_t _Py_dict_lookup_threadsafe(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr);
|
2022-02-25 10:41:55 -04:00
|
|
|
|
2022-08-18 06:19:21 -03:00
|
|
|
extern Py_ssize_t _PyDict_LookupIndex(PyDictObject *, PyObject *);
|
2022-02-25 10:41:55 -04:00
|
|
|
extern Py_ssize_t _PyDictKeys_StringLookup(PyDictKeysObject* dictkeys, PyObject *key);
|
2024-02-29 12:11:28 -04:00
|
|
|
PyAPI_FUNC(PyObject *)_PyDict_LoadGlobal(PyDictObject *, PyDictObject *, PyObject *);
|
2021-05-28 05:54:10 -03:00
|
|
|
|
2021-11-19 06:30:37 -04:00
|
|
|
/* Consumes references to key and value */
|
2024-02-29 12:11:28 -04:00
|
|
|
PyAPI_FUNC(int) _PyDict_SetItem_Take2(PyDictObject *op, PyObject *key, PyObject *value);
|
2024-05-06 14:50:35 -03:00
|
|
|
extern int _PyDict_SetItem_LockHeld(PyDictObject *dict, PyObject *name, PyObject *value);
|
2024-08-02 10:58:24 -03:00
|
|
|
// Export for '_asyncio' shared extension
|
|
|
|
PyAPI_FUNC(int) _PyDict_SetItem_KnownHash_LockHeld(PyDictObject *mp, PyObject *key,
|
|
|
|
PyObject *value, Py_hash_t hash);
|
|
|
|
// Export for '_asyncio' shared extension
|
|
|
|
PyAPI_FUNC(int) _PyDict_GetItemRef_KnownHash_LockHeld(PyDictObject *op, PyObject *key, Py_hash_t hash, PyObject **result);
|
2024-05-06 14:50:35 -03:00
|
|
|
extern int _PyDict_GetItemRef_KnownHash(PyDictObject *op, PyObject *key, Py_hash_t hash, PyObject **result);
|
2024-08-02 10:58:24 -03:00
|
|
|
extern int _PyDict_GetItemRef_Unicode_LockHeld(PyDictObject *op, PyObject *key, PyObject **result);
|
2024-05-06 20:31:09 -03:00
|
|
|
extern int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject *obj, PyObject **dictptr, PyObject *name, PyObject *value);
|
2022-02-25 10:41:55 -04:00
|
|
|
|
2023-11-14 08:51:00 -04:00
|
|
|
extern int _PyDict_Pop_KnownHash(
|
|
|
|
PyDictObject *dict,
|
|
|
|
PyObject *key,
|
|
|
|
Py_hash_t hash,
|
|
|
|
PyObject **result);
|
2015-05-30 01:21:39 -03:00
|
|
|
|
2016-09-07 21:40:12 -03:00
|
|
|
#define DKIX_EMPTY (-1)
|
|
|
|
#define DKIX_DUMMY (-2) /* Used internally */
|
|
|
|
#define DKIX_ERROR (-3)
|
2022-03-01 19:09:28 -04:00
|
|
|
#define DKIX_KEY_CHANGED (-4) /* Used internally */
|
2016-09-07 21:40:12 -03:00
|
|
|
|
2021-05-28 05:54:10 -03:00
|
|
|
typedef enum {
|
|
|
|
DICT_KEYS_GENERAL = 0,
|
|
|
|
DICT_KEYS_UNICODE = 1,
|
|
|
|
DICT_KEYS_SPLIT = 2
|
|
|
|
} DictKeysKind;
|
|
|
|
|
2016-09-07 21:40:12 -03:00
|
|
|
/* See dictobject.c for actual layout of DictKeysObject */
|
2015-05-30 01:21:39 -03:00
|
|
|
struct _dictkeysobject {
|
|
|
|
Py_ssize_t dk_refcnt;
|
2016-09-08 16:01:25 -03:00
|
|
|
|
|
|
|
/* Size of the hash table (dk_indices). It must be a power of 2. */
|
2021-05-28 05:54:10 -03:00
|
|
|
uint8_t dk_log2_size;
|
2016-09-08 16:01:25 -03:00
|
|
|
|
2022-02-22 07:03:15 -04:00
|
|
|
/* Size of the hash table (dk_indices) by bytes. */
|
|
|
|
uint8_t dk_log2_index_bytes;
|
|
|
|
|
2021-05-28 05:54:10 -03:00
|
|
|
/* Kind of keys */
|
|
|
|
uint8_t dk_kind;
|
2016-09-08 16:01:25 -03:00
|
|
|
|
2024-02-20 20:40:37 -04:00
|
|
|
#ifdef Py_GIL_DISABLED
|
|
|
|
/* Lock used to protect shared keys */
|
|
|
|
PyMutex dk_mutex;
|
|
|
|
#endif
|
|
|
|
|
2021-05-28 05:54:10 -03:00
|
|
|
/* Version number -- Reset to 0 by any modification to keys */
|
|
|
|
uint32_t dk_version;
|
2016-09-08 16:01:25 -03:00
|
|
|
|
2016-09-14 10:02:01 -03:00
|
|
|
/* Number of usable entries in dk_entries. */
|
2015-05-30 01:21:39 -03:00
|
|
|
Py_ssize_t dk_usable;
|
2016-09-08 16:01:25 -03:00
|
|
|
|
2016-09-14 10:02:01 -03:00
|
|
|
/* Number of used entries in dk_entries. */
|
2016-09-08 16:01:25 -03:00
|
|
|
Py_ssize_t dk_nentries;
|
|
|
|
|
2024-02-20 20:40:37 -04:00
|
|
|
|
2016-09-08 16:01:25 -03:00
|
|
|
/* Actual hash table of dk_size entries. It holds indices in dk_entries,
|
|
|
|
or DKIX_EMPTY(-1) or DKIX_DUMMY(-2).
|
|
|
|
|
|
|
|
Indices must be: 0 <= indice < USABLE_FRACTION(dk_size).
|
|
|
|
|
|
|
|
The size in bytes of an indice depends on dk_size:
|
|
|
|
|
|
|
|
- 1 byte if dk_size <= 0xff (char*)
|
|
|
|
- 2 bytes if dk_size <= 0xffff (int16_t*)
|
|
|
|
- 4 bytes if dk_size <= 0xffffffff (int32_t*)
|
2016-09-08 17:16:41 -03:00
|
|
|
- 8 bytes otherwise (int64_t*)
|
2016-09-08 16:01:25 -03:00
|
|
|
|
2018-04-20 02:41:19 -03:00
|
|
|
Dynamically sized, SIZEOF_VOID_P is minimum. */
|
|
|
|
char dk_indices[]; /* char is required to avoid strict aliasing. */
|
2016-09-08 16:01:25 -03:00
|
|
|
|
2022-03-01 19:09:28 -04:00
|
|
|
/* "PyDictKeyEntry or PyDictUnicodeEntry dk_entries[USABLE_FRACTION(DK_SIZE(dk))];" array follows:
|
2024-03-12 11:05:30 -03:00
|
|
|
see the DK_ENTRIES() / DK_UNICODE_ENTRIES() functions below */
|
2015-05-30 01:21:39 -03:00
|
|
|
};
|
|
|
|
|
2022-02-08 07:50:38 -04:00
|
|
|
/* This must be no more than 250, for the prefix size to fit in one byte. */
|
|
|
|
#define SHARED_KEYS_MAX_SIZE 30
|
|
|
|
#define NEXT_LOG2_SHARED_KEYS_MAX_SIZE 6
|
|
|
|
|
|
|
|
/* Layout of dict values:
|
|
|
|
*
|
|
|
|
* The PyObject *values are preceded by an array of bytes holding
|
|
|
|
* the insertion order and size.
|
|
|
|
* [-1] = prefix size. [-2] = used size. size[-2-n...] = insertion order.
|
|
|
|
*/
|
2021-10-06 09:19:53 -03:00
|
|
|
struct _dictvalues {
|
2024-04-02 07:59:21 -03:00
|
|
|
uint8_t capacity;
|
|
|
|
uint8_t size;
|
|
|
|
uint8_t embedded;
|
|
|
|
uint8_t valid;
|
2021-10-06 09:19:53 -03:00
|
|
|
PyObject *values[1];
|
|
|
|
};
|
|
|
|
|
2022-11-28 12:42:22 -04:00
|
|
|
#define DK_LOG_SIZE(dk) _Py_RVALUE((dk)->dk_log2_size)
|
2021-06-10 04:46:01 -03:00
|
|
|
#if SIZEOF_VOID_P > 4
|
|
|
|
#define DK_SIZE(dk) (((int64_t)1)<<DK_LOG_SIZE(dk))
|
|
|
|
#else
|
|
|
|
#define DK_SIZE(dk) (1<<DK_LOG_SIZE(dk))
|
|
|
|
#endif
|
2022-11-28 11:40:08 -04:00
|
|
|
|
|
|
|
static inline void* _DK_ENTRIES(PyDictKeysObject *dk) {
|
|
|
|
int8_t *indices = (int8_t*)(dk->dk_indices);
|
|
|
|
size_t index = (size_t)1 << dk->dk_log2_index_bytes;
|
|
|
|
return (&indices[index]);
|
|
|
|
}
|
2024-04-02 07:59:21 -03:00
|
|
|
|
2022-11-28 11:40:08 -04:00
|
|
|
static inline PyDictKeyEntry* DK_ENTRIES(PyDictKeysObject *dk) {
|
|
|
|
assert(dk->dk_kind == DICT_KEYS_GENERAL);
|
|
|
|
return (PyDictKeyEntry*)_DK_ENTRIES(dk);
|
|
|
|
}
|
|
|
|
static inline PyDictUnicodeEntry* DK_UNICODE_ENTRIES(PyDictKeysObject *dk) {
|
|
|
|
assert(dk->dk_kind != DICT_KEYS_GENERAL);
|
|
|
|
return (PyDictUnicodeEntry*)_DK_ENTRIES(dk);
|
|
|
|
}
|
|
|
|
|
2022-03-01 19:09:28 -04:00
|
|
|
#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL)
|
2021-06-10 04:46:01 -03:00
|
|
|
|
2024-02-02 08:14:34 -04:00
|
|
|
#define DICT_VERSION_INCREMENT (1 << (DICT_MAX_WATCHERS + DICT_WATCHED_MUTATION_BITS))
|
|
|
|
#define DICT_WATCHER_MASK ((1 << DICT_MAX_WATCHERS) - 1)
|
2024-02-12 12:07:38 -04:00
|
|
|
#define DICT_WATCHER_AND_MODIFICATION_MASK ((1 << (DICT_MAX_WATCHERS + DICT_WATCHED_MUTATION_BITS)) - 1)
|
2022-10-06 21:08:00 -03:00
|
|
|
|
2024-01-29 13:47:54 -04:00
|
|
|
#ifdef Py_GIL_DISABLED
|
2024-05-06 21:22:26 -03:00
|
|
|
|
|
|
|
#define THREAD_LOCAL_DICT_VERSION_COUNT 256
|
|
|
|
#define THREAD_LOCAL_DICT_VERSION_BATCH THREAD_LOCAL_DICT_VERSION_COUNT * DICT_VERSION_INCREMENT
|
|
|
|
|
|
|
|
static inline uint64_t
|
|
|
|
dict_next_version(PyInterpreterState *interp)
|
|
|
|
{
|
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
|
|
|
uint64_t cur_progress = (tstate->dict_global_version &
|
|
|
|
(THREAD_LOCAL_DICT_VERSION_BATCH - 1));
|
|
|
|
if (cur_progress == 0) {
|
|
|
|
uint64_t next = _Py_atomic_add_uint64(&interp->dict_state.global_version,
|
|
|
|
THREAD_LOCAL_DICT_VERSION_BATCH);
|
|
|
|
tstate->dict_global_version = next;
|
|
|
|
}
|
|
|
|
return tstate->dict_global_version += DICT_VERSION_INCREMENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DICT_NEXT_VERSION(INTERP) dict_next_version(INTERP)
|
2024-01-29 13:47:54 -04:00
|
|
|
|
|
|
|
#else
|
2023-03-09 11:16:30 -04:00
|
|
|
#define DICT_NEXT_VERSION(INTERP) \
|
|
|
|
((INTERP)->dict_state.global_version += DICT_VERSION_INCREMENT)
|
2024-01-29 13:47:54 -04:00
|
|
|
#endif
|
2022-10-06 21:08:00 -03:00
|
|
|
|
|
|
|
void
|
|
|
|
_PyDict_SendEvent(int watcher_bits,
|
|
|
|
PyDict_WatchEvent event,
|
|
|
|
PyDictObject *mp,
|
|
|
|
PyObject *key,
|
|
|
|
PyObject *value);
|
|
|
|
|
|
|
|
static inline uint64_t
|
2023-03-09 11:16:30 -04:00
|
|
|
_PyDict_NotifyEvent(PyInterpreterState *interp,
|
|
|
|
PyDict_WatchEvent event,
|
2022-10-06 21:08:00 -03:00
|
|
|
PyDictObject *mp,
|
|
|
|
PyObject *key,
|
|
|
|
PyObject *value)
|
|
|
|
{
|
2023-03-07 20:10:58 -04:00
|
|
|
assert(Py_REFCNT((PyObject*)mp) > 0);
|
2024-02-02 08:14:34 -04:00
|
|
|
int watcher_bits = mp->ma_version_tag & DICT_WATCHER_MASK;
|
2022-10-06 21:08:00 -03:00
|
|
|
if (watcher_bits) {
|
2024-02-12 12:07:38 -04:00
|
|
|
RARE_EVENT_STAT_INC(watched_dict_modification);
|
2022-10-06 21:08:00 -03:00
|
|
|
_PyDict_SendEvent(watcher_bits, event, mp, key, value);
|
|
|
|
}
|
2024-02-12 12:07:38 -04:00
|
|
|
return DICT_NEXT_VERSION(interp) | (mp->ma_version_tag & DICT_WATCHER_AND_MODIFICATION_MASK);
|
2022-10-06 21:08:00 -03:00
|
|
|
}
|
2021-06-10 04:46:01 -03:00
|
|
|
|
2024-04-22 02:57:05 -03:00
|
|
|
extern PyDictObject *_PyObject_MaterializeManagedDict(PyObject *obj);
|
2024-04-02 07:59:21 -03:00
|
|
|
|
2024-02-29 12:11:28 -04:00
|
|
|
PyAPI_FUNC(PyObject *)_PyDict_FromItems(
|
2022-03-01 19:09:28 -04:00
|
|
|
PyObject *const *keys, Py_ssize_t keys_offset,
|
|
|
|
PyObject *const *values, Py_ssize_t values_offset,
|
|
|
|
Py_ssize_t length);
|
2021-10-13 10:19:34 -03:00
|
|
|
|
2024-04-02 07:59:21 -03:00
|
|
|
static inline uint8_t *
|
|
|
|
get_insertion_order_array(PyDictValues *values)
|
|
|
|
{
|
|
|
|
return (uint8_t *)&values->values[values->capacity];
|
|
|
|
}
|
|
|
|
|
2022-02-08 07:50:38 -04:00
|
|
|
static inline void
|
|
|
|
_PyDictValues_AddToInsertionOrder(PyDictValues *values, Py_ssize_t ix)
|
|
|
|
{
|
|
|
|
assert(ix < SHARED_KEYS_MAX_SIZE);
|
2024-04-02 07:59:21 -03:00
|
|
|
int size = values->size;
|
|
|
|
uint8_t *array = get_insertion_order_array(values);
|
|
|
|
assert(size < values->capacity);
|
|
|
|
assert(((uint8_t)ix) == ix);
|
|
|
|
array[size] = (uint8_t)ix;
|
|
|
|
values->size = size+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t
|
|
|
|
shared_keys_usable_size(PyDictKeysObject *keys)
|
|
|
|
{
|
|
|
|
// dk_usable will decrease for each instance that is created and each
|
|
|
|
// value that is added. dk_nentries will increase for each value that
|
|
|
|
// is added. We want to always return the right value or larger.
|
|
|
|
// We therefore increase dk_nentries first and we decrease dk_usable
|
|
|
|
// second, and conversely here we read dk_usable first and dk_entries
|
|
|
|
// second (to avoid the case where we read entries before the increment
|
|
|
|
// and read usable after the decrement)
|
2024-04-22 02:57:05 -03:00
|
|
|
Py_ssize_t dk_usable = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_usable);
|
|
|
|
Py_ssize_t dk_nentries = FT_ATOMIC_LOAD_SSIZE_ACQUIRE(keys->dk_nentries);
|
|
|
|
return dk_nentries + dk_usable;
|
2022-02-08 07:50:38 -04:00
|
|
|
}
|
|
|
|
|
2024-04-02 07:59:21 -03:00
|
|
|
static inline size_t
|
|
|
|
_PyInlineValuesSize(PyTypeObject *tp)
|
|
|
|
{
|
|
|
|
PyDictKeysObject *keys = ((PyHeapTypeObject*)tp)->ht_cached_keys;
|
|
|
|
assert(keys != NULL);
|
|
|
|
size_t size = shared_keys_usable_size(keys);
|
|
|
|
size_t prefix_size = _Py_SIZE_ROUND_UP(size, sizeof(PyObject *));
|
|
|
|
assert(prefix_size < 256);
|
|
|
|
return prefix_size + (size + 1) * sizeof(PyObject *);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyDict_DetachFromObject(PyDictObject *dict, PyObject *obj);
|
|
|
|
|
2024-07-12 08:35:53 -03:00
|
|
|
PyDictObject *_PyObject_MaterializeManagedDict_LockHeld(PyObject *);
|
|
|
|
|
2021-06-10 04:46:01 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2015-05-30 01:21:39 -03:00
|
|
|
#endif
|
2021-06-10 04:46:01 -03:00
|
|
|
#endif /* !Py_INTERNAL_DICT_H */
|