You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The inline cache for LOAD_METHOD takes 10 code units, which is considerably larger than other inline caches, and is an obstacle to merging LOAD_ATTR and LOAD_METHOD (#93430), as LOAD_ATTR is such a common instruction.
The inline cache for
LOAD_METHODtakes 10 code units, which is considerably larger than other inline caches, and is an obstacle to mergingLOAD_ATTRandLOAD_METHOD(#93430), asLOAD_ATTRis such a common instruction.See faster-cpython/ideas#396 for some ideas on how to shrink the inline cache.
Linked PRs
LOAD_ATTRcaches #103014