@@ -727,7 +727,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
727727 }
728728
729729 /* State shared between Tier 1 and Tier 2 interpreter */
730- _PyUOpExecutorObject * self = NULL ;
730+ _PyUOpExecutorObject * current_executor = NULL ;
731731
732732 /* Local "register" variables.
733733 * These are cached values from the frame and code object. */
@@ -982,7 +982,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
982982#endif
983983
984984 OPT_STAT_INC (traces_executed );
985- _PyUOpInstruction * next_uop = self -> trace ;
985+ _PyUOpInstruction * next_uop = current_executor -> trace ;
986986#ifdef Py_DEBUG
987987 uint64_t operand ; // Used by several DPRINTF() calls
988988#endif
@@ -998,7 +998,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
998998#endif
999999 DPRINTF (3 ,
10001000 "%4d: uop %s, oparg %d, operand %" PRIu64 ", stack_level %d\n" ,
1001- (int )(next_uop - self -> trace ),
1001+ (int )(next_uop - current_executor -> trace ),
10021002 opcode < 256 ? _PyOpcode_OpName [opcode ] : _PyOpcode_uop_name [opcode ],
10031003 oparg ,
10041004 operand ,
@@ -1047,7 +1047,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10471047 OPT_HIST (trace_uop_execution_counter , trace_run_length_hist );
10481048 frame -> return_offset = 0 ; // Don't leave this random
10491049 _PyFrame_SetStackPointer (frame , stack_pointer );
1050- Py_DECREF (self );
1050+ Py_DECREF (current_executor );
10511051 goto resume_with_error ;
10521052
10531053deoptimize :
@@ -1057,7 +1057,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10571057 OPT_HIST (trace_uop_execution_counter , trace_run_length_hist );
10581058 frame -> return_offset = 0 ; // Dispatch to frame->instr_ptr
10591059 _PyFrame_SetStackPointer (frame , stack_pointer );
1060- Py_DECREF (self );
1060+ Py_DECREF (current_executor );
10611061enter_tier_one :
10621062 next_instr = frame -> instr_ptr ;
10631063 goto resume_frame ;
0 commit comments