Returns the instructions which are reachable from the entry node
Last updated 1 month ago
get_reachable_instructions() → APISet[Instruction]
get_reachable_instructions() →
APISet
[
Instruction
]
from glider import * def query(): functions = Functions().exec(1) for reachable_instruction in functions[0].get_reachable_instructions(): print(f"{reachable_instruction.source_code()}") return functions