Trace already has access to symbols, but it would be very useful to be able see the label names when they are used (in the assembly) for jumps, loads, and addressing.
Example:
.s:
mov eax, [some_label + 4]
...
some_label:
dd 3
dd 6
usercorn trace:
L some_label: 0x804a680
mov eax, dword ptr [0x804a680 + 4]
Trace already has access to symbols, but it would be very useful to be able see the label names when they are used (in the assembly) for jumps, loads, and addressing.
Example:
.s:
usercorn trace: