Getting All Instructions Within a Function #6078
-
I'm writing a plugin and need to find a way to get all termination instructions in a function. Is there a way to get instructions from only a specific function? I've found a number of ways to iterate through instructions forward from an address, but need a sane way to know where the function ends (i.e. do not iterate to addresses outside the function). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Can you do |
Beta Was this translation helpful? Give feedback.
-
Have you looked at using BlockModel? Take a look at |
Beta Was this translation helpful? Give feedback.
Can you do
function.getBody()
and go from there?