radareorg / radeco

radare2-based decompiler and symbol executor
371 stars 52 forks source link

Implement pdu command #329

Closed radare closed 5 years ago

radare commented 5 years ago

Like the dcu or dsu command, the pdu should disassemble until a specific condition is found.

pdu 0x804804 @ 0x804600  # disassebmle from ..600 to ..804

Another example would be

pdur # disassemble until a ret instruction is found

Or maybe:

pdub # print disasembly until end of block (branch or ret) or use anal info

Use esil to emulate the flow? with pdue?

radare commented 5 years ago

Oops. moved here https://github.com/radare/radare2/issues/12775