[issue45260] Implement superinstruction UNPACK_SEQUENCE_ST

2021-10-08 Thread zcpara
Change by zcpara : -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue45260] Implement superinstruction UNPACK_SEQUENCE_ST

2021-09-22 Thread zcpara
Change by zcpara : -- keywords: +patch pull_requests: +26910 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28519 ___ Python tracker ___ _

[issue45260] Implement superinstruction UNPACK_SEQUENCE_ST

2021-09-21 Thread zcpara
New submission from zcpara : PEP 659 quickening provides a mechanism for replacing instructions. We add another super-instruction UNPACK_SEQUENCE_ST to replace the original UNPACK_SEQUENCE and the following n STROE_FAST instructions. See https://github.com/faster-cpython/ideas/issues/16. ---