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 gvanrossum
Recipients Mark.Shannon, eric.snow, gvanrossum, pablogsal
Date 2021-03-31.22:40:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617230432.54.0.49540913796.issue43684@roundup.psfhosted.org>
In-reply-to
Content
I'm lining up some PRs (inspired by some of Mark Shannon's ideas) that add new opcodes which are straightforward combinations of existing opcodes. For example, ADD_INT is equivalent to LOAD_CONST + BINARY_ADD, for certain small (common) integer constants.

Each of these adds only a minor speedup, but after a dozen or so of these the speedup is (hopefully) significant enough to warrant the opcode churn.
History
Date User Action Args
2021-03-31 22:40:32gvanrossumsetrecipients: + gvanrossum, Mark.Shannon, eric.snow, pablogsal
2021-03-31 22:40:32gvanrossumsetmessageid: <1617230432.54.0.49540913796.issue43684@roundup.psfhosted.org>
2021-03-31 22:40:32gvanrossumlinkissue43684 messages
2021-03-31 22:40:32gvanrossumcreate