Interpreter code generators need to be able to handle basic flow control #123391
Labels
interpreter-core
(Objects, Python, Grammar, and Parser dirs)
type-feature
A feature request or enhancement
In order to be able to flush the stack efficiently around escaping calls, the interpreter code generators need to be able to handle simple-ish flow control.
For example, in this code:
The general shape is:
We want to be able to track the flow control so that we can spill around the call, but not on the fast path:
We cannot currently do this.
Linked PRs
if
statements. #123397The text was updated successfully, but these errors were encountered: