mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
gh-116760: Fix pystats for trace attempts (GH-116761)
There are now at least two bytecodes that may attempt to optimize, JUMP_BACK, and more recently, COLD_EXIT. Only the JUMP_BACK was counting the attempt in the stats. This moves that counter to uop_optimize itself so it should always happen no matter where it is called from.
This commit is contained in:
parent
8c6db45ce3
commit
cef0ec1a3c
3 changed files with 1 additions and 2 deletions
|
@ -2349,7 +2349,6 @@ dummy_func(
|
||||||
// Use '>=' not '>' so that the optimizer/backoff bits do not effect the result.
|
// Use '>=' not '>' so that the optimizer/backoff bits do not effect the result.
|
||||||
// Double-check that the opcode isn't instrumented or something:
|
// Double-check that the opcode isn't instrumented or something:
|
||||||
if (offset_counter >= threshold && this_instr->op.code == JUMP_BACKWARD) {
|
if (offset_counter >= threshold && this_instr->op.code == JUMP_BACKWARD) {
|
||||||
OPT_STAT_INC(attempts);
|
|
||||||
_Py_CODEUNIT *start = this_instr;
|
_Py_CODEUNIT *start = this_instr;
|
||||||
/* Back up over EXTENDED_ARGs so optimizer sees the whole instruction */
|
/* Back up over EXTENDED_ARGs so optimizer sees the whole instruction */
|
||||||
while (oparg > 255) {
|
while (oparg > 255) {
|
||||||
|
|
1
Python/generated_cases.c.h
generated
1
Python/generated_cases.c.h
generated
|
@ -3371,7 +3371,6 @@
|
||||||
// Use '>=' not '>' so that the optimizer/backoff bits do not effect the result.
|
// Use '>=' not '>' so that the optimizer/backoff bits do not effect the result.
|
||||||
// Double-check that the opcode isn't instrumented or something:
|
// Double-check that the opcode isn't instrumented or something:
|
||||||
if (offset_counter >= threshold && this_instr->op.code == JUMP_BACKWARD) {
|
if (offset_counter >= threshold && this_instr->op.code == JUMP_BACKWARD) {
|
||||||
OPT_STAT_INC(attempts);
|
|
||||||
_Py_CODEUNIT *start = this_instr;
|
_Py_CODEUNIT *start = this_instr;
|
||||||
/* Back up over EXTENDED_ARGs so optimizer sees the whole instruction */
|
/* Back up over EXTENDED_ARGs so optimizer sees the whole instruction */
|
||||||
while (oparg > 255) {
|
while (oparg > 255) {
|
||||||
|
|
|
@ -1003,6 +1003,7 @@ uop_optimize(
|
||||||
_PyBloomFilter dependencies;
|
_PyBloomFilter dependencies;
|
||||||
_Py_BloomFilter_Init(&dependencies);
|
_Py_BloomFilter_Init(&dependencies);
|
||||||
_PyUOpInstruction buffer[UOP_MAX_TRACE_LENGTH];
|
_PyUOpInstruction buffer[UOP_MAX_TRACE_LENGTH];
|
||||||
|
OPT_STAT_INC(attempts);
|
||||||
int err = translate_bytecode_to_trace(frame, instr, buffer, UOP_MAX_TRACE_LENGTH, &dependencies);
|
int err = translate_bytecode_to_trace(frame, instr, buffer, UOP_MAX_TRACE_LENGTH, &dependencies);
|
||||||
if (err <= 0) {
|
if (err <= 0) {
|
||||||
// Error or nothing translated
|
// Error or nothing translated
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue