diff options
| author | Mark Shannon <mark@hotpy.org> | 2023-11-09 11:19:51 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-09 11:19:51 (GMT) |
| commit | 25c49564880e6868e4c76602f9f1650f0bc71c75 (patch) | |
| tree | 4708ad2263b88f3a37cf5f057976aaf5d06f9b43 /Python/ceval.c | |
| parent | 6046aec377311efb89c4438f7cf412e2c6568ba1 (diff) | |
| download | cpython-25c49564880e6868e4c76602f9f1650f0bc71c75.zip cpython-25c49564880e6868e4c76602f9f1650f0bc71c75.tar.gz cpython-25c49564880e6868e4c76602f9f1650f0bc71c75.tar.bz2 | |
GH-109369: Exit tier 2 if executor is invalid (GH-111657)
Diffstat (limited to 'Python/ceval.c')
| -rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 670f312..68bed93 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1057,7 +1057,7 @@ error_tier_two: deoptimize: // On DEOPT_IF we just repeat the last instruction. // This presumes nothing was popped from the stack (nor pushed). - DPRINTF(2, "DEOPT: [Opcode %d, operand %" PRIu64 "]\n", opcode, operand); + DPRINTF(2, "DEOPT: [Opcode %d, operand %" PRIu64 " @ %d]\n", opcode, operand, (int)(next_uop-current_executor->trace-1)); OPT_HIST(trace_uop_execution_counter, trace_run_length_hist); UOP_STAT_INC(opcode, miss); frame->return_offset = 0; // Dispatch to frame->instr_ptr |
