uxmal / reko

Reko is a binary decompiler.
https://uxmal.github.io/reko
GNU General Public License v2.0
2.17k stars 253 forks source link

It is impossible to view global data in Reko GUI #151

Open ptomin opened 8 years ago

ptomin commented 8 years ago

It would be nice to view decompiled global variables in Reko GUI

uxmal commented 8 years ago

I'm thinking this is best done by exposing a node in the browser tree under each segment called "Global data". Clicking on the node will display the global variables in a listing similar to what happens when you select a procedure in the browser tree. Creating a tree node for each global variable could be extremely overwhelming.

So, to implement this:

uxmal commented 8 years ago

This needs to be expanded to handle x86 segmented binaries. In that case the "Globals" node is specific to each x86 segment.

uxmal commented 4 years ago

We have a "Procedures" tab now. Perhaps it is time to create a related "Global data" tab?

ptomin commented 4 years ago

Nice idea!