https://github.com/python/cpython/commit/27c49707dfd13752791aacd33a3ecfbe780beca2
commit: 27c49707dfd13752791aacd33a3ecfbe780beca2
branch: main
author: Mark Shannon <[email protected]>
committer: markshannon <[email protected]>
date: 2026-03-09T15:21:33Z
summary:
GH-144688: Fix refleaks in JIT when optimization fails (GH-145420)
files:
M Python/optimizer.c
diff --git a/Python/optimizer.c b/Python/optimizer.c
index f485c27bca2a4f..4387bcb0d67832 100644
--- a/Python/optimizer.c
+++ b/Python/optimizer.c
@@ -1076,12 +1076,19 @@ _PyJit_FinalizeTracing(PyThreadState *tstate, int err)
exit->temperature =
initial_temperature_backoff_counter(&tstate->interp->opt_config);
}
}
+ // Clear all recorded values
+ _PyJitUopBuffer *buffer = &tracer->code_buffer;
+ for (_PyUOpInstruction *inst = buffer->start; inst < buffer->next; inst++)
{
+ if (_PyUop_Flags[inst->opcode] & HAS_RECORDS_VALUE_FLAG) {
+ Py_XDECREF((PyObject *)(uintptr_t)inst->operand0);
+ }
+ }
Py_CLEAR(tracer->initial_state.code);
Py_CLEAR(tracer->initial_state.func);
Py_CLEAR(tracer->initial_state.executor);
Py_CLEAR(tracer->prev_state.instr_code);
Py_CLEAR(tracer->prev_state.recorded_value);
- uop_buffer_init(&tracer->code_buffer, &tracer->uop_array[0],
UOP_MAX_TRACE_LENGTH);
+ uop_buffer_init(buffer, &tracer->uop_array[0], UOP_MAX_TRACE_LENGTH);
tracer->is_tracing = false;
}
@@ -1521,6 +1528,11 @@ uop_optimize(
}
assert(_PyOpcode_uop_name[buffer[pc].opcode]);
}
+ // We've cleaned up the references in the buffer, so discard the code
buffer
+ // to avoid doing it again during tracer cleanup
+ _PyJitUopBuffer *code_buffer = &_tstate->jit_tracer_state->code_buffer;
+ code_buffer->next = code_buffer->start;
+
OPT_HIST(effective_trace_length(buffer, length),
optimized_trace_length_hist);
_PyUOpInstruction *output = &_tstate->jit_tracer_state->uop_array[0];
length = stack_allocate(buffer, output, length);
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]