-
-
Notifications
You must be signed in to change notification settings - Fork 832
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
Document how to add a bytecode specialization #1286
Comments
Hey I would love to work on this issue if you don't mind, thanks, |
Hi @AbudiMutamba. Welcome 👋 Before you get too far along on this. Let's check with @Fidget-Spinner if this is still something that is needed? |
Yes we still need this. |
Thanks @Fidget-Spinner. If you want to give this a try @AbudiMutamba, please do so. |
Hello, @willingc is it something still open ? Would like to contribute. :) |
@faizanoor3001 this is still open |
Hello, @Fidget-Spinner, I’ve opened a PR adding “How to Add a New Bytecode Specialization” to the How-To section. We can verify the text changes or if any updates are required, but I’m unsure about the best place for this new guide. Would it fit better in:
PS: This is my first contribution, so I appreciate your guidance. I’m also studying the Crafting Interpreters book, and your original PR helped me delve deeper into the interpreter’s workings. Thank you! |
@faizanoor3001 thanks for taking this up! I will review it soon. |
@Fidget-Spinner Raised a PR, but since the issue is in devguide project and the PR I have raised in the cpython project, the bot is unable to recognize the gh-NNNN issue number in this case gh-1286 as correct issue number, could you please help here, as I guess we would need a new issue number ? Or how to work around on this ? |
How to add a new bytecode specialization is knowledge only a few of us remember right now. We should document this somewhere (devguide or CPython, I don't mind). Hopefully a new contributor can pick this up!
There reference is this PR: https://github.com/python/cpython/pull/116385/files
Assuming you found an instruction that serves as a good specialization candidate. Let's use the example of
CONTAINS_OP
:CONTAINS_OP
to a uop by changing it fromCONTAINS_OP
to_CONTAINS_OP
inPython/bytecodes.c
. The instruction definition should also change frominst
toop
._SPECIALIZE_CONTAINS_OP
.CONTAINS_OP
is now a new macro consisting of_SPECIALIZE_CONTAINS_OP + _CONTAINS_OP
.Include/internal/pycore_code.h
. At the very least, a 16-bit counter is needed.Python/specialize.c
. Refer to any other function in that file for the format.add_stat_dict
inPython/specialize.c
.Lib/opcode.py
so that Python'sdis
module will know how to represent it properly.Include/internal/pycore_magic_number.h
.make regen-all
on *nix orbuild.bat --regen
on PC.The text was updated successfully, but these errors were encountered: