mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
gh-120642: Move _PyCode_CODE() to the internal C API (#121644)
Move _PyCode_CODE() and _PyCode_NBYTES() macros to the internal C API since they use _Py_CODEUNIT which is only part of the internal C API.
This commit is contained in:
parent
b5805892d5
commit
a2bec77d25
2 changed files with 3 additions and 3 deletions
|
@ -31,6 +31,9 @@ typedef union {
|
|||
_Py_BackoffCounter counter; // First cache entry of specializable op
|
||||
} _Py_CODEUNIT;
|
||||
|
||||
#define _PyCode_CODE(CO) _Py_RVALUE((_Py_CODEUNIT *)(CO)->co_code_adaptive)
|
||||
#define _PyCode_NBYTES(CO) (Py_SIZE(CO) * (Py_ssize_t)sizeof(_Py_CODEUNIT))
|
||||
|
||||
|
||||
/* These macros only remain defined for compatibility. */
|
||||
#define _Py_OPCODE(word) ((word).op.code)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue