What I'd like is a routine to scan a program in memory and in addition to listing procedures and functions (like QREF software) I'd like it to examine the list of routines it calls to be able to see which proc/fn calls which. A bit like a file explorer directory tree type of display, e.g.
Code: Select all
PROC:ABC
|-calls BCD
|-calls EFG
|-calls HIJ
PROC: BCD
PROC: EFG
|- calls HIJ
PROC: HIJ
It's needed with a large program I have, which I'm struggling to follow the flow of procedure and function calls to debug a weird issue, so I hoped that a little program to do this might help me.