mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
gh-109329: Add stat for "trace too short" (GH-110402)
This commit is contained in:
parent
1328fa31fe
commit
9eb2489266
4 changed files with 5 additions and 0 deletions
|
@ -229,6 +229,7 @@ print_optimization_stats(FILE *out, OptimizationStats *stats)
|
|||
fprintf(out, "Optimization trace stack overflow: %" PRIu64 "\n", stats->trace_stack_overflow);
|
||||
fprintf(out, "Optimization trace stack underflow: %" PRIu64 "\n", stats->trace_stack_underflow);
|
||||
fprintf(out, "Optimization trace too long: %" PRIu64 "\n", stats->trace_too_long);
|
||||
fprintf(out, "Optimization trace too short: %" PRIu64 "\n", stats->trace_too_short);
|
||||
fprintf(out, "Optimization inner loop: %" PRIu64 "\n", stats->inner_loop);
|
||||
fprintf(out, "Optimization recursive call: %" PRIu64 "\n", stats->recursive_call);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue