Skip to content
Prev Previous commit
Next Next commit
Update InternalDocs/jit.md
Co-authored-by: Mark Shannon <mark@hotpy.org>
  • Loading branch information
iritkatriel and markshannon authored Dec 6, 2024
commit 3bbf6ee453e353ce310577c70debdf651b0e4b31
2 changes: 1 addition & 1 deletion InternalDocs/jit.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ JIT to run on its interpreter (i.e., python is configured with
When invoked, the executor jumps to the `tier2_dispatch:` label in
[`Python/ceval.c`](../Python/ceval.c), where there is a loop that
executes the micro-ops. The body of this loop is a switch statement over
the uops IDs, reselmbling the one used in the adaptive interpreter.
the uops IDs, resembling the one used in the adaptive interpreter.

The swtich implementing the uops is in [`Python/executor_cases.c.h`](../Python/executor_cases.c.h),
which is generated by the build script
Expand Down