mirror of
https://github.com/python/cpython.git
synced 2025-08-24 10:45:53 +00:00
GH-116968: Remove branch from advance_backoff_counter (GH-124469)
This commit is contained in:
parent
31516c98dd
commit
f55273b3b7
4 changed files with 29 additions and 33 deletions
|
@ -4705,7 +4705,7 @@ dummy_func(
|
|||
printf("SIDE EXIT: [UOp ");
|
||||
_PyUOpPrint(&next_uop[-1]);
|
||||
printf(", exit %u, temp %d, target %d -> %s]\n",
|
||||
exit - current_executor->exits, exit->temperature.as_counter,
|
||||
exit - current_executor->exits, exit->temperature.value_and_backoff,
|
||||
(int)(target - _PyCode_CODE(code)),
|
||||
_PyOpcode_OpName[target->op.code]);
|
||||
}
|
||||
|
@ -4794,7 +4794,7 @@ dummy_func(
|
|||
printf("DYNAMIC EXIT: [UOp ");
|
||||
_PyUOpPrint(&next_uop[-1]);
|
||||
printf(", exit %u, temp %d, target %d -> %s]\n",
|
||||
exit - current_executor->exits, exit->temperature.as_counter,
|
||||
exit - current_executor->exits, exit->temperature.value_and_backoff,
|
||||
(int)(target - _PyCode_CODE(_PyFrame_GetCode(frame))),
|
||||
_PyOpcode_OpName[target->op.code]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue