mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-24 13:45:05 +00:00
Massive automated renaming of all Py_/PyObject/etc. prefixes to Ty_/TyObject/etc. This includes: - All public API types (TyObject, TyTypeObject, etc.) - All public API functions (Ty_Initialize, Ty_BuildValue, etc.) - All internal API (_Ty_ prefixes) - Reference counting macros (Ty_INCREF, Ty_DECREF, etc.) - Type flags (Ty_TPFLAGS_*) - Debug flags (Ty_DEBUG, Ty_TRACE_REFS, etc.) - All object type APIs (TyList_, TyDict_, TyUnicode_, etc.) This changes over 60,000 occurrences across 1000+ files. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
92 lines
2.4 KiB
C
92 lines
2.4 KiB
C
#ifndef Ty_INTERNAL_PYHASH_H
|
|
#define Ty_INTERNAL_PYHASH_H
|
|
|
|
#ifndef Ty_BUILD_CORE
|
|
# error "this header requires Ty_BUILD_CORE define"
|
|
#endif
|
|
|
|
// Similar to Ty_HashPointer(), but don't replace -1 with -2.
|
|
static inline Ty_hash_t
|
|
_Ty_HashPointerRaw(const void *ptr)
|
|
{
|
|
uintptr_t x = (uintptr_t)ptr;
|
|
Ty_BUILD_ASSERT(sizeof(x) == sizeof(ptr));
|
|
|
|
// Bottom 3 or 4 bits are likely to be 0; rotate x by 4 to the right
|
|
// to avoid excessive hash collisions for dicts and sets.
|
|
x = (x >> 4) | (x << (8 * sizeof(uintptr_t) - 4));
|
|
|
|
Ty_BUILD_ASSERT(sizeof(x) == sizeof(Ty_hash_t));
|
|
return (Ty_hash_t)x;
|
|
}
|
|
|
|
/* Hash secret
|
|
*
|
|
* memory layout on 64 bit systems
|
|
* cccccccc cccccccc cccccccc uc -- unsigned char[24]
|
|
* pppppppp ssssssss ........ fnv -- two Ty_hash_t
|
|
* k0k0k0k0 k1k1k1k1 ........ siphash -- two uint64_t
|
|
* ........ ........ ssssssss djbx33a -- 16 bytes padding + one Ty_hash_t
|
|
* ........ ........ eeeeeeee pyexpat XML hash salt
|
|
*
|
|
* memory layout on 32 bit systems
|
|
* cccccccc cccccccc cccccccc uc
|
|
* ppppssss ........ ........ fnv -- two Ty_hash_t
|
|
* k0k0k0k0 k1k1k1k1 ........ siphash -- two uint64_t (*)
|
|
* ........ ........ ssss.... djbx33a -- 16 bytes padding + one Ty_hash_t
|
|
* ........ ........ eeee.... pyexpat XML hash salt
|
|
*
|
|
* (*) The siphash member may not be available on 32 bit platforms without
|
|
* an unsigned int64 data type.
|
|
*/
|
|
typedef union {
|
|
/* ensure 24 bytes */
|
|
unsigned char uc[24];
|
|
/* two Ty_hash_t for FNV */
|
|
struct {
|
|
Ty_hash_t prefix;
|
|
Ty_hash_t suffix;
|
|
} fnv;
|
|
/* two uint64 for SipHash24 */
|
|
struct {
|
|
uint64_t k0;
|
|
uint64_t k1;
|
|
} siphash;
|
|
/* a different (!) Ty_hash_t for small string optimization */
|
|
struct {
|
|
unsigned char padding[16];
|
|
Ty_hash_t suffix;
|
|
} djbx33a;
|
|
struct {
|
|
unsigned char padding[16];
|
|
Ty_hash_t hashsalt;
|
|
} expat;
|
|
} _Ty_HashSecret_t;
|
|
|
|
// Export for '_elementtree' shared extension
|
|
PyAPI_DATA(_Ty_HashSecret_t) _Ty_HashSecret;
|
|
|
|
#ifdef Ty_DEBUG
|
|
extern int _Ty_HashSecret_Initialized;
|
|
#endif
|
|
|
|
|
|
#ifndef MS_WINDOWS
|
|
# define _py_urandom_cache_INIT \
|
|
{ \
|
|
.fd = -1, \
|
|
}
|
|
#else
|
|
# define _py_urandom_cache_INIT {0}
|
|
#endif
|
|
|
|
#define pyhash_state_INIT \
|
|
{ \
|
|
.urandom_cache = _py_urandom_cache_INIT, \
|
|
}
|
|
|
|
|
|
extern uint64_t _Ty_KeyedHash(uint64_t key, const void *src, Ty_ssize_t src_sz);
|
|
|
|
#endif // !Ty_INTERNAL_PYHASH_H
|