File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -604,4 +604,4 @@ References
604604 pp. 213--227, 1997.
605605
606606[ ^ 2 ] : The Zephyr Abstract Syntax Description Language.:
607- https://www.cs.princeton.edu/research/techreps/TR-554-97
607+ https://www.cs.princeton.edu/research/techreps/254
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ Iteration
6464
6565The [ ` FOR_ITER ` ] ( https://docs.python.org/dev/library/dis.html#opcode-FOR_ITER )
6666instruction calls ` __next__ ` on the iterator which is on the top of the stack,
67- and pushes the result to the stack. It has [ ` specializations ` ] ( adaptive .md)
67+ and pushes the result to the stack. It has [ ` specializations ` ] ( interpreter .md)
6868for a few common iterator types, including ` FOR_ITER_GEN ` , for iterating over
6969a generator. ` FOR_ITER_GEN ` bypasses the call to ` __next__ ` , and instead
7070directly pushes the generator stack and resumes its execution from the
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ When the full jit is enabled (python was configured with
8989[ ` --enable-experimental-jit ` ] ( https://docs.python.org/dev/using/configure.html#cmdoption-enable-experimental-jit ) ,
9090the uop executor's ` jit_code ` field is populated with a pointer to a compiled
9191C function that implements the executor logic. This function's signature is
92- defined by ` jit_func ` in [ ` pycore_jit.h ` ] ( Include/internal/pycore_jit.h ) .
92+ defined by ` jit_func ` in [ ` pycore_jit.h ` ] ( ../ Include/internal/pycore_jit.h) .
9393When the executor is invoked by ` ENTER_EXECUTOR ` , instead of jumping to
9494the uop interpreter at ` tier2_dispatch ` , the executor runs the function
9595that ` jit_code ` points to. This function returns the instruction pointer
You can’t perform that action at this time.
0 commit comments