|
|
|
|
|
#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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern void _PyDict_Fini(PyInterpreterState *interp); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef WITH_FREELISTS |
|
|
|
|
|
# define PyDict_MAXFREELIST 0 |
|
|
#endif |
|
|
|
|
|
#ifndef PyDict_MAXFREELIST |
|
|
# define PyDict_MAXFREELIST 80 |
|
|
#endif |
|
|
|
|
|
struct _Py_dict_state { |
|
|
#if PyDict_MAXFREELIST > 0 |
|
|
|
|
|
PyDictObject *free_list[PyDict_MAXFREELIST]; |
|
|
int numfree; |
|
|
PyDictKeysObject *keys_free_list[PyDict_MAXFREELIST]; |
|
|
int keys_numfree; |
|
|
#endif |
|
|
}; |
|
|
|
|
|
typedef struct { |
|
|
|
|
|
Py_hash_t me_hash; |
|
|
PyObject *me_key; |
|
|
PyObject *me_value; |
|
|
} PyDictKeyEntry; |
|
|
|
|
|
typedef struct { |
|
|
PyObject *me_key; |
|
|
PyObject *me_value; |
|
|
} PyDictUnicodeEntry; |
|
|
|
|
|
extern PyDictKeysObject *_PyDict_NewKeysForClass(void); |
|
|
extern PyObject *_PyDict_FromKeys(PyObject *, PyObject *, PyObject *); |
|
|
|
|
|
|
|
|
|
|
|
extern uint32_t _PyDictKeys_GetVersionForCurrentState(PyDictKeysObject *dictkeys); |
|
|
|
|
|
extern Py_ssize_t _PyDict_KeysSize(PyDictKeysObject *keys); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern Py_ssize_t _Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr); |
|
|
|
|
|
extern Py_ssize_t _PyDict_GetItemHint(PyDictObject *, PyObject *, Py_ssize_t, PyObject **); |
|
|
extern Py_ssize_t _PyDictKeys_StringLookup(PyDictKeysObject* dictkeys, PyObject *key); |
|
|
extern PyObject *_PyDict_LoadGlobal(PyDictObject *, PyDictObject *, PyObject *); |
|
|
|
|
|
|
|
|
extern int _PyDict_SetItem_Take2(PyDictObject *op, PyObject *key, PyObject *value); |
|
|
extern int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value); |
|
|
|
|
|
extern PyObject *_PyDict_Pop_KnownHash(PyObject *, PyObject *, Py_hash_t, PyObject *); |
|
|
|
|
|
#define DKIX_EMPTY (-1) |
|
|
#define DKIX_DUMMY (-2) |
|
|
#define DKIX_ERROR (-3) |
|
|
#define DKIX_KEY_CHANGED (-4) |
|
|
|
|
|
typedef enum { |
|
|
DICT_KEYS_GENERAL = 0, |
|
|
DICT_KEYS_UNICODE = 1, |
|
|
DICT_KEYS_SPLIT = 2 |
|
|
} DictKeysKind; |
|
|
|
|
|
|
|
|
struct _dictkeysobject { |
|
|
Py_ssize_t dk_refcnt; |
|
|
|
|
|
|
|
|
uint8_t dk_log2_size; |
|
|
|
|
|
|
|
|
uint8_t dk_log2_index_bytes; |
|
|
|
|
|
|
|
|
uint8_t dk_kind; |
|
|
|
|
|
|
|
|
uint32_t dk_version; |
|
|
|
|
|
|
|
|
Py_ssize_t dk_usable; |
|
|
|
|
|
|
|
|
Py_ssize_t dk_nentries; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char dk_indices[]; |
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
#define SHARED_KEYS_MAX_SIZE 30 |
|
|
#define NEXT_LOG2_SHARED_KEYS_MAX_SIZE 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct _dictvalues { |
|
|
PyObject *values[1]; |
|
|
}; |
|
|
|
|
|
#define DK_LOG_SIZE(dk) ((dk)->dk_log2_size) |
|
|
#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 |
|
|
#define DK_ENTRIES(dk) \ |
|
|
(assert(dk->dk_kind == DICT_KEYS_GENERAL), (PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes])) |
|
|
#define DK_UNICODE_ENTRIES(dk) \ |
|
|
(assert(dk->dk_kind != DICT_KEYS_GENERAL), (PyDictUnicodeEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes])) |
|
|
#define DK_IS_UNICODE(dk) ((dk)->dk_kind != DICT_KEYS_GENERAL) |
|
|
|
|
|
extern uint64_t _pydict_global_version; |
|
|
|
|
|
#define DICT_NEXT_VERSION() (++_pydict_global_version) |
|
|
|
|
|
extern PyObject *_PyObject_MakeDictFromInstanceAttributes(PyObject *obj, PyDictValues *values); |
|
|
extern PyObject *_PyDict_FromItems( |
|
|
PyObject *const *keys, Py_ssize_t keys_offset, |
|
|
PyObject *const *values, Py_ssize_t values_offset, |
|
|
Py_ssize_t length); |
|
|
|
|
|
static inline void |
|
|
_PyDictValues_AddToInsertionOrder(PyDictValues *values, Py_ssize_t ix) |
|
|
{ |
|
|
assert(ix < SHARED_KEYS_MAX_SIZE); |
|
|
uint8_t *size_ptr = ((uint8_t *)values)-2; |
|
|
int size = *size_ptr; |
|
|
assert(size+2 < ((uint8_t *)values)[-1]); |
|
|
size++; |
|
|
size_ptr[-size] = (uint8_t)ix; |
|
|
*size_ptr = size; |
|
|
} |
|
|
|
|
|
#ifdef __cplusplus |
|
|
} |
|
|
#endif |
|
|
#endif |
|
|
|