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
604
604
pp. 213--227, 1997.
605
605
606
606
[ ^ 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
64
64
65
65
The [ ` FOR_ITER ` ] ( https://docs.python.org/dev/library/dis.html#opcode-FOR_ITER )
66
66
instruction 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)
68
68
for a few common iterator types, including ` FOR_ITER_GEN ` , for iterating over
69
69
a generator. ` FOR_ITER_GEN ` bypasses the call to ` __next__ ` , and instead
70
70
directly 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
89
89
[ ` --enable-experimental-jit ` ] ( https://docs.python.org/dev/using/configure.html#cmdoption-enable-experimental-jit ) ,
90
90
the uop executor's ` jit_code ` field is populated with a pointer to a compiled
91
91
C 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) .
93
93
When the executor is invoked by ` ENTER_EXECUTOR ` , instead of jumping to
94
94
the uop interpreter at ` tier2_dispatch ` , the executor runs the function
95
95
that ` jit_code ` points to. This function returns the instruction pointer
You can’t perform that action at this time.
0 commit comments