mirror of
https://github.com/python/cpython.git
synced 2025-08-23 02:04:56 +00:00
gh-128563: Move lltrace into the frame struct (GH-129113)
This commit is contained in:
parent
31f149d5b3
commit
5809b25909
5 changed files with 26 additions and 17 deletions
|
@ -4990,7 +4990,7 @@ dummy_func(
|
|||
_Py_CODEUNIT *target = _PyFrame_GetBytecode(frame) + exit->target;
|
||||
#if defined(Py_DEBUG) && !defined(_Py_JIT)
|
||||
OPT_HIST(trace_uop_execution_counter, trace_run_length_hist);
|
||||
if (lltrace >= 2) {
|
||||
if (frame->lltrace >= 2) {
|
||||
printf("SIDE EXIT: [UOp ");
|
||||
_PyUOpPrint(&next_uop[-1]);
|
||||
printf(", exit %u, temp %d, target %d -> %s]\n",
|
||||
|
@ -5108,7 +5108,7 @@ dummy_func(
|
|||
_Py_CODEUNIT *target = frame->instr_ptr;
|
||||
#if defined(Py_DEBUG) && !defined(_Py_JIT)
|
||||
OPT_HIST(trace_uop_execution_counter, trace_run_length_hist);
|
||||
if (lltrace >= 2) {
|
||||
if (frame->lltrace >= 2) {
|
||||
printf("DYNAMIC EXIT: [UOp ");
|
||||
_PyUOpPrint(&next_uop[-1]);
|
||||
printf(", exit %u, temp %d, target %d -> %s]\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue