commit | 9e7b2076fb4380987ad0262c4c0ca900b06475ad | [log] [tgz] |
---|---|---|
author | Mark Shannon <mark@hotpy.org> | Tue Apr 13 11:08:14 2021 +0100 |
committer | GitHub <noreply@github.com> | Tue Apr 13 11:08:14 2021 +0100 |
tree | d7a4902fa70e0014849fd77f07d89f39bb2e7494 | |
parent | c2b7a66b91cdb96fbfdb160f96797208ddc5e436 [diff] |
bpo-43760: Speed up check for tracing in interpreter dispatch (#25276) * Remove redundant tracing_possible field from interpreter state. * Move 'use_tracing' from tstate onto C stack, for fastest possible checking in dispatch logic. * Add comments stressing the importance stack discipline when dealing with CFrames. * Add NEWS