This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author yselivanov
Recipients Mark.Shannon, methane, nascheme, pablogsal, vstinner, yselivanov
Date 2020-10-22.04:38:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603341519.76.0.405236193528.issue42115@roundup.psfhosted.org>
In-reply-to
Content
Few thoughts in no particular order:

- I'd suggest implementing the cache for 2-3 more opcodes on top of the existing infrastructure to get more experience and then refactoring it to make it more generic.

- Generalizing LOAD_METHOD to work for methods with **kwargs, caching concrete operator implementations for opcodes like BINARY_ADD etc. are all possible on top of the current infra.

- Rewriting code objects in place is wrong, IMO: you always need to have a way to deoptimize the entire thing, so you need to keep the original one. It might be that you have well defined and static types for the first 10000 invocations and something entirely different on 10001. So IMO we need a SpecializedCode object with the necessary bailout guards. But that's not a simple thing to implement, so unless someone will be working on this fulltime for a long time I'd suggest working off what we have now. (That said I'd take a close look at what Dino is building).

- There are multiple different approaches we can choose for optimizing CPython, ranging from hidden classes to a full blown JIT. I hope someone will do them one day. But IMO the current simple "opcode cache" (I wish we had a better name) mechanism we have would allow us to squeeze up to 15-25% median improvement in our benchmarks with relatively limited dev time. Maybe that's good enough for 3.10.
History
Date User Action Args
2020-10-22 04:38:39yselivanovsetrecipients: + yselivanov, nascheme, vstinner, methane, Mark.Shannon, pablogsal
2020-10-22 04:38:39yselivanovsetmessageid: <1603341519.76.0.405236193528.issue42115@roundup.psfhosted.org>
2020-10-22 04:38:39yselivanovlinkissue42115 messages
2020-10-22 04:38:38yselivanovcreate