Rename expressions functionality
Description
r2 could enable renaming the expressions, like the afvn command renames locals/arguments.
For instance:
Instead of hard to remember expression, like rbp + rax - 0x1020:
There could be a command that renames it to e.g. cwd[i] (it is just a concept, drawn in GIMP):
As Pancake said, such a renaming should only affect the context of the function and not be global.
You can do this with rpase plugins in c and js. If its ok for you we can close the ticket because im not sure if this should be a core feature of r2 because it looks quitw custom and hacky when the proper fix must be improving the variable analysis code
As far as I know, no other disassembler has such a functionality, so that would make radare2 even more unique and customizable.
Yeah i agree on that. It can be very useful because it gives the user the ability to mess with the disassembly the eay they need like if it was made with pen and paper. But as long as doing it natively will require abi breaking changes and i think its better to do the change as plugins for now, having that implemented in C can be also useful because it will provide the feature in place and do it in a modular way
Great that you agree with me on it. If I manage to create a plugin like this I would definitely post it here.
Can you publish your plugin so the ticket is in sync with the current state? Feel free to submit it to the extras repo if you want
Sure. But I need to improve this plugin, so that it stores each of the rename as well as support quoted arguments.
I submitted the plugin to the extras repo, but I don't know how can I publish my plugin to have this ticket in sync.
Closing this ticket as long as its now implemented in a plugin from extras. we may want to merge it back if its really used after refactoring all the asmparse apis. thanks!