-
-
Notifications
You must be signed in to change notification settings - Fork 363
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
Port debug commands to RzShell #4753
base: dev
Are you sure you want to change the base?
Conversation
It was never used in the whole function. Hence, whatever it was supposed to do, it didn't
Originally it limited the addresses to trace. But it was not used in any test, and the implementation was not optimal. It allowed only specific addresses (no range). Also worked on strings (not ut64 values). Also, the usefulness is limited, considering the alternative to just not tracing a certain address.
@@ -91,6 +91,7 @@ typedef enum { | |||
RZ_OUTPUT_MODE_LONG_JSON = 1 << 6, | |||
RZ_OUTPUT_MODE_TABLE = 1 << 7, | |||
RZ_OUTPUT_MODE_QUIETEST = 1 << 8, | |||
RZ_OUTPUT_MODE_GRAPH = 1 << 9, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice addition but there could be multiple types of graph - e.g. native, dot one, interactive, and so on. While it's less relevant in this PR, we should think this over nevertheless, possibly at some later stage. But preferably before the release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, would be nice. I can attempt to add it here. If it is too much struggle we can still do it later.
Your checklist for this pull request
Detailed description
dmiv
command, since it is an alias fordmi
dta
command:Originally it limited the addresses to trace.
But it was not used in any test, and the implementation was not optimal.
It allowed only specific addresses (no range).
Also worked on strings (not ut64 values).
Also, the usefulness is limited, considering the alternative
to just not tracing a certain address.
Test plan
...
Closing issues
...