diff options
author | Ken Jin <kenjin4096@gmail.com> | 2022-06-04 00:41:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 00:41:18 +0800 |
commit | d52ffc1d1f14576605195e4ed3a4d5d63497c3e3 (patch) | |
tree | 12016895476caabdc350c7a4f92c130842cfa8c5 /Objects/codeobject.c | |
parent | d8f40ead92b5a973cff3a30482a7659d3b46b1ba (diff) | |
download | cpython-d52ffc1d1f14576605195e4ed3a4d5d63497c3e3.tar.gz cpython-d52ffc1d1f14576605195e4ed3a4d5d63497c3e3.zip |
gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Co-authored-by: Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com>
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r-- | Objects/codeobject.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c index 68b0b1efb2e..dc6dec1b2a5 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -334,6 +334,7 @@ init_code(PyCodeObject *co, struct _PyCodeConstructor *con) /* not set */ co->co_weakreflist = NULL; co->co_extra = NULL; + co->_co_code = NULL; co->co_warmup = QUICKENING_INITIAL_WARMUP_VALUE; memcpy(_PyCode_CODE(co), PyBytes_AS_STRING(con->code), @@ -1367,12 +1368,17 @@ deopt_code(_Py_CODEUNIT *instructions, Py_ssize_t len) PyObject * _PyCode_GetCode(PyCodeObject *co) { + if (co->_co_code != NULL) { + return Py_NewRef(co->_co_code); + } PyObject *code = PyBytes_FromStringAndSize((const char *)_PyCode_CODE(co), _PyCode_NBYTES(co)); if (code == NULL) { return NULL; } deopt_code((_Py_CODEUNIT *)PyBytes_AS_STRING(code), Py_SIZE(co)); + assert(co->_co_code == NULL); + co->_co_code = (void *)Py_NewRef(code); return code; } @@ -1531,6 +1537,7 @@ code_dealloc(PyCodeObject *co) Py_XDECREF(co->co_qualname); Py_XDECREF(co->co_linetable); Py_XDECREF(co->co_exceptiontable); + Py_XDECREF(co->_co_code); if (co->co_weakreflist != NULL) { PyObject_ClearWeakRefs((PyObject*)co); } |