-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
GH-93516: Store offset of first traceable instruction in code object #93769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-93516: Store offset of first traceable instruction in code object #93769
Conversation
…ute it all the time when tracing.
|
Blocked by #93771 |
|
As an experiment, can you remove the "import opcode" from deepfreeze.py and hardcode the RESUME opcode? We can debate whether that's the right fix, but so far the deepfreeze.py script has been carefully designed not to depend on the details of the target version. |
|
Did you consider putting the new field in the marshaled code object? Then deepfreeze.py wouldn't have to import |
Yes, but I decided against it. |
Avoids having to recompute the offset all the time when tracing.