Returns the instructions which are reachable from the entry node
Last updated 2 days 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