mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
GH-101291: Rearrange the size bits in PyLongObject (GH-102464)
* Eliminate all remaining uses of Py_SIZE and Py_SET_SIZE on PyLongObject, adding asserts. * Change layout of size/sign bits in longobject to support future addition of immortal ints and tagged medium ints. * Add functions to hide some internals of long object, and for setting sign and digit count. * Replace uses of IS_MEDIUM_VALUE macro with _PyLong_IsCompact().
This commit is contained in:
parent
713df2c534
commit
7559f5fda9
25 changed files with 982 additions and 898 deletions
|
|
@ -80,7 +80,7 @@ typedef long stwodigits; /* signed variant of twodigits */
|
|||
*/
|
||||
|
||||
typedef struct _PyLongValue {
|
||||
Py_ssize_t ob_size; /* Number of items in variable part */
|
||||
uintptr_t lv_tag; /* Number of digits, sign and flags */
|
||||
digit ob_digit[1];
|
||||
} _PyLongValue;
|
||||
|
||||
|
|
@ -94,6 +94,10 @@ PyAPI_FUNC(PyLongObject *) _PyLong_New(Py_ssize_t);
|
|||
/* Return a copy of src. */
|
||||
PyAPI_FUNC(PyObject *) _PyLong_Copy(PyLongObject *src);
|
||||
|
||||
PyAPI_FUNC(PyLongObject *)
|
||||
_PyLong_FromDigits(int negative, Py_ssize_t digit_count, digit *digits);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue