Is it possible to find all static jumps to a specific address or address range? #3929
-
For example, the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can write a PCode analysis script to analyze |
Beta Was this translation helpful? Give feedback.
You can write a PCode analysis script to analyze
BRANCH
andBRANCHIND
instructions to do this in an architecture-independent way. Not 100% sure if indirect targets are always fully resolved at the raw PCode level, so you might need high-level PCode in some cases.