404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.15.0.64: ~ $
#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


/* runtime lifecycle */

extern void _PyDict_Fini(PyInterpreterState *interp);


/* other API */

#ifndef WITH_FREELISTS
// without freelists
#  define PyDict_MAXFREELIST 0
#endif

#ifndef PyDict_MAXFREELIST
#  define PyDict_MAXFREELIST 80
#endif

struct _Py_dict_state {
#if PyDict_MAXFREELIST > 0
    /* Dictionary reuse scheme to save calls to malloc and free */
    PyDictObject *free_list[PyDict_MAXFREELIST];
    int numfree;
    PyDictKeysObject *keys_free_list[PyDict_MAXFREELIST];
    int keys_numfree;
#endif
};

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;

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;

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. */
extern uint32_t _PyDictKeys_GetVersionForCurrentState(PyDictKeysObject *dictkeys);

extern Py_ssize_t _PyDict_KeysSize(PyDictKeysObject *keys);

/* _Py_dict_lookup() returns index of entry which can be used like DK_ENTRIES(dk)[index].
 * -1 when no entry found, -3 when compare raises error.
 */
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 *);

/* Consumes references to key and value */
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)  /* Used internally */
#define DKIX_ERROR (-3)
#define DKIX_KEY_CHANGED (-4) /* Used internally */

typedef enum {
    DICT_KEYS_GENERAL = 0,
    DICT_KEYS_UNICODE = 1,
    DICT_KEYS_SPLIT = 2
} DictKeysKind;

/* See dictobject.c for actual layout of DictKeysObject */
struct _dictkeysobject {
    Py_ssize_t dk_refcnt;

    /* Size of the hash table (dk_indices). It must be a power of 2. */
    uint8_t dk_log2_size;

    /* Size of the hash table (dk_indices) by bytes. */
    uint8_t dk_log2_index_bytes;

    /* Kind of keys */
    uint8_t dk_kind;

    /* Version number -- Reset to 0 by any modification to keys */
    uint32_t dk_version;

    /* Number of usable entries in dk_entries. */
    Py_ssize_t dk_usable;

    /* Number of used entries in dk_entries. */
    Py_ssize_t dk_nentries;

    /* 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*)
       - 8 bytes otherwise (int64_t*)

       Dynamically sized, SIZEOF_VOID_P is minimum. */
    char dk_indices[];  /* char is required to avoid strict aliasing. */

    /* "PyDictKeyEntry or PyDictUnicodeEntry dk_entries[USABLE_FRACTION(DK_SIZE(dk))];" array follows:
       see the DK_ENTRIES() macro */
};

/* 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.
 */
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   /* !Py_INTERNAL_DICT_H */

Filemanager

Name Type Size Permission Actions
pycore_abstract.h File 611 B 0644
pycore_accu.h File 1.1 KB 0644
pycore_asdl.h File 2.96 KB 0644
pycore_ast.h File 28.63 KB 0644
pycore_ast_state.h File 6.4 KB 0644
pycore_atomic.h File 16.58 KB 0644
pycore_atomic_funcs.h File 2.38 KB 0644
pycore_bitutils.h File 5.92 KB 0644
pycore_blocks_output_buffer.h File 8.48 KB 0644
pycore_bytes_methods.h File 3.3 KB 0644
pycore_bytesobject.h File 1.39 KB 0644
pycore_call.h File 3.39 KB 0644
pycore_ceval.h File 4.31 KB 0644
pycore_code.h File 15.56 KB 0644
pycore_compile.h File 1.02 KB 0644
pycore_condvar.h File 2.77 KB 0644
pycore_context.h File 1.21 KB 0644
pycore_dict.h File 5.55 KB 0644
pycore_dtoa.h File 704 B 0644
pycore_emscripten_signal.h File 562 B 0644
pycore_exceptions.h File 842 B 0644
pycore_fileutils.h File 7.23 KB 0644
pycore_floatobject.h File 1.28 KB 0644
pycore_format.h File 480 B 0644
pycore_frame.h File 7.39 KB 0644
pycore_function.h File 413 B 0644
pycore_gc.h File 6.73 KB 0644
pycore_genobject.h File 1.14 KB 0644
pycore_getopt.h File 490 B 0644
pycore_gil.h File 1.53 KB 0644
pycore_global_objects.h File 1.4 KB 0644
pycore_global_strings.h File 12.68 KB 0644
pycore_hamt.h File 3.61 KB 0644
pycore_hashtable.h File 4.1 KB 0644
pycore_import.h File 743 B 0644
pycore_initconfig.h File 5.66 KB 0644
pycore_interp.h File 6.51 KB 0644
pycore_interpreteridobject.h File 562 B 0644
pycore_list.h File 1.32 KB 0644
pycore_long.h File 3.43 KB 0644
pycore_moduleobject.h File 1.02 KB 0644
pycore_namespace.h File 392 B 0644
pycore_object.h File 9.8 KB 0644
pycore_opcode.h File 18.54 KB 0644
pycore_parser.h File 626 B 0644
pycore_pathconfig.h File 606 B 0644
pycore_pyarena.h File 2.67 KB 0644
pycore_pyerrors.h File 2.44 KB 0644
pycore_pyhash.h File 206 B 0644
pycore_pylifecycle.h File 3.42 KB 0644
pycore_pymath.h File 9.21 KB 0644
pycore_pymem.h File 3.62 KB 0644
pycore_pystate.h File 4.15 KB 0644
pycore_runtime.h File 5.85 KB 0644
pycore_runtime_init.h File 47.94 KB 0644
pycore_signal.h File 937 B 0644
pycore_sliceobject.h File 336 B 0644
pycore_strhex.h File 937 B 0644
pycore_structseq.h File 580 B 0644
pycore_symtable.h File 5.51 KB 0644
pycore_sysmodule.h File 605 B 0644
pycore_traceback.h File 3.42 KB 0644
pycore_tuple.h File 2.04 KB 0644
pycore_typeobject.h File 1.13 KB 0644
pycore_ucnhash.h File 898 B 0644
pycore_unicodeobject.h File 1.68 KB 0644
pycore_unionobject.h File 678 B 0644
pycore_warnings.h File 740 B 0644