Skip to content

Improve -Dy debugging #23591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 23, 2025
Merged

Improve -Dy debugging #23591

merged 5 commits into from
Aug 23, 2025

Conversation

khwilliamson
Copy link
Contributor

Commit 6ceb408 added a way to cleanly output UTF-8 tr/// values. This commit uses that to improve the debug output of compiling and running tr///.

  • This set of changes does not require a perldelta entry.

@jkeenan
Copy link
Contributor

jkeenan commented Aug 16, 2025

Commit 6ceb408 added a way to cleanly output UTF-8 tr/// values. This commit uses that to improve the debug output of compiling and running tr///.

* This set of changes does not require a perldelta entry.

Could you provide a before/example of the effect this p.r. is intended to have?

It is undefined behavior in C to have a file-level symbol begin with an
underscore.  This is a static function; there is no need for it to have
a leading or trailing underscore to mark it as internal
This creates an ARGS_ASSERT for this function.  Previously, the code was
using the one for plain pv_display(), which is kind of ugly.  Now there
is a macro for each function
The same printf can handle two things.
Commit 6ceb408 added a way to cleanly
output UTF-8 tr/// values.  This commit uses that to improve the debug
output of compiling and running tr///.

For a simple tr of of transliterating Greek capital letters to
lowercase, the output of 'perl -Dy' has these added lines:

 > op.c: 6553: Compiling tr/*t/*r/; /c=0; /d=0; /s=0
 > *t is '\x{391}-\x{3a9}'
 > *r is '\x{3b1}-\x{3c9}'

Before the aforementioned commit the minus sign indicating a range would
not have rendered properly; so things like that were omitted from the
debug output.

The output also now includes special mention of the special casing where
the input is complemented, and/or some characters not being translated
or get deleted.
While debugging this code, I found that the final generated map was
unneeded and too large for most instances; so change that to not be
output without the verbose option.

Conversely, I found that I needed to often see the state of things after
the first pass, so change to make that not verbose.
@khwilliamson khwilliamson merged commit 2626379 into Perl:blead Aug 23, 2025
33 checks passed
@khwilliamson khwilliamson deleted the tr_debugging branch August 23, 2025 13:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants