Uh oh!
There was an error while loading. Please reload this page.
gh-87092: compiler's CFG construction moved to after codegen stage - #102320
Conversation
…r codegen and cfg_builder
bedevere-bot
commented
Feb 28, 2023
🤖 New build scheduled with the buildbot fleet by @iritkatriel for commit b8f4acf 🤖 If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
bedevere-bot
commented
Mar 1, 2023
🤖 New build scheduled with the buildbot fleet by @iritkatriel for commit e5653ee 🤖 If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
bedevere-bot
commented
Mar 2, 2023
🤖 New build scheduled with the buildbot fleet by @iritkatriel for commit 788da74 🤖 If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
iritkatriel
commented
Mar 2, 2023
The test failures are a couple of timeouts plus a couple of errors that are also showing up on other branches. |
markshannon
commented
Mar 2, 2023
Do we really want another instruction struct and another instruction sequence struct? typedefstructInstructionSequenceInstructionSequence;
typedefstruct {
InstructionSequenceinstructions;
} InstructionList;
typedefstruct {
InstructionSequenceinstructions;
} BasicBlock;The reason I'd like a single InstructionSequence, is that we can stick an object header in front of it and access it from Python. |
iritkatriel
commented
Mar 2, 2023
We can have an InstructionSequence type which is reused in basic blocks, but basic blocks have a lot more fields that we don't need for codegen, and they don't need a label map because they should have pointers to the target blocks. |
markshannon
commented
Mar 2, 2023
That makes sense. |
iritkatriel
commented
Mar 2, 2023
I'm not sure. The instruction in a basicblock is We can replace the first 3 fields by an instruction struct (this makes sense, I only avoided it to keep the diff smaller). But we would still need the target pointers, or to create a parallel data structure in the basic block for the pointers (and keep it in sync with the instruction sequence when we insert or delete instructions inside a block). It would be simpler to write a function that translates a CFG to something that can be exposed to python. |
iritkatriel
commented
Mar 2, 2023
In any case, I don't think we should refactor the CFG data structures in the same PR. It will be another huge change. |
I've created a function for resizing the doubling arrays, so this logic is not repeated 3 times now. To share the instruction type between codegen and cfg, we could do: instead of the current: Do you think we should do it in this PR? It would make the diff quit a lot messier. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
iritkatriel
commented
Mar 7, 2023
Thank you. I'll merge then. |
* main: pythongh-102493: fix normalization in PyErr_SetObject (python#102502) pythongh-87092: compiler's CFG construction moved to after codegen stage (python#102320) pythongh-95913: Consolidate build requirements changes in 3.11 WhatsNew (pythonGH-98781) Remove redundant `_ensure_future` in favor of `ensure_future` in `asyncio` (python#102398) pythongh-95913: Edit Faster CPython section in 3.11 WhatsNew (pythonGH-98429) pythongh-90110: Fix the c-analyzer Tool (python#102483) pythongh-101759: Update macOS installer SQLite 3.40.1 checksum (pythongh-102485) Remove unused import of `warnings` from `unittest.loader` (python#102479) Add gettext support to tools/extensions/c_annotations.py (python#101989)
* main: pythongh-102493: fix normalization in PyErr_SetObject (python#102502) pythongh-87092: compiler's CFG construction moved to after codegen stage (python#102320) pythongh-95913: Consolidate build requirements changes in 3.11 WhatsNew (pythonGH-98781) Remove redundant `_ensure_future` in favor of `ensure_future` in `asyncio` (python#102398) pythongh-95913: Edit Faster CPython section in 3.11 WhatsNew (pythonGH-98429) pythongh-90110: Fix the c-analyzer Tool (python#102483) pythongh-101759: Update macOS installer SQLite 3.40.1 checksum (pythongh-102485) Remove unused import of `warnings` from `unittest.loader` (python#102479) Add gettext support to tools/extensions/c_annotations.py (python#101989)
After we merge this I will make a PR to move codegen to a separate file.
Skipping news - we will have one entry for the entire refactor once it's done.